/* Page-local protection-layer experience for privatrechtsschutz-leistungen.html */
.protection-services-page .services-protection-field {
  --field-bg: #f3f2ee;
  --field-stage: #e9e8e2;
  --field-paper: #fbfaf6;
  --field-paper-soft: #efeee8;
  --field-ink: #1c1c1f;
  --field-copy: rgba(28, 28, 31, .68);
  --field-muted: rgba(28, 28, 31, .45);
  --field-line: rgba(28, 28, 31, .13);
  --field-line-strong: rgba(28, 28, 31, .26);
  --field-brand: #f5c518;
  --field-brand-ink: #6b5200;
  --field-shadow: 0 3rem 8rem rgba(56, 49, 30, .14);
  --field-ease-out: cubic-bezier(.23, 1, .32, 1);
  --field-ease-move: cubic-bezier(.77, 0, .175, 1);
  position: relative;
  overflow: clip;
  padding: clamp(6rem, 9vw, 9rem) clamp(1rem, 5vw, 5rem) clamp(7rem, 11vw, 11rem);
  color: var(--field-ink);
  background:
    radial-gradient(circle at 82% 16%, rgba(245, 197, 24, .105), transparent 30rem),
    linear-gradient(180deg, rgba(28, 28, 31, .025), transparent 28rem),
    var(--field-bg);
}

html.dark .protection-services-page .services-protection-field {
  --field-bg: #0d0d11;
  --field-stage: #131318;
  --field-paper: #222228;
  --field-paper-soft: #1a1a1f;
  --field-ink: #f5f4ee;
  --field-copy: rgba(245, 244, 238, .68);
  --field-muted: rgba(245, 244, 238, .42);
  --field-line: rgba(255, 255, 255, .105);
  --field-line-strong: rgba(255, 255, 255, .22);
  --field-brand-ink: #f5c518;
  --field-shadow: 0 3rem 9rem rgba(0, 0, 0, .34);
  background:
    radial-gradient(circle at 82% 16%, rgba(245, 197, 24, .08), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 28rem),
    var(--field-bg);
}

.protection-services-page .services-protection-field .services-accordion-section__inner {
  width: min(100%, 90rem);
}

.protection-services-page .services-protection-field .services-accordion-heading {
  display: block;
  max-width: 75rem;
  margin-bottom: clamp(4.5rem, 8vw, 8rem);
}

.protection-services-page .services-protection-field .services-accordion-heading .section-kicker {
  color: var(--field-brand-ink);
}

.protection-services-page .services-protection-field .services-accordion-heading h2 {
  max-width: 14ch;
  color: var(--field-ink);
}

.protection-services-page .services-protection-field .services-accordion-heading h2 span {
  color: var(--field-muted);
}

.protection-services-page .services-protection-field .services-accordion-heading p {
  max-width: 55rem;
  margin-top: 1.75rem;
  color: var(--field-copy);
}

.protection-services-page .services-protection-field .services-accordion-heading a {
  color: var(--field-ink);
  text-decoration-color: var(--field-brand-ink);
  text-underline-offset: .2em;
}

.protection-services-page .protection-field {
  position: relative;
}

.protection-services-page .protection-field__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(20rem, .78fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: start;
}

.protection-services-page .protection-field__stage {
  position: sticky;
  top: 5.4rem;
  min-width: 0;
  margin: 0;
}

.protection-services-page .protection-field__instrument {
  position: relative;
  min-height: 43rem;
  overflow: hidden;
  border-radius: 1.7rem;
  background:
    linear-gradient(var(--field-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--field-line) 1px, transparent 1px),
    var(--field-stage);
  background-size: 25% 25%, 25% 25%, auto;
  box-shadow: var(--field-shadow);
  isolation: isolate;
}

.protection-services-page .protection-field__instrument::before {
  position: absolute;
  inset: 1.15rem;
  z-index: -1;
  border: 1px solid var(--field-line);
  border-radius: 1.15rem;
  content: "";
  pointer-events: none;
}

.protection-services-page .protection-field__instrument::after {
  position: absolute;
  left: 7%;
  top: 7%;
  width: 3.25rem;
  height: .24rem;
  background: var(--field-brand);
  content: "";
}

.protection-services-page .protection-field__plane {
  position: absolute;
  inset: 9% 9% 15% 13%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--field-line-strong);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--field-paper-soft) 78%, transparent);
  box-shadow: 0 1.4rem 3.4rem color-mix(in srgb, var(--field-ink) 7%, transparent);
  transform-origin: center;
  transition: transform .68s var(--field-ease-move), opacity .24s ease, border-color .24s ease;
}

.protection-services-page .protection-field__plane span {
  color: var(--field-muted);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.protection-services-page .protection-field__plane--compact {
  z-index: 1;
  transform: translate3d(-7%, -4%, 0) rotate(-3.3deg);
}

.protection-services-page .protection-field__plane--comfort {
  z-index: 2;
  transform: translate3d(0, 0, 0) rotate(-.4deg);
}

.protection-services-page .protection-field__plane--premium {
  z-index: 3;
  transform: translate3d(7%, 4%, 0) rotate(2.7deg);
}

.protection-services-page [data-field-plan="compact"] .protection-field__plane--compact,
.protection-services-page [data-field-plan="comfort"] .protection-field__plane--comfort,
.protection-services-page [data-field-plan="premium"] .protection-field__plane--premium {
  z-index: 4;
  border-color: color-mix(in srgb, var(--field-brand) 72%, var(--field-line-strong));
  background: color-mix(in srgb, var(--field-paper) 93%, var(--field-brand) 7%);
}

.protection-services-page [data-field-plan="compact"] .protection-field__plane--compact {
  transform: translate3d(-2%, -1%, 0) rotate(-1.1deg);
}

.protection-services-page [data-field-plan="comfort"] .protection-field__plane--comfort {
  transform: translate3d(1%, 1%, 0) rotate(.35deg);
}

.protection-services-page [data-field-plan="premium"] .protection-field__plane--premium {
  transform: translate3d(2%, 2%, 0) rotate(1deg);
}

.protection-services-page .protection-field__sheets {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.protection-services-page .protection-field__sheet {
  position: absolute;
  left: 13%;
  width: 57%;
  min-height: 3.45rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1rem .7rem 1.2rem;
  border: 0;
  border-bottom: 1px solid var(--field-line-strong);
  border-left: 2px solid transparent;
  border-radius: .25rem;
  background: color-mix(in srgb, var(--field-paper) 91%, transparent);
  color: var(--field-muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transform-origin: left center;
  transition: transform .42s var(--field-ease-out), color .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease;
}

.protection-services-page .protection-field__sheet:nth-child(1) { top: 15%; }
.protection-services-page .protection-field__sheet:nth-child(2) { top: 22.2%; }
.protection-services-page .protection-field__sheet:nth-child(3) { top: 29.4%; }
.protection-services-page .protection-field__sheet:nth-child(4) { top: 36.6%; }
.protection-services-page .protection-field__sheet:nth-child(5) { top: 43.8%; }
.protection-services-page .protection-field__sheet:nth-child(6) { top: 51%; }
.protection-services-page .protection-field__sheet:nth-child(7) { top: 58.2%; }

.protection-services-page .protection-field__sheet span {
  overflow: hidden;
  font-size: .74rem;
  font-weight: 780;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.protection-services-page .protection-field__sheet small {
  color: inherit;
  font-size: .55rem;
  font-weight: 720;
  letter-spacing: .04em;
  white-space: nowrap;
}

.protection-services-page .protection-field__sheet.is-active {
  z-index: 2;
  border-left-color: var(--field-brand);
  background: var(--field-paper);
  color: var(--field-ink);
  transform: translate3d(18%, 0, 0) scale(1.015);
  box-shadow: 0 1.15rem 2.8rem color-mix(in srgb, var(--field-ink) 10%, transparent);
}

.protection-services-page .protection-field__sheet:focus-visible,
.protection-services-page .protection-field__plans button:focus-visible,
.protection-services-page .protection-field__plans a:focus-visible,
.protection-services-page .services-protection-field .services-accordion-footer a:focus-visible {
  outline: 2px solid var(--field-brand-ink);
  outline-offset: 3px;
}

.protection-services-page .protection-field__sheet:active,
.protection-services-page .protection-field__plans button:active,
.protection-services-page .protection-field__plans a:active,
.protection-services-page .services-protection-field .services-accordion-footer a:active {
  transform: scale(.98);
}

.protection-services-page .protection-field__readout {
  position: absolute;
  right: 4.5%;
  bottom: 4.5%;
  z-index: 6;
  width: min(24rem, 55%);
  padding: 1.2rem 1.25rem 1.3rem;
  border-top: 1px solid var(--field-line-strong);
  background: color-mix(in srgb, var(--field-stage) 94%, transparent);
}

.protection-services-page .protection-field__readout > span {
  color: var(--field-brand-ink);
  font-size: .57rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.protection-services-page .protection-field__readout > strong {
  display: block;
  max-width: 18ch;
  margin-top: .65rem;
  color: var(--field-ink);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.protection-services-page .protection-field__readout > small {
  display: block;
  max-width: 36ch;
  margin-top: .65rem;
  color: var(--field-copy);
  font-size: .66rem;
  line-height: 1.5;
}

.protection-services-page .protection-field__readout dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .3rem;
  margin: 1rem 0 0;
}

.protection-services-page .protection-field__readout dl div {
  min-width: 0;
  padding: .6rem .45rem;
  border-top: 1px solid var(--field-line);
  color: var(--field-muted);
  transition: color .18s ease, border-color .18s ease;
}

.protection-services-page .protection-field__readout dt {
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.protection-services-page .protection-field__readout dd {
  overflow-wrap: anywhere;
  margin: .32rem 0 0;
  font-size: .59rem;
  font-weight: 700;
  line-height: 1.3;
}

.protection-services-page [data-field-plan="compact"] [data-readout-plan="compact"],
.protection-services-page [data-field-plan="comfort"] [data-readout-plan="comfort"],
.protection-services-page [data-field-plan="premium"] [data-readout-plan="premium"] {
  border-color: var(--field-brand);
  color: var(--field-ink);
}

.protection-services-page .protection-field__stage figcaption {
  max-width: 60rem;
  padding: .9rem .2rem 0;
  color: var(--field-muted);
  font-size: .64rem;
  line-height: 1.55;
}

.protection-services-page .protection-field__plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
  border-top: 1px solid var(--field-line-strong);
}

.protection-services-page .protection-field__plans article {
  min-width: 0;
  padding: 1rem .85rem 0;
  border-top: 2px solid transparent;
  color: var(--field-muted);
  transition: color .18s ease, border-color .18s ease;
}

.protection-services-page .protection-field__plans article + article {
  border-left: 1px solid var(--field-line);
}

.protection-services-page .protection-field__plans article.is-active {
  border-top-color: var(--field-brand);
  color: var(--field-ink);
}

.protection-services-page .protection-field__plans button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .14s var(--field-ease-out), color .18s ease;
}

.protection-services-page .protection-field__plans button strong {
  display: block;
  font-size: .82rem;
}

.protection-services-page .protection-field__plans button span {
  display: block;
  min-height: 2.5rem;
  margin-top: .35rem;
  font-size: .62rem;
  line-height: 1.4;
}

.protection-services-page .protection-field__plans a {
  display: inline-block;
  margin-top: .6rem;
  color: inherit;
  font-size: .61rem;
  font-weight: 760;
  text-decoration-color: var(--field-brand-ink);
  text-underline-offset: .22em;
  transition: transform .14s var(--field-ease-out), color .18s ease;
}

.protection-services-page .protection-field__chapters {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.protection-services-page .protection-field__chapters li {
  min-height: 70svh;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--field-line);
}

.protection-services-page .protection-field__chapters li:last-child {
  border-bottom: 1px solid var(--field-line);
}

.protection-services-page .protection-field__chapters article {
  width: 100%;
  padding: 3rem 0;
  color: var(--field-muted);
  transform: translate3d(0, 0, 0);
  transition: transform .42s var(--field-ease-out), color .2s ease;
}

.protection-services-page .protection-field__chapters li.is-active article {
  color: var(--field-ink);
  transform: translate3d(-.45rem, 0, 0);
}

.protection-services-page .protection-field__chapters article > span {
  color: inherit;
  font-size: .61rem;
  font-weight: 830;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.protection-services-page .protection-field__chapters li.is-active article > span {
  color: var(--field-brand-ink);
}

.protection-services-page .protection-field__chapters h3 {
  max-width: 13ch;
  margin: .85rem 0 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  font-weight: 730;
  line-height: 1;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.protection-services-page .protection-field__chapters p {
  max-width: 44ch;
  margin: 1.15rem 0 0;
  color: inherit;
  font-size: .84rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.protection-services-page .protection-field__chapters .protection-field__summary {
  max-width: 35ch;
  color: inherit;
  font-size: .72rem;
  font-weight: 650;
}

.protection-services-page .protection-field__values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
  margin: 1.45rem 0 0;
}

.protection-services-page .protection-field__values div {
  min-width: 0;
  padding: .75rem .55rem .8rem;
  border-top: 1px solid var(--field-line-strong);
  color: var(--field-muted);
  transition: color .18s ease, border-color .18s ease, transform .22s var(--field-ease-out);
}

.protection-services-page .protection-field__values dt {
  font-size: .52rem;
  font-weight: 820;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.protection-services-page .protection-field__values dd {
  overflow-wrap: anywhere;
  margin: .4rem 0 0;
  font-size: .66rem;
  font-weight: 720;
  line-height: 1.35;
}

.protection-services-page [data-field-plan="compact"] [data-plan-value="compact"],
.protection-services-page [data-field-plan="comfort"] [data-plan-value="comfort"],
.protection-services-page [data-field-plan="premium"] [data-plan-value="premium"] {
  border-color: var(--field-brand);
  color: var(--field-ink);
  transform: translate3d(0, -.16rem, 0);
}

.protection-services-page .protection-field.is-keyboard-change .protection-field__plane,
.protection-services-page .protection-field.is-keyboard-change .protection-field__sheet,
.protection-services-page .protection-field.is-keyboard-change .protection-field__plans article,
.protection-services-page .protection-field.is-keyboard-change .protection-field__values div {
  transition: none;
}

.protection-services-page .services-protection-field .services-accordion-footer {
  margin-top: clamp(5rem, 9vw, 9rem);
  border-color: var(--field-line-strong);
  background: color-mix(in srgb, var(--field-paper-soft) 78%, transparent);
  color: var(--field-ink);
}

.protection-services-page .services-protection-field .services-accordion-footer p {
  color: var(--field-copy);
}

.protection-services-page .services-protection-field .services-accordion-footer a {
  flex: 0 0 auto;
  background: var(--field-brand);
  color: #18140a;
  transition: transform .14s var(--field-ease-out), background-color .18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .protection-services-page .protection-field__sheet:hover:not(.is-active) {
    color: var(--field-ink);
    transform: translate3d(3%, 0, 0);
  }

  .protection-services-page .protection-field__plans button:hover,
  .protection-services-page .protection-field__plans a:hover {
    color: var(--field-ink);
  }

  .protection-services-page .services-protection-field .services-accordion-footer a:hover {
    background: #ffdc4d;
    transform: translate3d(0, -.12rem, 0);
  }
}

@media (max-width: 68rem) {
  .protection-services-page .protection-field__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
    gap: 2.5rem;
  }

  .protection-services-page .protection-field__instrument {
    min-height: 39rem;
  }

  .protection-services-page .protection-field__sheet {
    width: 61%;
  }

  .protection-services-page .protection-field__readout {
    width: 59%;
  }
}

@media (max-width: 48rem) {
  .protection-services-page .services-protection-field {
    padding: 5rem .75rem 7rem;
  }

  .protection-services-page .services-protection-field .services-accordion-heading {
    margin-bottom: 4.5rem;
  }

  .protection-services-page .services-protection-field .services-accordion-heading h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.1rem);
    line-height: .97;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .protection-services-page .services-protection-field .services-accordion-heading p {
    font-size: .92rem;
  }

  .protection-services-page .protection-field__layout {
    display: block;
  }

  .protection-services-page .protection-field__stage {
    position: relative;
    top: auto;
  }

  .protection-services-page .protection-field__instrument {
    min-height: 0;
    padding: 4.5rem 1rem 1rem;
    border-radius: 1.35rem;
  }

  .protection-services-page .protection-field__instrument::before {
    inset: .7rem;
    border-radius: .95rem;
  }

  .protection-services-page .protection-field__instrument::after {
    left: 1.2rem;
    top: 1.25rem;
  }

  .protection-services-page .protection-field__plane {
    inset: 2.5rem 1.4rem 1.5rem;
  }

  .protection-services-page .protection-field__sheets {
    position: relative;
    inset: auto;
    display: grid;
    gap: .34rem;
  }

  .protection-services-page .protection-field__sheet,
  .protection-services-page .protection-field__sheet:nth-child(n) {
    position: relative;
    left: auto;
    top: auto;
    width: 88%;
    min-height: 3rem;
    padding: .62rem .8rem .62rem 1rem;
  }

  .protection-services-page .protection-field__sheet.is-active {
    transform: translate3d(10%, 0, 0) scale(1.01);
  }

  .protection-services-page .protection-field__sheet span {
    font-size: .69rem;
  }

  .protection-services-page .protection-field__readout {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1.25rem;
    padding: 1rem .75rem .85rem;
    background: color-mix(in srgb, var(--field-stage) 88%, transparent);
  }

  .protection-services-page .protection-field__readout > strong {
    font-size: 1.2rem;
  }

  .protection-services-page .protection-field__stage figcaption {
    padding: .8rem .15rem 0;
    font-size: .61rem;
  }

  .protection-services-page .protection-field__plans {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .protection-services-page .protection-field__plans button {
    min-height: 2.75rem;
  }

  .protection-services-page .protection-field__plans article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
    padding: 1rem .25rem;
  }

  .protection-services-page .protection-field__plans article + article {
    border-top: 1px solid var(--field-line);
    border-left: 0;
  }

  .protection-services-page .protection-field__plans article.is-active {
    border-top-color: var(--field-brand);
  }

  .protection-services-page .protection-field__plans button span {
    min-height: 0;
  }

  .protection-services-page .protection-field__plans a {
    margin-top: 0;
    white-space: nowrap;
  }

  .protection-services-page .protection-field__chapters {
    margin-top: 4.5rem;
  }

  .protection-services-page .protection-field__chapters li {
    min-height: auto;
    align-items: flex-start;
    border-top: 1px solid var(--field-line);
  }

  .protection-services-page .protection-field__chapters article {
    padding: 3.4rem .35rem 3.8rem;
    color: var(--field-copy);
    transform: none;
  }

  .protection-services-page .protection-field__chapters li.is-active article {
    color: var(--field-ink);
    transform: none;
  }

  .protection-services-page .protection-field__chapters h3 {
    max-width: 16ch;
    font-size: clamp(1.85rem, 8.2vw, 2.65rem);
  }

  .protection-services-page .protection-field__chapters p {
    max-width: 100%;
    font-size: .84rem;
  }

  .protection-services-page .protection-field__values {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .protection-services-page .protection-field__values div {
    display: grid;
    grid-template-columns: minmax(6rem, .45fr) minmax(0, 1fr);
    align-items: baseline;
    gap: .75rem;
  }

  .protection-services-page .protection-field__values dd {
    margin-top: 0;
    text-align: right;
  }

  .protection-services-page .services-protection-field .services-accordion-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 5.5rem;
  }
}

/* Keep the responsive information stage in view while its chapter triggers run. */
@media (max-width: 48rem) and (min-height: 42.01rem) {
  .protection-services-page .protection-field__stage {
    display: contents;
  }

  .protection-services-page .protection-field__instrument {
    position: sticky;
    top: 4.75rem;
    z-index: 3;
    height: 26rem;
    min-height: 26rem;
    padding: 3.15rem .8rem .75rem;
    box-shadow: var(--field-shadow);
  }

  .protection-services-page .protection-field__sheets {
    position: relative;
    inset: auto;
    gap: .16rem;
  }

  .protection-services-page .protection-field__sheet,
  .protection-services-page .protection-field__sheet:nth-child(n) {
    width: 88%;
    min-height: 1.9rem;
    padding: .28rem .55rem .28rem .7rem;
  }

  .protection-services-page .protection-field__sheet span {
    font-size: .67rem;
  }

  .protection-services-page .protection-field__sheet small {
    font-size: .48rem;
  }

  .protection-services-page .protection-field__readout {
    margin-top: .55rem;
    padding: .55rem .65rem .6rem;
  }

  .protection-services-page .protection-field__readout > span {
    font-size: .48rem;
  }

  .protection-services-page .protection-field__readout > strong {
    margin-top: .3rem;
    font-size: 1rem;
  }

  .protection-services-page .protection-field__readout > small {
    margin-top: .28rem;
    font-size: .56rem;
    line-height: 1.3;
  }

  .protection-services-page .protection-field__readout dl {
    margin-top: .45rem;
  }

  .protection-services-page .protection-field__readout dl div {
    padding: .3rem .25rem;
  }

  .protection-services-page .protection-field__readout dd {
    font-size: .52rem;
  }

  .protection-services-page .protection-field__stage figcaption {
    padding-top: 1rem;
  }

  .protection-services-page .protection-field__chapters {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
  }

  .protection-services-page .protection-field__chapters li {
    min-height: 68svh;
    align-items: flex-end;
    border: 0;
  }

  .protection-services-page .protection-field__chapters li:last-child {
    border: 0;
  }

  .protection-services-page .protection-field__chapters article {
    padding: 1rem .35rem 1.15rem;
  }

  .protection-services-page .protection-field__values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .3rem;
  }

  .protection-services-page .protection-field__values div {
    display: block;
    padding: .7rem .3rem;
  }

  .protection-services-page .protection-field__values dd {
    margin-top: .35rem;
    text-align: left;
  }
}

@media (max-width: 24rem) {
  .protection-services-page .protection-field__plans article {
    grid-template-columns: 1fr;
  }

  .protection-services-page .protection-field__plans a {
    margin-top: .4rem;
  }

  .protection-services-page .protection-field__readout dl {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 48.0625rem) and (max-height: 48rem) {
  .protection-services-page .protection-field__stage {
    position: relative;
    top: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .protection-services-page .protection-field__stage {
    position: relative;
    top: auto;
  }

  .protection-services-page .protection-field__plane,
  .protection-services-page .protection-field__sheet,
  .protection-services-page .protection-field__readout dl div,
  .protection-services-page .protection-field__plans article,
  .protection-services-page .protection-field__plans button,
  .protection-services-page .protection-field__plans a,
  .protection-services-page .protection-field__chapters article,
  .protection-services-page .protection-field__values div {
    transition: none;
  }

  .protection-services-page .protection-field__chapters li {
    min-height: auto;
  }

  .protection-services-page .protection-field__chapters article,
  .protection-services-page .protection-field__chapters li.is-active article {
    color: var(--field-ink);
    transform: none;
  }
}

@media (max-width: 48rem) and (prefers-reduced-motion: reduce) {
  .protection-services-page .protection-field__stage {
    display: block;
  }

  .protection-services-page .protection-field__instrument {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    box-shadow: var(--field-shadow);
  }
}

/* Compact protection layers: keep readable type instead of scaling the artwork. */
@media (max-width: 1300px) {
  .protection-services-page .protection-field__layout { display: block; }
  .protection-services-page .protection-field__stage { display: contents; }
  .protection-services-page .protection-field__instrument {
    position: sticky;
    top: 76px;
    z-index: 3;
    height: auto;
    min-height: 0;
    padding: 1.5rem 1rem 1rem;
    border-radius: 1.25rem;
  }
  .protection-services-page .protection-field__instrument::after { top: .65rem; left: 1rem; width: 2rem; height: 2px; }
  .protection-services-page .protection-field__plane { inset: 1rem 1.3rem; padding: .5rem; }
  .protection-services-page .protection-field__plane span { display: none; }
  .protection-services-page .protection-field__sheets {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .3rem;
  }
  .protection-services-page .protection-field__sheet,
  .protection-services-page .protection-field__sheet:nth-child(n) {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 44px;
    padding: .4rem;
    display: block;
    grid-column: span 3;
    color: var(--field-ink);
  }
  .protection-services-page .protection-field__sheet:nth-child(3),
  .protection-services-page .protection-field__sheet:nth-child(4),
  .protection-services-page .protection-field__sheet:nth-child(5) { grid-column: span 2; }
  .protection-services-page .protection-field__sheet span {
    white-space: normal;
    overflow: visible;
    font-size: .875rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
  /* Secondary descriptions are repeated in the full chapter and active readout. */
  .protection-services-page .protection-field__sheet small { display: none; }
  .protection-services-page .protection-field__sheet.is-active { transform: translate3d(0, -3px, 0); }
  .protection-services-page .protection-field__readout {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: .65rem;
    padding: .65rem .7rem;
    background: var(--field-paper);
  }
  .protection-services-page .protection-field__readout > span { font-size: .7rem; }
  .protection-services-page .protection-field__readout > strong {
    max-width: none;
    margin-top: .35rem;
    font-size: 1.15rem;
    line-height: 1.18;
    text-wrap: initial;
  }
  .protection-services-page .protection-field__readout > small { display: none; }
  .protection-services-page .protection-field__readout dl { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: .65rem; }
  .protection-services-page .protection-field__readout dl div { padding: .35rem .1rem; color: var(--field-ink); }
  .protection-services-page .protection-field__readout dt { font-size: .68rem; }
  .protection-services-page .protection-field__readout dd { font-size: .8rem; line-height: 1.3; overflow-wrap: anywhere; }
  .protection-services-page .protection-field__stage figcaption { padding-top: 1rem; font-size: .8rem; line-height: 1.5; }
  .protection-services-page .protection-field__chapters { margin-top: 2rem; }
  .protection-services-page .protection-field__chapters li { min-height: 520px; align-items: center; }
  .protection-services-page .protection-field__chapters article { padding: 2.5rem .25rem; color: var(--field-ink); transform: none; }
  .protection-services-page .protection-field__chapters h3 { font-size: clamp(1.6rem, 5vw, 2.3rem); line-height: 1.12; }
  .protection-services-page .protection-field__chapters p { font-size: 1rem; line-height: 1.65; }
  .protection-services-page .protection-field__values dt { font-size: .75rem; }
  .protection-services-page .protection-field__values dd { font-size: .95rem; }
}
@media (min-width: 700px) and (max-width: 1300px) {
  .protection-services-page .protection-field__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; }
  .protection-services-page .protection-field__stage { display: block; position: sticky; top: 80px; }
  .protection-services-page .protection-field__instrument { position: relative; top: auto; }
  .protection-services-page .protection-field__plans { grid-template-columns: 1fr; margin-top: 1.25rem; }
  .protection-services-page .protection-field__plans article { padding: .75rem 0; }
  .protection-services-page .protection-field__plans article + article { border-left: 0; border-top: 1px solid var(--field-line); }
  .protection-services-page .protection-field__plans button { min-height: 44px; }
  .protection-services-page .protection-field__plans button span { min-height: 0; }
  .protection-services-page .protection-field__plans a { margin-top: .35rem; }
}
@media (max-width: 1300px) and (max-height: 650px) {
  .protection-services-page .protection-field__stage,
  .protection-services-page .protection-field__instrument { position: relative; top: auto; }
}
@media (max-width: 1300px) and (prefers-reduced-motion: reduce) {
  .protection-services-page .protection-field__stage { display: block; position: relative; top: auto; }
  .protection-services-page .protection-field__instrument { position: relative; top: auto; }
  .protection-services-page .protection-field__sheet.is-active { transform: none; }
  .protection-services-page .protection-field__chapters li { min-height: auto; }
}

/* The migrated WhatsApp link had no styling and its SVG occupied the page width. */
.protection-services-page > .floating-chat {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #1c1c1f;
  box-shadow: 0 5px 20px rgb(0 0 0 / .15);
}
.protection-services-page > .floating-chat svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.protection-services-page > .floating-chat:focus-visible { outline: 3px solid var(--foreground); outline-offset: 4px; }

/* Route-local case choreography: the conclusion never shares the pinned stage. */
.protection-services-page .service-case-story { display: block; }
.protection-services-page .service-case-story__stage {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: start;
}
.protection-services-page .service-case-story__opening { position: relative; top: auto; }
.protection-services-page .service-case-story__track li,
.protection-services-page .service-case-story__track li.is-passed {
  opacity: 1;
  transform: none;
  color: var(--foreground);
  transition: color 180ms ease, background-color 180ms ease;
}
.protection-services-page .service-case-story__track li p { color: var(--foreground); font-size: 1rem; }
.protection-services-page .service-case-story__track li.is-active {
  opacity: 1;
  background: color-mix(in srgb, var(--primary) 7%, transparent);
}
.protection-services-page .service-case-story__line b { top: 0; transition: none; }
.protection-services-page .service-case-story__conclusion { position: relative; margin-top: clamp(3rem, 6vw, 6rem); }
.protection-services-page .service-case-story > .editorial-case__note { margin-top: 2rem; }
.protection-services-page [data-services-mode="reading"] .service-case-story__stage,
.protection-services-page [data-services-mode="static"] .service-case-story__stage { display: block; }
.protection-services-page [data-services-mode="reading"] .service-case-story__opening,
.protection-services-page [data-services-mode="static"] .service-case-story__opening { margin-bottom: 3rem; }
.protection-services-page [data-services-mode="reading"] .service-case-story__opening h3,
.protection-services-page [data-services-mode="static"] .service-case-story__opening h3 { max-width: 24ch; }
.protection-services-page [data-services-mode="reading"] .service-case-story__line { display: none; }
.protection-services-page [data-services-mode="reading"] .service-case-story__track {
  padding: 1.25rem;
  overflow: visible;
}
.protection-services-page [data-services-mode="reading"] .service-case-story__track ol { min-width: 0; padding: 0; }
.protection-services-page [data-services-mode="reading"] .service-case-story__track li {
  min-height: clamp(360px, 48svh, 480px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
  padding: 2rem .5rem;
  transform: none;
}
.protection-services-page [data-services-mode="reading"] .service-case-story__track li::before { display: none; }
.protection-services-page [data-services-mode="reading"] .service-case-story__track li strong { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.15; }
.protection-services-page [data-services-mode="reading"] .service-case-story__track li small { font-size: .8rem; }
.protection-services-page .service-case-story__preview {
  position: sticky;
  top: 80px;
  height: 260px;
  z-index: 2;
  perspective: 900px;
  isolation: isolate;
  pointer-events: none;
}
.protection-services-page .service-case-story__paper {
  position: absolute;
  inset: 12px 24px 24px 4px;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 4px 16px 16px 4px;
  background: var(--background);
  color: var(--foreground);
  box-shadow: 0 12px 24px rgb(0 0 0 / .12);
  transform-origin: left center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.protection-services-page .service-case-story__paper small { color: var(--primary); font-size: .8rem; font-weight: 700; }
.protection-services-page .service-case-story__paper strong { font-size: clamp(1.45rem, 2.8vw, 2rem); line-height: 1.12; letter-spacing: -.025em; }
@media (min-width: 700px) {
  .protection-services-page [data-services-mode="reading"] .service-case-story__track { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 0 2rem; }
  .protection-services-page [data-services-mode="reading"] .service-case-story__folio-head,
  .protection-services-page [data-services-mode="reading"] .service-case-story__folio-foot { grid-column: 1 / -1; }
  .protection-services-page .service-case-story__preview { height: 300px; }
}
@media (max-width: 699px) {
  .protection-services-page .service-case-story__opening h3 { font-size: clamp(2rem, 7.8vw, 2.65rem); line-height: 1.08; }
  .protection-services-page .service-case-story__value strong { font-size: 3.5rem; }
  .protection-services-page .service-case-story__folio-head { gap: .75rem; flex-wrap: wrap; }
}
@media (max-height: 550px) {
  .protection-services-page .service-case-story__preview { height: 240px; top: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  .protection-services-page .service-case-story__preview,
  .protection-services-page .service-case-story__line { display: none; }
  .protection-services-page .service-case-story__track li { opacity: 1; transform: none; transition: none; }
  .protection-services-page .service-case-story__track { padding: 1.5rem; }
  .protection-services-page .service-case-story__track li::before { display: none; }
}
