/* ============================================
   zahnärzte.online v2 — Ergänzende Styles
   Alle bestehenden Styles aus styles.css bleiben
   unverändert. Diese Datei ergänzt nur neue
   Sektionen und Elemente.
   ============================================ */

/* ---- Hero Disclaimer ---- */
:root {
  --df-nav-height: 64px;
}

.site-nav {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  transition:
    background .28s var(--ease),
    border-color .28s var(--ease),
    box-shadow .28s var(--ease),
    backdrop-filter .28s var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, .9) !important;
  border-bottom-color: rgba(33, 34, 38, .06) !important;
  box-shadow: 0 10px 28px rgba(33, 34, 38, .045) !important;
  backdrop-filter: blur(22px) saturate(1.5);
}

.site-nav .brand {
  transition: gap .24s var(--ease);
}

.site-nav .brand > .brand-wordmark {
  overflow: hidden;
  transition: max-width .24s var(--ease), font-size .24s var(--ease), opacity .18s var(--ease), transform .24s var(--ease);
}

.site-nav.is-scrolled .brand {
  gap: 0;
}

.site-nav.is-scrolled .brand > .brand-wordmark {
  max-width: 160px;
  opacity: 1;
  transform: translateX(0);
  font-size: 1rem;
}

/* zahnärzte.online — reine Wortmarke, auf Scroll kompakter skaliert */
.brand-zahnaerzte-online {
  gap: 0;
}

.brand-zahnaerzte-online .brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  max-width: 210px;
  opacity: 1;
  transform: translateX(0);
  font-size: clamp(1.2rem, 1.35vw, 1.42rem);
  line-height: 1;
  letter-spacing: -.052em;
}

.brand-zahnaerzte-online .brand-wordmark-primary {
  color: #071f48;
  font-weight: 680;
}

.brand-zahnaerzte-online .brand-wordmark-dot {
  color: #087d92;
  font-weight: 680;
}

.brand-zahnaerzte-online .brand-wordmark-accent {
  color: #087d92;
  font-weight: 500;
}

.nav-links {
  margin-left: 0;
  gap: clamp(16px, 1.65vw, 28px);
  transition: gap .24s var(--ease);
}

.nav-links a {
  white-space: nowrap;
  font-size: clamp(.98rem, .98vw, 1.08rem);
  transition: color .2s var(--ease), font-size .24s var(--ease);
}

.site-nav.is-scrolled .nav-links {
  gap: clamp(12px, 1.35vw, 22px);
}

.site-nav.is-scrolled .nav-links a {
  font-size: clamp(.84rem, .84vw, .94rem);
}

@media (min-width: 1081px) {
  .site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    transition:
      grid-template-columns .28s var(--ease),
      background .28s var(--ease),
      border-color .28s var(--ease),
      box-shadow .28s var(--ease),
      backdrop-filter .28s var(--ease);
  }

  .site-nav .brand {
    grid-column: 1;
    justify-self: start;
  }

  .site-nav .nav-links {
    grid-column: 2;
    justify-self: center;
  }

  .site-nav .nav-cta {
    grid-column: 3;
    justify-self: end;
  }

  .site-nav.is-scrolled {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav.is-scrolled .nav-links {
    justify-self: end;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .site-nav {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    background: var(--grey-10);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--grey-1200);
    transition: transform .2s var(--ease), opacity .2s var(--ease);
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px var(--page) 20px;
    background: white;
    border-bottom: 1px solid var(--grey-100);
    box-shadow: 0 20px 40px rgba(18, 19, 23, .08);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .site-nav.is-scrolled .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: .98rem;
  }

  .nav-cta {
    display: none;
  }
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.55fr) minmax(300px, 1.35fr) minmax(160px, .85fr);
}

.footer-nav {
  min-width: 0;
}

.footer-menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

.footer-menu-column {
  min-width: 0;
}

.footer-menu-columns a {
  min-width: 0;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.35;
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-menu-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-demo-wrap {
  flex-direction: column;
  align-items: stretch;
}

.hero-demo-disclaimer {
  align-self: center;
  max-width: min(100%, 34rem);
  margin: .9rem auto 0;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--grey-700, #55585f);
  text-align: center;
  opacity: .95;
}

/* ---- Hero Mockup Variant ---- */
.hero-mockup-mode {
  background:
    linear-gradient(180deg, #f9fbff 0%, #eef5ff 46%, #f8fbff 100%),
    radial-gradient(circle at 74% 38%, rgba(50, 121, 249, .16), transparent 36%);
  overflow: hidden;
}

.hero-mockup-mode .grid-bg {
  opacity: .52;
  background-image:
    linear-gradient(to right, rgba(33, 34, 38, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(33, 34, 38, .045) 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: 0 0;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  animation: heroGridDrift 18s linear infinite;
}

.hero-mockup-mode .eyebrow {
  border-color: rgba(50, 121, 249, .16);
  background: rgba(255, 255, 255, .68);
  color: #2862c9;
  box-shadow: 0 14px 34px -28px rgba(50, 121, 249, .52);
}

.hero-mockup-mode h1 {
  color: #08266d;
}

.hero-mockup-mode .accent-gradient {
  background: linear-gradient(94deg, #3279f9 0%, #1c62e5 54%, #08266d 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-mockup-mode .hero-subhead {
  color: #4a668f;
}

.hero-mockup-mode .hero-benefits li {
  color: #183d83;
}

.hero-mockup-mode .hero-benefits span {
  color: #5d7191;
}

.hero-mockup-mode .hero-copy {
  position: relative;
  z-index: 3;
}

.hero-mockup-mode .service-marquee::before {
  background: linear-gradient(90deg, #f8fbff 0%, rgba(248, 251, 255, .96) 48%, rgba(248, 251, 255, 0) 100%);
}

.hero-mockup-mode .service-marquee::after {
  background: linear-gradient(270deg, #f8fbff 0%, rgba(248, 251, 255, .96) 48%, rgba(248, 251, 255, 0) 100%);
}

.hero-mockup-v2-mode {
  background:
    linear-gradient(180deg, #fbfdff 0%, #eff8fa 42%, #f7fbfc 100%),
    radial-gradient(circle at 82% 42%, rgba(0, 126, 164, .16), transparent 38%),
    radial-gradient(circle at 26% 72%, rgba(4, 62, 118, .08), transparent 34%);
}

.hero-mockup-v2-mode .hero-inner {
  gap: clamp(44px, 6vh, 72px) clamp(116px, 11vw, 188px);
}

.hero-mockup-v2-mode .grid-bg {
  opacity: .34;
  background-image:
    linear-gradient(to right, rgba(0, 126, 164, .06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(4, 62, 118, .045) 1px, transparent 1px);
}

.hero-mockup-v2-mode .eyebrow {
  border-color: rgba(0, 126, 164, .18);
  background: rgba(255, 255, 255, .78);
  color: #006f91;
  box-shadow: 0 14px 34px -28px rgba(0, 126, 164, .48);
}

.hero-mockup-v2-mode h1 {
  color: #092a4d;
}

.hero-mockup-v2-mode .accent-gradient {
  background: linear-gradient(94deg, #007ea4 0%, #0b7898 44%, #092a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-mockup-v2-mode .hero-subhead {
  color: #375b75;
}

.hero-mockup-v2-mode .hero-benefits li {
  color: #0d3858;
}

.hero-mockup-v2-mode .hero-benefits li::before {
  background: #007ea4;
}

.hero-mockup-v2-mode .hero-benefits span {
  color: #5a7486;
}


.hero-mockup-v2-mode .checkpoint {
  color: #0d3858;
}

.hero-mockup-v2-mode .service-marquee::before {
  background: linear-gradient(90deg, #f7fbfc 0%, rgba(247, 251, 252, .96) 48%, rgba(247, 251, 252, 0) 100%);
}

.hero-mockup-v2-mode .service-marquee::after {
  background: linear-gradient(270deg, #f7fbfc 0%, rgba(247, 251, 252, .96) 48%, rgba(247, 251, 252, 0) 100%);
}

.hero-mockup-visual {
  position: relative;
  justify-self: center;
  align-self: center;
  z-index: 1;
  width: min(72vw, 1120px);
  max-width: none;
  margin: 0;
  transform: translateX(1.5vw) scale(1);
  pointer-events: none;
}

.hero-mockup-visual.reveal.is-visible {
  transform: translateX(1.5vw) scale(1);
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 96px 96px;
  }
}

.hero-mockup-visual::before {
  content: "";
  position: absolute;
  inset: 9% 2% 2%;
  z-index: 0;
  border-radius: 40px;
  background: radial-gradient(circle at 52% 38%, rgba(50, 121, 249, .16), rgba(255, 255, 255, 0) 64%);
  filter: blur(22px);
  pointer-events: none;
}

.hero-mockup-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 42px 78px rgba(24, 67, 145, .14));
}

.hero-mockup-visual figcaption {
  position: relative;
  z-index: 1;
  width: min(46rem, calc(100vw - var(--page) * 2));
  max-width: none;
  margin: .25rem auto 0;
  color: #5c7396;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.hero-mockup-mode:not(.hero-mockup-v2-mode) .hero-mockup-visual figcaption {
  transform: translateX(clamp(-180px, -7vw, -72px));
}

.hero-mockup-visual-v2 {
  width: min(68vw, 1040px);
  transform: translate(-2vw, 28px) scale(1.04);
}

.hero-mockup-visual-v2 figcaption {
  margin-top: 0;
  color: #526f82;
}

.hero-mockup-visual-v2.reveal.is-visible {
  transform: translate(-2vw, 28px) scale(1.04);
}

.hero-mockup-visual-v2 img {
  filter: drop-shadow(0 42px 82px rgba(0, 80, 115, .16));
}

.hero-navigator-copy {
  border-top: 1px solid rgba(33, 34, 38, .06);
}

/* ---- Frameblox-inspired Center Hero ---- */
.hero-frameblox {
  --hero-frameblox-mockup-width: min(74vw, 1500px);
  --hero-frameblox-mockup-gap: 40px;
  --hero-frameblox-band-width: var(--hero-frameblox-mockup-width);
  scroll-margin-top: 64px;
  height: calc(100svh - var(--df-nav-height));
  min-height: min(690px, calc(100svh - var(--df-nav-height)));
  max-height: calc(100svh - var(--df-nav-height));
  padding: clamp(76px, 9svh, 104px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(50, 121, 249, .11), transparent 34%),
    radial-gradient(circle at 12% 76%, rgba(18, 196, 145, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 44%, #edf8f6 100%);
  border-top: 1px solid rgba(33, 34, 38, .06);
}

.hero-frameblox::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: clamp(112px, 18svh, 190px);
  background: linear-gradient(180deg, rgba(237, 248, 246, 0) 0%, rgba(237, 248, 246, .82) 58%, #edf8f6 100%);
  pointer-events: none;
}

.hero-frameblox .grid-bg {
  opacity: .42;
  background-image:
    linear-gradient(to right, rgba(5, 50, 103, .052) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 118, 139, .045) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: radial-gradient(ellipse at 50% 24%, #000 18%, rgba(0, 0, 0, .72) 46%, transparent 82%);
  animation: heroFrameGridDrift 22s linear infinite;
}

.hero-frameblox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  padding-top: clamp(28px, 4svh, 40px);
  text-align: center;
}

.hero-frameblox-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 850px);
  gap: clamp(9px, 1.45svh, 16px);
  flex: 0 0 auto;
}

.hero-frameblox .eyebrow {
  border-color: rgba(14, 122, 151, .18);
  background: rgba(255, 255, 255, .74);
  color: #0a7891;
  font-size: clamp(.62rem, .7vw, .75rem);
  box-shadow: 0 14px 32px -28px rgba(0, 126, 164, .5);
}

.hero-frameblox-kicker {
  margin: clamp(0px, .6svh, 4px) 0 -2px;
  color: #092a4d;
  font-size: clamp(1.15rem, min(2.05vw, 3.45svh), 2.05rem);
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-frameblox h1 {
  max-width: min(900px, 100%);
  margin: 0 auto;
  color: #071f48;
  font-size: clamp(2.25rem, min(5vw, 8svh), 4.65rem);
  font-weight: 520;
  line-height: .96;
  letter-spacing: 0;
  text-align: center;
}

@media (min-width: 1000px) {
  .hero-frameblox-copy {
    width: min(100%, 1120px);
  }

  .hero-frameblox h1 {
    max-width: 1120px;
    font-size: clamp(3.2rem, 4.25vw, 4.15rem);
  }

  .hero-heading-line {
    white-space: nowrap;
  }
}

.hero-frameblox .accent-gradient {
  background: linear-gradient(96deg, #3279f9 0%, #0b8da7 45%, #103f82 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-frameblox .hero-subhead {
  max-width: 720px;
  margin: 0 auto;
  color: #49647c;
  font-size: clamp(.92rem, min(1.12vw, 2.05svh), 1.12rem);
  line-height: 1.5;
  text-align: center;
}

.hero-frameblox .hero-actions {
  justify-content: center;
  margin-top: clamp(2px, .8svh, 6px);
}


.hero-frameblox-mockup {
  position: relative;
  z-index: 1;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: var(--hero-frameblox-mockup-width);
  flex: 1 1 0;
  min-height: 0;
  max-width: calc(100vw - 32px);
  margin: clamp(20px, 3svh, 28px) auto 0;
  overflow: visible;
  pointer-events: none;
}

.hero-frameblox-mockup::before {
  content: "";
  position: absolute;
  inset: 13% 9% 1%;
  z-index: 0;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 22%, rgba(50, 121, 249, .18), transparent 54%),
    linear-gradient(180deg, rgba(0, 126, 164, .1), rgba(255, 255, 255, 0));
  filter: blur(24px);
}

.hero-frameblox-mockup img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto auto 0;
  filter: drop-shadow(0 46px 88px rgba(7, 31, 72, .17));
}

.hero-frameblox-mockup figcaption {
  display: none;
}

.hero-frameblox-mockup.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.hero-frameblox-mockup.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFrameGridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -104px 104px;
  }
}

.hero-frameblox-trust-band {
  position: absolute;
  right: 0;
  bottom: clamp(14px, calc(4.5svh - 20px), 32px);
  left: 0;
  z-index: 8;
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.hero-frameblox-trust-band .service-marquee {
  width: var(--hero-frameblox-band-width);
  max-width: var(--hero-frameblox-band-width);
  margin: 0 auto;
  padding-top: 0;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-frameblox-trust-band .trust-tags [role="tooltip"] {
  z-index: 80;
}

.hero-frameblox-trust-band .service-marquee::before {
  left: -112px;
  width: 240px;
  background: linear-gradient(90deg, #edf8f6 0%, #edf8f6 34%, rgba(237, 248, 246, .94) 58%, rgba(237, 248, 246, 0) 100%);
}

.hero-frameblox-trust-band .service-marquee::after {
  right: -112px;
  width: 240px;
  background: linear-gradient(270deg, #edf8f6 0%, #edf8f6 34%, rgba(237, 248, 246, .94) 58%, rgba(237, 248, 246, 0) 100%);
}

.hero-frameblox-trust-band .checkpoint {
  color: #284c62;
}

@media (max-width: 1024px) {
  .hero-mockup-visual {
    width: min(100%, 820px);
    transform: none;
  }

  .hero-mockup-visual.reveal.is-visible {
    transform: none;
  }

  .hero-mockup-visual-v2 {
    width: min(108%, 820px);
    transform: translate(-2vw, 20px) scale(1);
  }

  .hero-mockup-visual-v2.reveal.is-visible {
    transform: translate(-2vw, 20px) scale(1);
  }
}

@media (max-width: 640px) {
  :root {
    --df-nav-height: 62px;
  }

  .hero-mockup-visual {
    width: 106%;
    transform: translateX(-3%) scale(1);
  }

  .hero-mockup-visual.reveal.is-visible {
    transform: translateX(-3%) scale(1);
  }

  .hero-mockup-visual-v2 {
    width: 112%;
    transform: translate(-6%, 16px) scale(.98);
  }

  .hero-mockup-visual-v2.reveal.is-visible {
    transform: translate(-6%, 16px) scale(.98);
  }

  .hero-mockup-visual figcaption {
    font-size: .78rem;
  }

  .hero-frameblox {
    --hero-frameblox-mockup-width: min(96vw, 900px);
    scroll-margin-top: 62px;
    height: calc(100svh - var(--df-nav-height));
    min-height: calc(100svh - var(--df-nav-height));
    max-height: calc(100svh - var(--df-nav-height));
    padding: clamp(58px, 8svh, 72px) 0 0;
  }

  .hero-frameblox h1 {
    max-width: min(100%, 12.2ch);
    font-size: clamp(2rem, min(11vw, 6.2svh), 2.85rem);
  }

  .hero-frameblox-mockup {
    width: var(--hero-frameblox-mockup-width);
    flex: 1 1 0;
    min-height: 0;
    margin-top: 24px;
    transform: none;
  }

  .hero-frameblox-mockup.reveal {
    transform: translateY(16px);
  }

  .hero-frameblox-mockup.reveal.is-visible {
    transform: translateY(0);
  }

  .hero-frameblox-inner {
    gap: 0;
    transform: none;
  }

  .hero-frameblox-copy {
    gap: clamp(7px, 1.1svh, 10px);
  }

  .hero-frameblox-kicker {
    font-size: clamp(1.05rem, min(5.2vw, 2.8svh), 1.35rem);
  }

  .hero-frameblox .hero-subhead {
    font-size: clamp(.84rem, min(3.6vw, 1.9svh), .96rem);
    line-height: 1.43;
  }
}

/* ---- Problem Alternative ---- */
.status-quo-alt {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(74px, 8vw, 118px) 0 clamp(82px, 8vw, 124px);
  background:
    radial-gradient(circle at 78% 22%, rgba(50, 121, 249, .10), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(12, 141, 120, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 45%, #edf8f6 100%);
  color: #071f48;
}

.status-quo-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(5, 50, 103, .046) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 118, 139, .04) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: radial-gradient(ellipse at 50% 18%, #000 18%, rgba(0, 0, 0, .7) 48%, transparent 86%);
  opacity: .65;
}

.status-quo-alt .eyebrow {
  border-color: rgba(14, 122, 151, .18);
  background: rgba(255, 255, 255, .74);
  color: #0a7891;
  box-shadow: 0 14px 32px -28px rgba(0, 126, 164, .5);
}

.problem-alt-head {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(340px, 1fr);
  gap: clamp(24px, 3.2vw, 54px);
  align-items: center;
}

.problem-alt-head>div {
  width: 100%;
}

.problem-alt-head h2 {
  max-width: 28ch;
  margin-top: clamp(20px, 2.6vw, 34px);
  color: #071f48;
  font-size: var(--font-xxl);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
}

.problem-alt-head h2 .accent-gradient {
  display: block;
  background: linear-gradient(96deg, #3279f9 0%, #0b8da7 45%, #103f82 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.problem-alt-head div>p:not(.eyebrow) {
  max-width: 58ch;
  margin-top: clamp(24px, 2.8vw, 38px);
  color: #0b203d;
  font-size: clamp(1.02rem, 1.08vw, 1.2rem);
  font-weight: 430;
  line-height: 1.56;
  letter-spacing: 0;
}

.problem-alt-intro-visual {
  position: relative;
  min-height: clamp(320px, 34vw, 540px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.problem-alt-intro-visual img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(140%, 820px);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: .96;
  filter: saturate(1.04) contrast(.99);
}

.problem-alt-shape {
  position: absolute;
  display: block;
  border: 1px solid rgba(50, 121, 249, .22);
  background: rgba(255, 255, 255, .16);
  animation: problemShapeFloat 9s ease-in-out infinite;
}

.problem-alt-shape.shape-one {
  width: clamp(52px, 5vw, 82px);
  height: clamp(52px, 5vw, 82px);
  right: 14%;
  top: 12%;
  border-radius: 24px;
  transform: rotate(12deg);
}

.problem-alt-shape.shape-two {
  width: clamp(34px, 3.4vw, 58px);
  height: clamp(34px, 3.4vw, 58px);
  left: 10%;
  bottom: 24%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(50, 121, 249, .16), rgba(11, 141, 167, .1));
  animation-delay: -2.4s;
}

.problem-alt-shape.shape-three {
  width: clamp(96px, 10vw, 156px);
  height: 1px;
  right: 18%;
  bottom: 18%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(50, 121, 249, 0), rgba(50, 121, 249, .42), rgba(11, 141, 167, 0));
  animation-delay: -4.8s;
}

@keyframes problemShapeFloat {

  0%,
  100% {
    translate: 0 0;
    opacity: .68;
  }

  50% {
    translate: 0 -10px;
    opacity: 1;
  }
}

.problem-alt-meta {
  margin: 0;
  color: #0a7891;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.problem-alt-carousel {
  margin-top: clamp(54px, 6.5vw, 92px);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding-bottom: 4px;
}

.problem-alt-points {
  display: flex;
  gap: clamp(82px, calc(2.2vw + 60px), 96px);
  min-height: 330px;
  overflow: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-right: var(--page);
}

.problem-alt-points::-webkit-scrollbar {
  display: none;
}

.problem-alt-point {
  flex: 0 0 clamp(320px, 24vw, 380px);
  scroll-snap-align: start;
  min-height: 310px;
  max-height: 330px;
  padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(7, 31, 72, .14);
}

.problem-alt-point.reveal {
  transform: none;
}

.problem-alt-point.reveal.is-visible {
  transform: none;
}

.problem-alt-controls {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.problem-alt-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 31, 72, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #071f48;
  transition: border-color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease), opacity .18s var(--ease);
}

.problem-alt-arrow span {
  color: currentColor;
  font-size: 1.2rem;
  font-weight: 560;
  line-height: 1;
}

.problem-alt-arrow:hover,
.problem-alt-arrow:focus-visible {
  border-color: rgba(50, 121, 249, .36);
  background: rgba(255, 255, 255, .4);
  transform: translateY(-1px);
}

.problem-alt-arrow:hover span,
.problem-alt-arrow:focus-visible span {
  color: transparent;
  background: linear-gradient(96deg, #3279f9 0%, #0b8da7 58%, #103f82 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.problem-alt-arrow:disabled {
  opacity: .38;
  pointer-events: none;
}

.problem-alt-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.problem-alt-meta span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(50, 121, 249, .1);
  color: #3279f9;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1;
}

.problem-alt-point h3 {
  margin-top: clamp(18px, 2vw, 24px);
  color: #071f48;
  font-size: clamp(1.38rem, 1.7vw, 1.85rem);
  font-weight: 610;
  line-height: 1.08;
  letter-spacing: 0;
}

.problem-alt-point p:not(.problem-alt-meta) {
  margin-top: clamp(18px, 1.8vw, 24px);
  color: #647084;
  font-size: clamp(.98rem, 1vw, 1.08rem);
  line-height: 1.56;
}

.status-quo-alt .status-soft-cta {
  color: #0b7898;
  font-weight: 650;
}

@media (max-width: 1024px) {
  .problem-alt-head {
    grid-template-columns: 1fr;
  }

  .problem-alt-head h2,
  .problem-alt-head div>p:not(.eyebrow) {
    max-width: none;
  }

  .problem-alt-head>div {
    width: 100%;
  }

  .problem-alt-intro-visual {
    min-height: 300px;
  }

  .problem-alt-points {
    padding-right: var(--page);
  }

}

@media (max-width: 640px) {
  .status-quo-alt {
    padding: 78px 0 86px;
  }

  .problem-alt-head {
    gap: 28px;
  }

  .problem-alt-head h2 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12vw, 3.45rem);
  }

  .problem-alt-head div>p:not(.eyebrow) {
    font-size: clamp(1.18rem, 6vw, 1.55rem);
  }

  .problem-alt-intro-visual {
    min-height: 230px;
  }

  .problem-alt-points {
    gap: 18px;
  }

}

/* ---- Bento Eyebrow ---- */
.bento-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7fb0ff;
  opacity: 1;
  margin-bottom: .3rem;
}

.status-quo .bento-grid .bento-card .bento-eyebrow {
  color: #7fb0ff;
  opacity: 1;
  margin: 0 0 .45rem;
}

.status-quo {
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .038) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(50, 121, 249, .18), transparent 34%),
    radial-gradient(circle at 86% 30%, rgba(12, 179, 170, .12), transparent 38%),
    linear-gradient(180deg, #061d36 0%, #05182d 50%, #031225 100%);
  background-size: 96px 96px, 96px 96px, auto, auto, auto;
}

.status-quo .bento-grid .bento-card {
  background: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .14);
}

.status-quo .bento-grid .bento-card:not(.statement):hover {
  border-color: rgba(127, 176, 255, .78);
  background: linear-gradient(135deg, rgba(50, 121, 249, .86), rgba(6, 29, 55, .42));
  box-shadow: 0 26px 72px -40px rgba(50, 121, 249, .88), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.status-quo .bento-grid .bento-card::after,
.status-quo .bento-grid .bento-card .bento-card-graphic {
  display: none;
}

.status-quo .bento-grid .bento-card h3 {
  max-width: none;
  text-wrap: balance;
  font-family: var(--font) !important;
  font-size: clamp(1.75rem, 2.2vw, 3.25rem) !important;
  font-style: normal !important;
  font-weight: 520 !important;
  line-height: 1.02 !important;
  letter-spacing: -.022em !important;
  text-transform: none !important;
}

.status-quo .bento-grid .bento-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  margin-bottom: clamp(14px, 1.7vh, 22px);
}

.status-quo .bento-grid .bento-card-kicker>i {
  width: clamp(42px, 4.8vh, 52px);
  height: clamp(42px, 4.8vh, 52px);
  margin: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 176, 255, .14);
  color: #7fb0ff;
  font-style: normal;
  font-size: clamp(20px, 2.2vh, 26px);
  font-weight: 640;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.status-quo .bento-grid .bento-card-kicker .bento-eyebrow {
  margin: 0;
}

.bento-title-accent {
  display: inline;
  font-family: inherit !important;
  font-size: inherit !important;
  font-style: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  color: transparent;
  background: linear-gradient(94deg, #d8e8ff 0%, #8fc0ff 42%, #9ff7ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.status-quo .bento-grid .bento-card:not(.statement):hover .bento-card-kicker>i {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.status-quo .bento-grid .bento-card:not(.statement):hover .bento-eyebrow {
  color: #fff;
}

.status-quo .bento-grid .bento-card:not(.statement):hover .bento-title-accent {
  background: linear-gradient(94deg, #ffffff 0%, #dffcff 52%, #b9d7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---- Problem Statement Card ---- */
.status-quo .bento-card.statement {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.status-quo .bento-card.statement>i {
  align-self: flex-start;
  margin: 0 0 clamp(14px, 1.8vh, 22px);
}

.status-quo .section-head {
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 18px clamp(28px, 4vw, 56px);
}

.status-quo .section-head p:not(.eyebrow) {
  max-width: 72ch;
}

.status-quo .section-head p.eyebrow {
  font-size: clamp(1.02rem, 1.03vw, 1.16rem);
  line-height: 1.58;
}

.status-quo .bento-grid .bento-card:nth-child(1) {
  grid-column: 1 / span 8;
  grid-row: 1;
}

.status-quo .bento-card {
  isolation: isolate;
}

.status-quo .bento-card .bento-card-graphic {
  position: absolute;
  z-index: 0;
  right: clamp(-68px, -4vw, -34px);
  bottom: clamp(-82px, -5vw, -42px);
  width: clamp(210px, 18vw, 360px);
  max-width: none;
  opacity: .2;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.03);
  pointer-events: none;
}

.status-quo .bento-card.statement .bento-card-graphic {
  right: clamp(-44px, -2vw, -18px);
  bottom: clamp(-96px, -5vw, -52px);
  width: clamp(340px, 30vw, 560px);
  opacity: .24;
}

.status-quo .bento-grid .bento-card:nth-child(2) .bento-card-graphic {
  right: clamp(-92px, -5vw, -52px);
  top: clamp(-72px, -4vw, -38px);
  bottom: auto;
  width: clamp(230px, 20vw, 360px);
  opacity: .18;
}

.status-quo .bento-grid .bento-card:nth-child(3) .bento-card-graphic {
  right: clamp(-84px, -5vw, -46px);
  bottom: clamp(-76px, -4vw, -38px);
  width: clamp(240px, 21vw, 380px);
}

.status-quo .bento-grid .bento-card:nth-child(4) .bento-card-graphic {
  right: clamp(-70px, -4vw, -34px);
  bottom: clamp(-98px, -6vw, -56px);
  width: clamp(300px, 26vw, 520px);
  opacity: .18;
}

.status-quo .bento-grid .bento-card:nth-child(5) .bento-card-graphic {
  left: clamp(-86px, -5vw, -46px);
  right: auto;
  bottom: clamp(-94px, -5vw, -52px);
  width: clamp(260px, 23vw, 430px);
}

.status-quo .bento-grid .bento-card:nth-child(6) .bento-card-graphic {
  right: clamp(-70px, -4vw, -34px);
  bottom: clamp(-92px, -5vw, -48px);
  width: clamp(300px, 24vw, 480px);
  opacity: .19;
}

.status-quo .bento-grid .bento-card:nth-child(6) {
  grid-column: 7 / span 6;
  grid-row: 3;
}

/* ---- Status Soft CTA ---- */
.status-soft-cta {
  display: inline-block;
  margin-top: .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-accent, #4f8ef7);
  text-decoration: none;
}

.status-soft-cta:hover {
  text-decoration: underline;
}

/* ============================================
   03 SYSTEM SECTION
   ============================================ */
.system-section {
  isolation: isolate;
  background:
    linear-gradient(155deg, rgba(18, 19, 23, .04) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(28deg, rgba(22, 163, 107, .12) 0%, rgba(255, 255, 255, .92) 43%, rgba(50, 121, 249, .13) 100%),
    var(--grey-10);
}

.system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(33, 34, 38, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(33, 34, 38, .045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  opacity: .55;
}

.system-section .section-head h2 {
  max-width: 980px;
  margin-inline: auto;
}

.system-mission {
  max-width: 640px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  opacity: .85;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  align-items: stretch;
  gap: clamp(10px, 1vw, 16px);
  margin: clamp(36px, 5vw, 72px) 0 clamp(54px, 7vw, 96px);
  padding: 14px 4px 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.system-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 22px;
  padding: clamp(12px, 1.15vw, 18px) clamp(14px, 1.35vw, 22px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .68)),
    rgba(255, 255, 255, .78);
  box-shadow: 0 26px 64px -54px rgba(18, 19, 23, .36);
  backdrop-filter: blur(18px) saturate(1.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: clamp(7px, .7vw, 11px);
  overflow: hidden;
}

.system-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(50, 121, 249, .075), rgba(22, 163, 107, .045) 48%, rgba(255, 255, 255, 0) 76%);
  opacity: .78;
  pointer-events: none;
}

.system-item>* {
  position: relative;
  z-index: 1;
}

.system-graphic {
  width: min(100%, 136px);
  aspect-ratio: 1;
  object-fit: contain;
  align-self: center;
  margin: 0 auto clamp(2px, .35vw, 6px);
  filter: drop-shadow(0 18px 28px rgba(50, 121, 249, .12));
}

.system-item:nth-child(1) {
  --system-float-y: 20px;
  animation-delay: -.6s;
}

.system-item:nth-child(2) {
  --system-float-y: -14px;
  animation-delay: -2.2s;
}

.system-item:nth-child(3) {
  --system-float-y: 38px;
  animation-delay: -1.1s;
}

.system-item:nth-child(4) {
  --system-float-y: 6px;
  animation-delay: -3.1s;
}

.system-item:nth-child(5) {
  --system-float-y: -22px;
  animation-delay: -1.8s;
}

.system-item:nth-child(6) {
  --system-float-y: 28px;
  animation-delay: -2.7s;
}

.system-item {
  transform: translateY(var(--system-float-y, 0));
  animation: systemCardFloat 7.5s var(--ease) infinite;
}

@keyframes systemCardFloat {

  0%,
  100% {
    transform: translateY(var(--system-float-y, 0));
  }

  50% {
    transform: translateY(calc(var(--system-float-y, 0) - 10px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-item {
    animation: none;
  }
}

.system-item strong {
  font-size: clamp(1.08rem, 1.16vw, 1.42rem);
  line-height: 1.04;
  font-weight: 680;
  color: var(--grey-1200);
}

.system-item span {
  font-size: clamp(.8rem, .78vw, .94rem);
  color: var(--grey-800);
  line-height: 1.34;
}

.system-transition {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  opacity: 1;
}

.system-transition span {
  display: block;
}

.system-transition span:first-child {
  font-size: clamp(1.55rem, 2.35vw, 3rem);
  line-height: 1.08;
  font-weight: 590;
  letter-spacing: 0;
  background: linear-gradient(95deg, var(--grey-1200) 0%, var(--grey-1000) 42%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.system-transition span:last-child {
  max-width: 700px;
  margin: clamp(12px, 1.45vw, 18px) auto 0;
  color: var(--grey-800);
  font-size: clamp(.98rem, 1.05vw, 1.18rem);
  font-weight: 480;
  line-height: 1.5;
}

/* ---- Intent Navigator Callouts ---- */
.intent-scroll-stage .navigator-mockup {
  top: clamp(118px, 21vh, 216px);
}

.intent-step-notes {
  width: min(500px, calc(100vw - var(--page) * 2));
  min-height: 184px;
}

.intent-step-note {
  min-height: 100%;
  padding: 24px 28px;
}

.intent-step-note[data-callout="3"] {
  padding-bottom: 34px;
}

.intent-step-note h3 {
  max-width: 14ch;
}

.intent-step-note p {
  max-width: 34ch;
}

.intent-scroll-stage[data-active="search"] {
  --intent-note-top: clamp(312px, 43vh, 404px);
}

.intent-scroll-stage[data-active="quick"] {
  --intent-note-top: clamp(360px, 50vh, 464px);
}

.intent-scroll-stage[data-active="process"],
.intent-scroll-stage[data-active="result"] {
  --intent-note-top: clamp(456px, 64vh, 536px);
}

.intent-section {
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 250, 255, .92) 34%, rgba(239, 247, 244, .9) 100%),
    radial-gradient(circle at 18% 34%, rgba(50, 121, 249, .12), transparent 36%),
    radial-gradient(circle at 82% 68%, rgba(22, 163, 107, .12), transparent 34%);
}

.intent-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(120deg, rgba(50, 121, 249, .05) 0 1px, transparent 1px),
    linear-gradient(30deg, rgba(22, 163, 107, .045) 0 1px, transparent 1px);
  background-size: 118px 118px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  opacity: .72;
}

/* ============================================
   04 NAVIGATOR MASONRY
   ============================================ */
.navigator-masonry-wrap {
  max-width: calc(980px + var(--page) * 2);
  margin-top: clamp(96px, 10vw, 156px);
}

.navigator-masonry-head {
  margin-bottom: clamp(26px, 3vw, 42px);
  max-width: 900px;
  color: var(--grey-1200);
  font-weight: 520;
}

.navigator-masonry-head .accent-gradient {
  display: block;
  margin-top: .16em;
  font-weight: 590;
}

.navigator-masonry {
  column-count: 3;
  column-gap: clamp(14px, 1.4vw, 22px);
  counter-reset: navigatorMasonry;
}

@media (max-width: 900px) {
  .navigator-masonry {
    column-count: 2;
  }
}

@media (max-width: 560px) {
  .navigator-masonry {
    column-count: 1;
  }
}

.masonry-card {
  break-inside: avoid;
  position: relative;
  counter-increment: navigatorMasonry;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 22px;
  padding: clamp(20px, 2vw, 30px);
  margin-bottom: clamp(14px, 1.4vw, 22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .58)),
    rgba(255, 255, 255, .72);
  box-shadow: 0 26px 72px -56px rgba(18, 19, 23, .34), inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px) saturate(1.25);
  opacity: 0;
  transform: translateY(14px) scale(.995);
  filter: blur(3px);
  transition: opacity .46s var(--ease), transform .46s var(--ease), filter .46s var(--ease);
}

.masonry-card::before {
  content: counter(navigatorMasonry, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  margin-bottom: clamp(18px, 2vw, 28px);
  border-radius: 999px;
  background: rgba(50, 121, 249, .1);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
}

.masonry-card:nth-child(2n) {
  padding-top: clamp(28px, 3vw, 42px);
  padding-bottom: clamp(24px, 2.6vw, 38px);
}

.masonry-card:nth-child(3n) {
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .94), rgba(246, 250, 255, .68)),
    rgba(255, 255, 255, .76);
}

.masonry-card:nth-child(4n) {
  padding-bottom: clamp(34px, 3.4vw, 54px);
}

.masonry-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.masonry-card h4 {
  margin-bottom: .72rem;
  font-size: clamp(1.08rem, 1.05vw, 1.34rem);
  line-height: 1.08;
  font-weight: 610;
  letter-spacing: 0;
  color: var(--grey-1200);
}

.masonry-card p {
  font-size: clamp(.86rem, .82vw, .98rem);
  line-height: 1.55;
  color: var(--grey-800);
  opacity: .9;
}

.navigator-result-line {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2rem 0 1.25rem;
  opacity: .9;
}

.navigator-masonry-cta {
  text-align: center;
  margin-bottom: 2rem;
}

/* ============================================
   05 CONTENT PACKS SECTION
   ============================================ */
.content-packs-section {
  overflow: hidden;
}

.pack-nav-section {
  overflow: visible;
}

.pack-scroll-outer {
  position: relative;
  height: 800vh;
  margin-top: 40px;
}

.pack-scroll-outer[data-pack-stage] {
  height: calc(8.75 * 100vh);
}

.pack-scroll-inner {
  position: sticky;
  top: var(--df-nav-height, 64px);
  height: calc(100vh - var(--df-nav-height, 64px));
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.pack-nav-sticky-shell {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding-top: clamp(18px, 3vh, 42px);
  padding-bottom: clamp(0px, .6vh, 8px);
  box-sizing: border-box;
}

.pack-nav-section .section-head {
  margin: 0 auto;
}

.pack-nav-section .section-head h2 {
  font-size: clamp(2rem, min(4.2vw, 5.4vh), 4.15rem);
}

.pack-nav-section .section-head p:not(.eyebrow) {
  max-width: 860px;
  font-size: clamp(.95rem, min(1.08vw, 1.7vh), 1.08rem);
  line-height: 1.48;
}

.pack-sticky-canvas {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pack-nav-section .pack-sticky-canvas {
  position: relative;
  top: auto;
  height: auto;
  min-height: clamp(420px, 62vh, 700px);
  max-width: 1180px;
  width: 100%;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "display"
    "callouts";
  align-items: center;
  gap: clamp(18px, 2.4vh, 28px);
}

.pack-nav-section .pack-display {
  grid-area: display;
}

.pack-nav-section .pack-callouts {
  grid-area: callouts;
}

.pack-nav-section .pack-display {
  min-height: 0;
  width: 100%;
}

.pack-nav-section .pack-sticky-canvas:is([data-seq="5"], [data-seq="6"], [data-seq="7"], [data-seq="8"]) .pack-display {
  width: min(100%, 1040px);
  max-width: 1040px;
  margin-inline: auto;
}

.pack-nav-section .pack-seq> :is(.pack-table, .pack-activation, .pack-transfer-visual, .navigator-mockup) {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.pack-nav-section .navigator-mockup {
  max-width: 1040px;
}

.pack-nav-section .pack-sticky-canvas[data-seq="8"] {
  height: 100%;
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-areas: "display";
  align-items: flex-start;
}

.pack-nav-section .pack-sticky-canvas[data-seq="8"] .pack-display {
  transform: translateY(calc(var(--pack-final-progress, 0) * clamp(84px, 18vh, 176px)));
  transition: transform .18s linear;
}

.pack-nav-section .pack-sticky-canvas[data-seq="8"] .pack-callouts {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(210px, 25vh, 270px));
  z-index: 7;
  display: block;
  width: min(100%, 760px);
  min-height: 0;
  margin: 0;
  padding-bottom: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.pack-seq-final .navigator-mockup {
  position: relative;
  width: 100%;
  height: clamp(500px, 56vh, 610px);
  margin: 0 auto;
  overflow: visible;
  text-align: left;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  box-shadow: 0 40px 100px -58px rgba(7, 31, 72, .45);
  transform-origin: 50% 50%;
  transition: transform .28s cubic-bezier(.22, .61, .36, 1), filter .42s ease, opacity .42s ease;
}

.pack-seq-final.active .navigator-mockup {
  animation: none;
  transform: scale(calc(1 + (var(--pack-final-progress, 0) * .04)));
}

.pack-nav-try {
  left: -112px;
  right: auto;
  top: -74px;
  color: #071f48;
  opacity: 0;
  transform: rotate(-5deg) translateY(8px) scale(.96);
  transition: opacity .34s ease, transform .34s ease;
  z-index: 6;
}

.pack-seq-final.active .pack-nav-try {
  animation: none;
}

.pack-sticky-canvas.is-final-ready .pack-nav-try {
  opacity: .72;
  transform: rotate(-5deg) translateY(0) scale(1);
}

.pack-nav-section .mockup-top {
  min-height: 45px;
  box-sizing: border-box;
}

.pack-nav-section .mockup-search {
  min-height: 73px;
  box-sizing: border-box;
}

.pack-nav-section .quick-questions {
  min-height: 68px;
  margin-top: 10px;
  align-content: flex-start;
}

.pack-nav-section .mockup-routing {
  min-height: 236px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 22px 1fr;
  align-items: stretch;
  gap: 10px;
}

.pack-nav-section .patient-bubble,
.pack-nav-section .target-bubble {
  min-height: 92px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pack-nav-section .patient-bubble {
  width: 100%;
  background: linear-gradient(135deg, rgba(246, 250, 255, .96), rgba(233, 241, 255, .78));
  border-color: rgba(50, 121, 249, .18);
}

.pack-nav-section .patient-bubble[data-empty="true"] {
  color: rgba(7, 31, 72, .42);
  font-size: 17px;
  font-weight: 560;
}

.pack-nav-section .route-pulse {
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
}

.pack-nav-section .patient-bubble[data-empty="true"]+.route-pulse {
  opacity: 0;
}

.pack-nav-section .target-bubble {
  width: 100%;
  min-height: 118px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .22), transparent 34%),
    linear-gradient(135deg, #0b8f7f 0%, #087c8e 48%, #06486f 100%);
  box-shadow: 0 26px 70px -40px rgba(11, 143, 127, .78), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.pack-nav-section .target-bubble strong {
  min-height: 1.17em;
  display: flex;
  align-items: center;
  line-height: 1.17;
}

.pack-step-nav {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.pack-step-btn {
  font-size: .8rem;
  padding: .3rem .9rem;
  border-radius: 20px;
  border: 1px solid var(--c-border, rgba(0, 0, 0, .15));
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.pack-step-btn.active {
  background: var(--c-fg, #111);
  color: var(--c-bg, #fff);
  border-color: var(--c-fg, #111);
}

.pack-display {
  position: relative;
  min-height: 240px;
}

.pack-seq {
  animation: packFadeIn .35s ease forwards;
}

.pack-seq[data-seq="5"],
.pack-seq[data-seq="6"],
.pack-seq[data-seq="7"],
.pack-seq-final {
  animation: none;
}

.pack-seq[style*="display: none"],
.pack-seq:not(.active) {
  display: none;
}

@keyframes packFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pack Table */
.pack-table {
  position: relative;
  border: 1px solid rgba(50, 121, 249, .18);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(242, 248, 255, .93)),
    radial-gradient(circle at 88% 12%, rgba(50, 121, 249, .14), transparent 34%);
  box-shadow:
    0 34px 90px -62px rgba(7, 31, 72, .58),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.pack-table::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(50, 121, 249, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 121, 249, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, .7), transparent 72%);
}

.pack-table.mini {
  font-size: .825rem;
  border-radius: 20px;
}

.pack-table.mini .pack-table-row {
  grid-template-columns: 1fr;
}

.pack-table-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  background: linear-gradient(135deg, rgba(50, 121, 249, .12), rgba(11, 141, 167, .08));
  border-bottom: 1px solid rgba(50, 121, 249, .14);
}

.pack-table-title {
  color: #071f48;
  font-size: .98rem;
  font-weight: 660;
  letter-spacing: 0;
}

.pack-table-badge {
  font-size: .72rem;
  font-weight: 680;
  padding: .32rem .72rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #3279f9, #0b8da7);
  color: white;
  box-shadow: 0 12px 24px -16px rgba(50, 121, 249, .85);
}

.pack-table-row {
  position: relative;
  display: grid;
  grid-template-columns: 2.65rem minmax(150px, .88fr) minmax(220px, 1.12fr);
  gap: .85rem;
  padding: .92rem 1.25rem;
  border-bottom: 1px solid rgba(50, 121, 249, .1);
  align-items: center;
  background: linear-gradient(90deg, rgba(50, 121, 249, .045), transparent 64%);
}

.pack-table-row:last-child {
  border-bottom: none;
}

.pack-table-row.rule {
  grid-template-columns: minmax(220px, 1fr) auto minmax(190px, .86fr);
}

.pack-row-num {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(50, 121, 249, .12);
  color: #2f73e9;
  font-size: .72rem;
  font-weight: 720;
}

.pack-row-name {
  color: #071f48;
  font-size: .94rem;
  font-weight: 640;
}

.pack-row-intent {
  color: #48637d;
  font-size: .9rem;
  line-height: 1.35;
  font-style: normal;
}

.pack-row-arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(50, 121, 249, .11);
  color: #2f73e9;
  font-size: .95rem;
  text-align: center;
}

/* Pack Activation (Seq 3) */
.pack-activation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pack-source {
  flex: 1;
}

.pack-target {
  flex: 1;
}

.pack-flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}

.pack-flow-line {
  width: 1px;
  height: 1.5rem;
  background: var(--c-border, rgba(0, 0, 0, .2));
}

.pack-flow-label {
  font-size: .7rem;
  opacity: .5;
  white-space: nowrap;
}

.pack-flow-arrow {
  font-size: 1.25rem;
  opacity: .4;
}

/* Abstract Nav */
.pack-nav-abstract {
  border: 1px solid var(--c-accent, #4f8ef7);
  border-radius: 12px;
  overflow: hidden;
}

.pack-nav-abstract-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  background: var(--c-surface-alt, #f5f5f3);
  border-bottom: 1px solid var(--c-border, rgba(0, 0, 0, .1));
  font-size: .8rem;
  font-weight: 600;
}

.pack-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.pack-nav-abstract-body {
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.pack-nav-abstract-search {
  background: var(--c-surface-alt, #f5f5f3);
  border-radius: 8px;
  padding: .4rem .7rem;
  font-size: .8rem;
  opacity: .6;
}

.pack-nav-abstract-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.pack-nav-abstract-tags span {
  font-size: .72rem;
  padding: .2rem .6rem;
  border-radius: 20px;
  border: 1px solid var(--c-border, rgba(0, 0, 0, .15));
  opacity: .7;
}

.pack-nav-abstract-result {
  background: var(--c-surface-alt, #f5f5f3);
  border-radius: 8px;
  padding: .4rem .7rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pack-nav-abstract-result small {
  font-size: .7rem;
  opacity: .5;
}

.pack-nav-abstract-result strong {
  font-size: .825rem;
}

/* Pack Nav Solo (Seq 4) */
.pack-nav-solo {
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid var(--c-border, rgba(0, 0, 0, .15));
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-surface, #fff);
}

.pack-nav-solo-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  background: var(--c-surface-alt, #f5f5f3);
  border-bottom: 1px solid var(--c-border, rgba(0, 0, 0, .1));
  font-size: .8rem;
  font-weight: 600;
}

.pack-disclaimer-badge {
  margin-left: auto;
  font-size: .65rem;
  opacity: .5;
  font-weight: 400;
}

.pack-nav-solo-body {
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.pack-nav-solo-search {
  display: flex;
  gap: .5rem;
  background: var(--c-surface-alt, #f5f5f3);
  border: 1px solid var(--c-border, rgba(0, 0, 0, .12));
  border-radius: 8px;
  padding: .4rem .6rem;
  align-items: center;
}

.pack-nav-solo-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: .875rem;
  font-family: inherit;
  outline: none;
}

.pack-nav-solo-search button {
  font-size: .75rem;
  padding: .25rem .75rem;
  border-radius: 20px;
  border: 1px solid var(--c-border, rgba(0, 0, 0, .2));
  background: var(--c-fg, #111);
  color: var(--c-bg, #fff);
  cursor: pointer;
  font-family: inherit;
}

.pack-nav-solo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.pack-nav-solo-tags button {
  font-size: .75rem;
  padding: .25rem .7rem;
  border-radius: 20px;
  border: 1px solid var(--c-border, rgba(0, 0, 0, .15));
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}

.pack-nav-solo-tags button:hover {
  background: var(--c-surface-alt, #f5f5f3);
}

.pack-nav-solo-result {
  background: var(--c-surface-alt, #f5f5f3);
  border-radius: 8px;
  padding: .6rem .75rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pack-nav-solo-result small {
  font-size: .7rem;
  opacity: .5;
}

.pack-nav-solo-result strong {
  font-size: .9rem;
  font-weight: 600;
}

.pack-nav-solo-result em {
  font-size: .78rem;
  color: var(--c-accent, #4f8ef7);
  font-style: normal;
}

.pack-nav-disclaimer {
  font-size: .68rem;
  opacity: .45;
  text-align: center;
  font-style: italic;
}

/* Pack Callout */
.pack-callout-block,
.pack-callouts {
  min-height: 3.5rem;
}

.pack-callout {
  display: none;
  font-size: .9rem;
  line-height: 1.65;
  opacity: .8;
  padding: .75rem 1rem;
  border-left: 2px solid var(--c-accent, #4f8ef7);
  background: var(--c-surface-alt, #f5f5f3);
  border-radius: 0 8px 8px 0;
}

.pack-callout.active {
  display: block;
}

.pack-nav-section .pack-callouts {
  width: min(100%, 760px);
  min-height: clamp(150px, 18vh, 210px);
  margin: 0 auto;
  padding-bottom: 34px;
}

.pack-nav-section .pack-callout {
  position: relative;
  min-height: 100%;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), #164cc9 58%, var(--grey-1200));
  color: white;
  box-shadow: 0 30px 86px -42px rgba(50, 121, 249, .82), inset 0 1px 0 rgba(255, 255, 255, .26);
  opacity: 1;
}

.pack-nav-section .pack-callout::before {
  content: "";
  position: absolute;
  top: -9px;
  left: var(--pack-callout-pointer, 50%);
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(255, 255, 255, .22);
  border-top: 1px solid rgba(255, 255, 255, .22);
  background: var(--blue);
  transform: translateX(-50%) rotate(45deg);
}

.pack-nav-section .pack-callout h3 {
  margin: 0 0 8px;
  color: white;
  font-weight: 560;
  line-height: 1.08;
}

.pack-nav-section .pack-callout p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.55;
}

.pack-nav-section .pack-sticky-canvas:is([data-seq="5"], [data-seq="6"], [data-seq="7"]) {
  position: relative;
  align-items: flex-start;
  grid-template-areas:
    "display"
    "callouts";
}

.pack-nav-section .pack-sticky-canvas:is([data-seq="5"], [data-seq="6"], [data-seq="7"]) .pack-display {
  max-width: min(100%, 1040px);
  margin: 0 auto;
}

.pack-nav-section .pack-sticky-canvas:is([data-seq="5"], [data-seq="6"], [data-seq="7"]) .pack-callouts {
  position: relative;
  z-index: 8;
  width: min(100%, 760px);
  min-height: clamp(136px, 16vh, 186px);
  margin: -4px auto 0;
  pointer-events: none;
}

.pack-nav-section .pack-sticky-canvas:is([data-seq="5"], [data-seq="6"], [data-seq="7"]) .pack-callout {
  padding: 20px 24px;
  border-radius: 22px;
}

.pack-nav-section .pack-sticky-canvas[data-seq="5"] .pack-callouts {
  --pack-callout-pointer: 36%;
}

.pack-nav-section .pack-sticky-canvas[data-seq="6"] .pack-callouts {
  --pack-callout-pointer: 53%;
}

.pack-nav-section .pack-sticky-canvas[data-seq="7"] .pack-callouts {
  --pack-callout-pointer: 70%;
}

.pack-nav-section .pack-sticky-canvas[data-seq="7"] {
  grid-template-areas:
    "display"
    "callouts";
  align-items: flex-start;
}

.pack-nav-section .pack-sticky-canvas:is([data-seq="5"], [data-seq="6"], [data-seq="7"]) .pack-callout::before {
  display: block;
}

.pack-nav-section .pack-callout.is-exiting {
  display: block;
  animation: none;
  opacity: calc(1 - var(--pack-final-callout-progress, 0));
  transform: translateY(calc(var(--pack-final-callout-progress, 0) * 6px));
  transition: opacity .1s linear, transform .1s linear;
}

/* Pack Controls */
.pack-controls,
.pack-nav-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-ghost,
.pack-nav-controls button {
  background: transparent;
  border: 1px solid var(--c-border, rgba(0, 0, 0, .2));
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .8rem;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}

.btn-ghost:disabled,
.pack-nav-controls button:disabled {
  opacity: .3;
  cursor: default;
}

.pack-counter,
.pack-nav-controls span {
  font-size: .8rem;
  opacity: .5;
}

.pack-cta-wrap {
  text-align: center;
  padding: 2rem 0 1rem;
}

.pack-nav-final {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.pack-nav-final::before {
  display: none;
}

.pack-nav-final .navigator-result-line {
  margin: 0;
}

.pack-nav-final-callout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(30px, 4.2vw, 56px) clamp(26px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 16%, rgba(50, 121, 249, .34), transparent 34%),
    linear-gradient(135deg, var(--blue), #164cc9 54%, var(--grey-1200));
  box-shadow:
    0 34px 100px -58px rgba(50, 121, 249, .9),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.pack-nav-final-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, .6), transparent 72%);
}

.pack-nav-final-heading,
.pack-nav-final-copy,
.pack-nav-final-callout .btn {
  position: relative;
  z-index: 1;
}

.pack-nav-final-heading {
  max-width: 860px;
  margin: 0;
  color: white;
  font-size: clamp(2rem, 3.5vw, 4.15rem);
  font-weight: 460;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
}

.pack-nav-final-copy {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.42vw, 1.36rem);
  line-height: 1.48;
  text-align: center;
}

.pack-nav-final-copy span {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #8fd8ff 48%, #68f0d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 720;
}

.pack-nav-final-copy strong {
  color: #8fd8ff;
  font-weight: 680;
}

.pack-nav-final-callout .btn,
.pack-nav-final-btn {
  min-height: 62px;
  padding: 0 36px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .74);
  background: linear-gradient(135deg, #ffffff, #c7f5ff 52%, #8fe7dc);
  color: #071f48;
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 760;
  box-shadow:
    0 28px 70px -34px rgba(0, 0, 0, .82),
    0 0 0 7px rgba(255, 255, 255, .08),
    inset 0 1px 0 rgba(255, 255, 255, .95);
}

.pack-nav-final-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 34px 82px -36px rgba(0, 0, 0, .9),
    0 0 0 8px rgba(255, 255, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.pack-nav-final-mockup {
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 36px 90px -54px rgba(7, 31, 72, .45);
}

.pack-nav-final .navigator-masonry-cta {
  margin-top: 0;
}

/* ---- Pack-Nav Transfer (Seq 4) ---- */
.pack-seq-transfer .pack-transfer-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.transfer-pack-cards {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.transfer-card {
  padding: .5rem 1rem;
  border: 1px solid var(--c-border, rgba(0, 0, 0, .12));
  border-radius: 8px;
  font-size: .8rem;
  background: var(--c-surface, #fff);
  transition: transform .9s ease, opacity .7s ease;
}

.pack-seq-transfer.active .transfer-card {
  animation: collapseCard 1.35s cubic-bezier(.22, .72, .24, 1) forwards;
}

.pack-seq-transfer.active .transfer-card:nth-child(1) {
  animation-delay: 0s;
}

.pack-seq-transfer.active .transfer-card:nth-child(2) {
  animation-delay: .2s;
}

.pack-seq-transfer.active .transfer-card:nth-child(3) {
  animation-delay: .4s;
}

.pack-seq-transfer.active .transfer-card:nth-child(4) {
  animation-delay: .6s;
}

.pack-seq-transfer.active .transfer-card:nth-child(5) {
  animation-delay: .8s;
}

@keyframes collapseCard {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  55% {
    transform: translateX(78px) scale(.96);
    opacity: .9;
  }

  100% {
    transform: translateX(132px) scale(.82);
    opacity: 0;
  }
}

.transfer-arrow {
  font-size: 2rem;
  opacity: .4;
}

.transfer-navigator-icon {
  padding: 1.25rem 2rem;
  border-radius: 14px;
  border: 1.5px solid var(--blue-300, #93c5fd);
  background: var(--blue-50, #eff6ff);
  opacity: 0;
  transition: opacity .75s ease 1.15s;
}

.pack-seq-transfer.active .transfer-navigator-icon {
  opacity: 1;
}

.transfer-nav-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue-700, #1d4ed8);
}

/* ============================================
   06 SEGMENTS VIEWPORT ROW
   ============================================ */
.segments-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .58) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 78, 130, .055) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(42, 126, 255, .11), transparent 34%),
    radial-gradient(circle at 86% 32%, rgba(13, 157, 151, .10), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #edf8f6 50%, #f7fbff 100%);
  background-size: auto, 96px 96px, auto, auto, auto;
}

.segments-section>* {
  position: relative;
  z-index: 1;
}

.segments-section .section-head {
  width: min(100%, 1120px);
  max-width: 1120px;
  margin-inline: 0;
  text-align: left;
  align-items: flex-start;
}

.segments-section .section-head h2 {
  max-width: 1040px;
  margin-inline: 0;
}

.segments-section .section-head.centered {
  text-align: left;
  align-items: flex-start;
  margin-inline: 0;
}

.segments-viewport-row {
  width: min(calc(100% - (var(--page, 24px) * 2)), var(--max, 1720px));
  margin: clamp(34px, 4vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  padding: 0;
  overflow: visible;
}

.segments-viewport-row::-webkit-scrollbar {
  display: none;
}

.segment-vp-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(7, 31, 72, .12);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 28px 76px -58px rgba(7, 31, 72, .42), inset 0 1px 0 rgba(255, 255, 255, .88);
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 1.7vw, 26px);
  backdrop-filter: blur(14px);
}

.segment-vp-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
}

.segment-vp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.segment-vp-card:hover .segment-vp-img img {
  transform: scale(1.04);
}

.segment-vp-body {
  padding: clamp(20px, 2vw, 26px) 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.segment-vp-eye {
  position: absolute;
  top: clamp(26px, 2.2vw, 34px);
  right: clamp(26px, 2.2vw, 34px);
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 60px);
  padding: .32rem .56rem;
  border: 1px solid rgba(50, 121, 249, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px -24px rgba(7, 31, 72, .42);
  color: #0b7898;
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .065em;
  text-transform: uppercase;
  opacity: 1;
  backdrop-filter: blur(12px);
}

.segment-vp-body h3 {
  font-size: clamp(1.32rem, 1.45vw, 1.72rem);
  line-height: 1.12;
  font-weight: 720;
  letter-spacing: 0;
  color: #071f48;
  margin: 0;
}

.segment-vp-body p {
  font-size: clamp(.95rem, .95vw, 1.05rem);
  line-height: 1.58;
  color: #647084;
  opacity: 1;
  margin: 0;
}

.segments-cta-wrap {
  text-align: center;
  padding: clamp(38px, 4vw, 64px) 0 clamp(50px, 5vw, 78px);
}

.segments-cta-wrap .btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .segments-viewport-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .segments-viewport-row {
    grid-template-columns: 1fr;
  }

  .segment-vp-card {
    border-radius: 20px;
  }

  .segment-vp-eye {
    top: 28px;
    right: 28px;
  }
}

/* ============================================
   07 PROCESS TIMELINE
   ============================================ */
.process-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-top: clamp(48px, 5.4vw, 92px);
  padding-bottom: clamp(46px, 5vw, 86px);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 16% 16%, rgba(50, 121, 249, .22), transparent 34%),
    radial-gradient(circle at 86% 24%, rgba(15, 171, 160, .14), transparent 38%),
    linear-gradient(180deg, #101217 0%, #111827 52%, #0b1020 100%);
  background-size: 96px 96px, 96px 96px, auto, auto, auto;
  color: rgba(255, 255, 255, .92);
}

.process-section .eyebrow {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .72);
}

.process-section .process-sticky h2 {
  color: #fff;
}

.process-section .process-sticky .accent-gradient {
  background: linear-gradient(94deg, #69a5ff 0%, #21d6ca 52%, #d8fff9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.process-section .process-sticky>p:not(.eyebrow) {
  color: rgba(255, 255, 255, .68);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(42px, 5vw, 78px);
  align-items: start;
}

@media (max-width: 768px) {
  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-sticky {
    position: static !important;
  }
}

.process-sticky {
  position: sticky;
  top: calc(var(--df-nav-height, 64px) + 42px);
}

.process-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 3.5rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: rgba(255, 255, 255, .13);
}

.process-timeline-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: .85rem;
  padding-bottom: 1rem;
  align-items: start;
}

.process-day {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding-top: .2rem;
  color: rgba(255, 255, 255, .55);
  text-align: right;
  padding-right: 1rem;
  position: relative;
  z-index: 1;
}

.process-day::after {
  content: '';
  position: absolute;
  right: -.3rem;
  top: .45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .32);
  border: 2px solid #111827;
}

.process-day.highlight {
  color: #bfefff;
}

.process-day.highlight::after {
  background: linear-gradient(135deg, #3279f9 0%, #11b8aa 100%);
  box-shadow: 0 0 0 5px rgba(50, 121, 249, .16);
}

.process-day.after {
  color: rgba(255, 255, 255, .76);
}

.process-day.after::after {
  background: #bfefff;
}

.process-timeline-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: clamp(18px, 1.65vw, 24px);
  background:
    radial-gradient(circle at 92% 12%, rgba(50, 121, 249, .15), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 26px 70px -52px rgba(0, 0, 0, .8);
  color: rgba(255, 255, 255, .86);
}

.process-timeline-card::after {
  content: "";
  position: absolute;
  right: clamp(-70px, -5vw, -34px);
  bottom: clamp(-70px, -5vw, -36px);
  width: clamp(150px, 14vw, 260px);
  aspect-ratio: 1;
  border-radius: 34px;
  border: 1px solid rgba(50, 121, 249, .18);
  background:
    repeating-linear-gradient(-18deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(50, 121, 249, .12), rgba(17, 184, 170, .05));
  opacity: .45;
  transform: rotate(14deg);
  pointer-events: none;
}

.process-timeline-card.highlight {
  border-color: rgba(50, 121, 249, .72);
  background:
    radial-gradient(circle at 88% 14%, rgba(17, 184, 170, .18), transparent 30%),
    linear-gradient(145deg, rgba(50, 121, 249, .22), rgba(255, 255, 255, .045));
}

.process-timeline-card.after {
  border-style: dashed;
  opacity: .9;
}

.process-timeline-card h3 {
  margin: 0 0 clamp(10px, 1vw, 14px);
  color: #fff;
  font-size: clamp(1.18rem, 1.28vw, 1.48rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.process-sub {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(190, 222, 255, .72);
  opacity: 1;
  margin: 0 0 clamp(10px, 1vw, 14px);
}

.process-timeline-card p:not(.process-sub) {
  font-size: .88rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, .7);
  opacity: 1;
  margin: 0;
}

.process-after {
  padding-top: 1.5rem;
  border-top: 1px dashed var(--c-border, rgba(0, 0, 0, .12));
  margin-top: .5rem;
}

.process-cta-wrap {
  text-align: center;
  padding: clamp(24px, 3vw, 42px) 0 clamp(42px, 5vw, 74px);
}

.process-cta-wrap .btn:hover {
  transform: translateY(-2px);
}

/* ============================================
   08 MARKET COMPARISON TABLE V2
   ============================================ */
.comparison-table-v2 {
  border: 1px solid var(--c-border, rgba(0, 0, 0, .1));
  border-radius: 14px;
  overflow: hidden;
  margin: 2rem 0;
}

.comparison-table-v2 [role="row"] {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--c-border, rgba(0, 0, 0, .07));
}

.comparison-table-v2 [role="row"]:last-child {
  border-bottom: none;
}

.comparison-head {
  background: var(--c-surface-alt, #f5f5f3);
}

.comparison-table-v2 [role="columnheader"],
.comparison-table-v2 [role="cell"] {
  padding: .7rem 1rem;
  font-size: .875rem;
  display: flex;
  align-items: center;
}

.comparison-table-v2 [role="columnheader"] {
  font-weight: 600;
  font-size: .8rem;
}

.comparison-table-v2 .col-df {
  background: var(--c-accent-soft, #f0f4ff);
  color: var(--c-accent, #4f8ef7);
  font-weight: 600;
}

.comparison-table-v2 .col-df.check {
  font-size: 1rem;
}

.comparison-cta-wrap {
  text-align: center;
  margin: 1.5rem 0 2rem;
}

/* Pricing Rationale — Herleitung */
.pricing-rationale {
  max-width: 720px;
  margin: clamp(28px, 3vw, 40px) auto clamp(14px, 1.6vw, 20px);
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.6vw, 34px);
  border: 1px solid rgba(50, 121, 249, .18);
  border-left: 3px solid #3279f9;
  border-radius: 0 16px 16px 0;
  background: rgba(50, 121, 249, .05);
  color: #071f48;
  font-size: clamp(1rem, 1.06vw, 1.14rem);
  line-height: 1.6;
}

.pricing-rationale strong {
  color: #0f3068;
}

/* ============================================
   PACKAGE COMPARE WRAP
   ============================================ */
.package-compare-wrap {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border, rgba(0, 0, 0, .1));
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 600px) {
  .pack-scroll-outer {
    height: 800vh;
  }

  .pack-nav-sticky-shell {
    padding-top: 16px;
    padding-bottom: 0;
  }

  .pack-nav-section .section-head h2 {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
  }

  .pack-nav-section .section-head p:not(.eyebrow) {
    font-size: .9rem;
    line-height: 1.42;
  }

  .pack-nav-section .pack-sticky-canvas {
    display: flex;
    height: auto;
    min-height: 0;
    max-width: 700px;
    overflow: visible;
  }

  .pack-nav-section .pack-sticky-canvas[data-seq="8"] {
    height: 100%;
    justify-content: center;
  }

  .pack-nav-try {
    left: 4px;
    right: auto;
    top: -78px;
    width: 132px;
    height: 98px;
    transform: rotate(-5deg);
  }

  .pack-nav-section .pack-sticky-canvas:is([data-seq="5"], [data-seq="6"], [data-seq="7"]) .pack-callouts {
    position: relative;
    inset: auto;
    width: min(100%, 520px);
    margin: 12px auto 0;
  }

  .pack-nav-section .pack-sticky-canvas:is([data-seq="5"], [data-seq="6"], [data-seq="7"]) {
    grid-template-areas:
      "display"
      "callouts";
  }

  .pack-nav-final-callout {
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 22px;
    padding: 28px 22px;
  }

  .pack-nav-final-heading {
    font-size: clamp(1.8rem, 8.8vw, 2.55rem);
    line-height: 1.04;
    text-align: left;
  }

  .pack-nav-final-copy {
    font-size: 1.02rem;
    text-align: left;
  }

  .pack-nav-final-btn {
    min-height: 56px;
    padding: 0 28px;
  }

  .pack-activation {
    flex-direction: column;
  }

  .pack-flow-connector {
    flex-direction: row;
  }

  .comparison-table-v2 [role="row"] {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .comparison-table-v2 [role="columnheader"],
  .comparison-table-v2 [role="cell"] {
    padding: .5rem .6rem;
    font-size: .75rem;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 2.5rem;
  }

  .process-timeline-item {
    grid-template-columns: 3.5rem 1fr;
  }
}

/* ============================================
   CONTENT-PACK BRIDGE
   ============================================ */
.pack-bridge {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 580px;
  margin: 0 auto 2rem;
  opacity: .75;
  line-height: 1.6;
}

/* ============================================
   KI-AUTOMATISIERUNG — dunkles 2-Spalten-Layout
   ============================================ */
.ki-automation-section {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 5vw, 72px) 0;
  background:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px),
    radial-gradient(circle at 14% 22%, rgba(50, 121, 249, .20), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(12, 179, 170, .13), transparent 36%),
    linear-gradient(180deg, #071427 0%, #050f1e 52%, #03090f 100%);
  background-size: 96px 96px, 96px 96px, auto, auto, auto;
  color: rgba(255, 255, 255, .88);
  overflow: hidden;
}

/* Zwei-Spalten-Grid */
.ki-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

/* Linke Spalte: Text */
.ki-left {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 28px);
}

.ki-left h2 {
  color: #fff;
  max-width: 600px;
}

.ki-left h2 .accent-gradient {
  color: transparent;
  background: linear-gradient(96deg, #65a8ff 0%, #2fd0c7 58%, #d7f7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.ki-left p:not(.eyebrow):not(.ki-note) {
  color: rgba(255, 255, 255, .68);
  font-size: clamp(.98rem, 1.05vw, 1.14rem);
  line-height: 1.62;
  max-width: 600px;
}

.ki-note {
  font-size: .88rem;
  color: rgba(255, 255, 255, .42);
  font-style: italic;
  line-height: 1.56;
  max-width: 440px;
  margin: 0;
}

.ki-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ki-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.48;
}

.ki-checklist li::before {
  content: "✓";
  flex-shrink: 0;
  margin-top: .05em;
  color: #69d5b8;
  font-size: .78rem;
  font-weight: 700;
}

.ki-cta {
  margin-top: clamp(4px, 1vw, 10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.ki-trust-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .58);
  letter-spacing: .04em;
}

.ki-trust-check {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(105, 213, 184, .18);
  color: #69d5b8;
  font-size: .65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Rechte Spalte: Cards */
.ki-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ki-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  cursor: default;
  transition:
    border-color .38s ease,
    background .38s ease,
    transform .38s cubic-bezier(.22, .61, .36, 1),
    box-shadow .38s ease,
    opacity .38s ease;
  opacity: .5;
  transform: scale(.985);
}

.ki-card.active {
  border-color: rgba(50, 121, 249, .38);
  background:
    radial-gradient(circle at 96% 8%, rgba(50, 121, 249, .18), transparent 34%),
    linear-gradient(135deg, rgba(50, 121, 249, .14) 0%, rgba(11, 141, 167, .08) 100%);
  box-shadow:
    0 22px 62px -36px rgba(50, 121, 249, .72),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  opacity: 1;
  transform: scale(1);
}

.ki-card {
  position: relative;
}

.ki-card.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3279f9;
  box-shadow: 0 0 0 0 rgba(50,121,249,.6);
  animation: kiPulse 1.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes kiPulse {
  0%   { box-shadow: 0 0 0 0   rgba(50,121,249,.65); }
  65%  { box-shadow: 0 0 0 8px rgba(50,121,249,0);   }
  100% { box-shadow: 0 0 0 0   rgba(50,121,249,0);   }
}

/* Icon */
.ki-card-icon {
  flex-shrink: 0;
  width: clamp(38px, 4vh, 46px);
  height: clamp(38px, 4vh, 46px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(127, 176, 255, .12);
  color: #7fb0ff;
  font-size: clamp(16px, 1.8vh, 20px);
  font-style: normal;
  transition: background .38s ease, color .38s ease;
}

.ki-card.active .ki-card-icon {
  background: rgba(127, 176, 255, .22);
  color: #a8d0ff;
}

/* Card Body */
.ki-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ki-card-body strong {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.94rem, 1vw, 1.06rem);
  font-weight: 640;
  line-height: 1.18;
  transition: color .38s ease;
}

.ki-card.active .ki-card-body strong {
  color: #fff;
}

.ki-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, .38);
  font-size: clamp(.875rem, .9vw, .96rem);
  line-height: 1.5;
  transition: color .38s ease;
}

.ki-card.active .ki-card-body p {
  color: rgba(255, 255, 255, .62);
}

/* Responsive */
@media (max-width: 900px) {
  .ki-layout {
    grid-template-columns: 1fr;
  }

  .ki-left h2,
  .ki-left p:not(.eyebrow):not(.ki-note),
  .ki-note {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .ki-automation-section {
    padding: clamp(56px, 7vw, 80px) 0;
  }
}

/* ============================================
   NAVIGATOR SECTION (statische Variante)
   Ersetzt pack-nav-section in index.html.
   Scroll-Stage → navigator-legacy.html
   ============================================ */
.navigator-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(80px, 9vw, 130px) 0 clamp(90px, 10vw, 144px);
  background:
    radial-gradient(circle at 74% 14%, rgba(50, 121, 249, .09), transparent 30%),
    radial-gradient(circle at 10% 82%, rgba(11, 141, 167, .08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf8f6 52%, #f7fbff 100%);
}

.navigator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(5, 50, 103, .046) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 118, 139, .04) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: radial-gradient(ellipse at 50% 18%, #000 18%, rgba(0, 0, 0, .7) 48%, transparent 86%);
  opacity: .65;
}

.navigator-section .eyebrow {
  border-color: rgba(14, 122, 151, .18);
  background: rgba(255, 255, 255, .74);
  color: #0a7891;
  box-shadow: 0 14px 32px -28px rgba(0, 126, 164, .5);
}

.navigator-section .section-head h2 {
  max-width: 900px;
}

.navigator-section .accent-gradient {
  background: linear-gradient(96deg, #3279f9 0%, #0b8da7 45%, #103f82 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.navigator-section .section-head p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
}

/* Erklärtext */
.navigator-explain {
  max-width: 64ch;
  margin: clamp(28px, 3.2vw, 42px) auto 0;
  color: #375b75;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.64;
  text-align: center;
}

/* Drei-Schritt-Formel */
.navigator-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  margin: clamp(48px, 5.5vw, 78px) auto 0;
  max-width: 1040px;
}

.navigator-step {
  position: relative;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(7, 31, 72, .10);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(240, 248, 255, .80)),
    rgba(255, 255, 255, .80);
  box-shadow:
    0 24px 68px -52px rgba(7, 31, 72, .34),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
  backdrop-filter: blur(12px);
}

.navigator-step:hover {
  border-color: rgba(50, 121, 249, .22);
  box-shadow:
    0 30px 78px -48px rgba(50, 121, 249, .32),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.navigator-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  margin-bottom: clamp(16px, 1.8vw, 24px);
  border-radius: 999px;
  background: rgba(50, 121, 249, .10);
  color: #2f73e9;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
}

.navigator-step-title {
  margin: 0 0 .72rem;
  color: #071f48;
  font-size: clamp(1.08rem, 1.18vw, 1.4rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: 0;
}

.navigator-step p {
  margin: 0;
  color: #647084;
  font-size: clamp(.9rem, .88vw, 1rem);
  line-height: 1.58;
}

.navigator-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(50,121,249,.38);
  font-size: 1.6rem;
  font-weight: 300;
  flex-shrink: 0;
  user-select: none;
  line-height: 1;
}

/* Beispiel-Karte */
.navigator-example {
  margin: clamp(40px, 4.8vw, 64px) auto 0;
  max-width: 1040px;
}

.navigator-example-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 20px);
  flex-wrap: wrap;
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3.5vw, 52px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(50, 121, 249, .32), transparent 34%),
    linear-gradient(135deg, #071f48 0%, #0f3068 52%, #071f48 100%);
  box-shadow:
    0 34px 100px -58px rgba(7, 31, 72, .68),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.navigator-example-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .038) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, .52), transparent 72%);
}

.navigator-example-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 130px;
  max-width: 190px;
}

.navigator-example-label {
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .46);
}

.navigator-example-value {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(.86rem, .9vw, 1rem);
  font-weight: 520;
  line-height: 1.4;
}

.navigator-example-arrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .28);
  font-size: 1.4rem;
  flex-shrink: 0;
  user-select: none;
  line-height: 1;
}

.navigator-example-btn {
  display: inline-flex;
  align-items: center;
  padding: .3rem .7rem;
  border-radius: 20px;
  border: 1px solid rgba(11, 141, 167, .66);
  background: linear-gradient(135deg, rgba(11, 141, 167, .26), rgba(50, 121, 249, .16));
  color: #9ff7ef;
  font-size: .82rem;
  font-weight: 700;
  width: max-content;
}

/* Vertrauens-Satz */
.navigator-trust {
  max-width: 680px;
  margin: clamp(36px, 4vw, 52px) auto 0;
  color: #48627a;
  font-size: clamp(.96rem, 1vw, 1.08rem);
  line-height: 1.64;
  text-align: center;
  font-style: italic;
  opacity: .88;
}

/* CTAs */
.navigator-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(34px, 4vw, 52px);
}


/* Responsive */
@media (max-width: 860px) {
  .navigator-steps {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .navigator-step-connector {
    display: none;
  }

  .navigator-example-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .navigator-example-step {
    max-width: 100%;
    width: 100%;
  }

  .navigator-example-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .navigator-steps {
    max-width: 100%;
  }

  .navigator-example-inner {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .navigator-cta-group {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   GRÜNDER-BLOCK — einfacher Zweispalter
   ============================================ */
.founder-section {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(50, 121, 249, .038), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid rgba(50, 121, 249, .10);
  border-bottom: 1px solid rgba(7, 31, 72, .06);
}

.founder-layout {
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}

.founder-copy {
  --founder-line-offset: clamp(20px, 2.4vw, 32px);
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.8vw, 48px) clamp(24px, 4.6vw, 64px);
}

.founder-copy .section-head {
  margin-bottom: clamp(24px, 2.4vw, 34px);
}

.founder-body {
  position: relative;
  max-width: 68ch;
}

.founder-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3279f9 0%, #0b8da7 100%);
}

.founder-text {
  padding-left: var(--founder-line-offset);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.founder-section .section-head h2 {
  color: #071f48;
}

.founder-portrait {
  position: relative;
  flex: 0 0 clamp(360px, 42vw, 620px);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.founder-portrait img {
  display: block;
  width: min(122%, 700px);
  height: clamp(680px, 62vw, 720px);
  max-height: none;
  max-width: none;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 24px 42px rgba(7, 31, 72, .18));
  transform: translateX(calc(clamp(40px, 5vw, 76px) * -1));
}

.founder-person-pill {
  position: absolute;
  right: clamp(200px, 4vw, 250px);
  bottom: clamp(22px, 3vw, 48px);
  z-index: 2;
  display: grid;
  gap: 2px;
  width: max-content;
  max-width: min(260px, 78vw);
  padding: 10px 16px;
  border: 1px solid rgba(50, 121, 249, .20);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow:
    0 18px 40px -24px rgba(7, 31, 72, .34),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
}

.founder-person-pill strong,
.founder-person-pill span {
  display: block;
  line-height: 1.15;
}

.founder-person-pill strong {
  color: #071f48;
  font-size: 1rem;
  font-weight: 760;
}

.founder-person-pill span {
  color: #48627a;
  font-size: .78rem;
  font-weight: 560;
}

/* ============================================
   PRICE DISPLAY — "Preis im Gespräch"
   ============================================ */
.price {
  color: #071f48;
  font-size: clamp(1.05rem, 1.18vw, 1.28rem);
  font-weight: 640;
  letter-spacing: -.01em;
}

/* ============================================
   TYPOGRAFIE-REFINEMENTS
   ============================================ */


/* FAQ: klarer lesbare Items */
.faq-list details summary {
  letter-spacing: -.012em;
}

/* Pricing Card: Paket-Badge lesbarer */
.card-badge {
  letter-spacing: .02em;
}

/* Founder Signatur: kein Placeholder-Look */
.founder-sig {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(50, 121, 249, .18);
  border-radius: 999px;
  background: rgba(50, 121, 249, .05);
  color: #0a6080 !important;
  font-size: .82rem !important;
  font-weight: 560 !important;
  font-style: normal !important;
  opacity: 1 !important;
  margin-top: 1rem;
}

.founder-text p {
  font-size: 1rem;
  line-height: 1.65;
  opacity: .85;
}

.founder-statement {
  width: min(100%, 51ch);
  max-width: 100%;
  margin: calc(.9rem + 16px) 0 0;
  padding: 0 0 0 var(--founder-line-offset);
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  color: #071f48;
  font-size: 20px !important;
  font-weight: 430;
  line-height: 1.68;
  opacity: .94;
}

.founder-statement strong {
  font-weight: 780;
  color: #071f48;
}

@media (max-width: 560px) {
  .founder-statement {
    font-size: 18px !important;
  }
}

@media (max-width: 860px) {
  .founder-section {
    padding: 0 !important;
  }

  .founder-layout {
    flex-direction: column;
    gap: 0;
  }

  .founder-copy {
    padding: clamp(36px, 8vw, 54px) clamp(18px, 6vw, 28px) 0;
  }

  .founder-copy .section-head {
    margin-bottom: 28px;
  }

  .founder-portrait {
    flex-basis: auto;
  }

  .founder-portrait img {
    width: 108%;
    height: clamp(420px, 110vw, 560px);
    max-width: min(100vw, 520px);
    transform: translateX(calc(clamp(10px, 4vw, 20px) * -1));
  }

  .founder-person-pill {
    right: clamp(16px, 5vw, 24px);
    bottom: clamp(22px, 6vw, 34px);
    padding: 9px 14px;
  }
}

.founder-sig {
  font-weight: 500;
  opacity: .6 !important;
  font-size: .9rem !important;
  margin-top: .5rem;
}

/* ============================================
   NAVIGATOR SECTION — Korrekturen
   ============================================ */

/* Hintergrund: klar von Segments trennen */
.navigator-section {
  background:
    radial-gradient(circle at 74% 14%, rgba(50, 121, 249, .11), transparent 30%),
    radial-gradient(circle at 10% 82%, rgba(11, 141, 167, .07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f0f5ff 52%, #e5efff 100%);
}

/* Spacing: Lead-Text → Steps enger */
.navigator-explain {
  margin-top: clamp(14px, 1.6vw, 22px);
}

.navigator-steps {
  align-items: stretch;
  max-width: 1120px;
  margin-top: clamp(28px, 3.2vw, 44px);
}

/* Cards: gleiche Höhe, breiter, Hover-Scale */
.navigator-step {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  transform-origin: center center;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .28s var(--ease);
}

.navigator-step:hover {
  transform: scale(1.028);
  border-color: rgba(50, 121, 249, .28);
  box-shadow:
    0 36px 86px -48px rgba(50, 121, 249, .36),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

/* Beispiel: größere Typo */
.navigator-example-label {
  font-size: .72rem;
  letter-spacing: .1em;
}

.navigator-example-value {
  font-size: clamp(1rem, 1.06vw, 1.18rem);
  font-weight: 560;
  line-height: 1.38;
}

/* ============================================
   BUTTON UNIFICATION — nav-cta Stil
   ============================================ */

/* Alle btn-primary: blauer Gradient wie nav-cta */
.btn-primary {
  background: linear-gradient(135deg, #3279f9 0%, #164cc9 54%, #071f48 100%);
  background-size: 140% 140%;
  background-position: 0% 50%;
  border: 1px solid transparent;
  color: white;
  box-shadow: 0 16px 36px -26px rgba(50, 121, 249, .72), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3279f9 0%, #164cc9 54%, #071f48 100%);
  background-position: 100% 50%;
  box-shadow: 0 20px 44px -26px rgba(50, 121, 249, .88), inset 0 1px 0 rgba(255, 255, 255, .28);
  filter: saturate(1.06) brightness(1.04);
}

/* Alle btn-secondary: outlined, selbe Farbfamilie */
.btn-secondary {
  background: rgba(255, 255, 255, .72);
  border: 1.5px solid rgba(50, 121, 249, .32);
  color: #071f48;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(50, 121, 249, .56);
  color: #071f48;
  box-shadow: 0 10px 28px -18px rgba(50, 121, 249, .22), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Ausnahme: CTA-Karte (dunkler Hintergrund) */
.cta-card .btn-primary {
  background: linear-gradient(135deg, #ffffff, #c7f5ff 52%, #8fe7dc);
  color: #071f48;
  box-shadow: 0 28px 70px -34px rgba(0, 0, 0, .82), 0 0 0 7px rgba(255, 255, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .95);
}

.cta-card .btn-secondary {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
  color: white;
}

.cta-card .btn-secondary:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .42);
  color: white;
}

/* ============================================
   TABELLEN — visuell aufgewertet
   ============================================ */

/* Gemeinsamer Rahmen: max-width, Schatten, Branding */
.comparison-table,
.comparison-table-v2 {
  max-width: 1040px;
  margin-inline: auto;
  border: 1.5px solid rgba(50, 121, 249, .18);
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 0 0 6px rgba(50, 121, 249, .06),
    0 32px 80px -44px rgba(7, 31, 72, .28),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  overflow: hidden;
  overflow-x: auto;
}

/* Spaltenkopf */
.comparison-table [role="row"]:first-child,
.comparison-head {
  background: linear-gradient(135deg, rgba(50, 121, 249, .10) 0%, rgba(11, 141, 167, .07) 100%);
  border-bottom: 1.5px solid rgba(50, 121, 249, .14);
}

/* Zeilen */
.comparison-table [role="row"]+[role="row"] {
  border-top: 1px solid rgba(50, 121, 249, .08);
}

.comparison-table-v2 [role="row"] {
  border-bottom: 1px solid rgba(50, 121, 249, .08);
}

.comparison-table-v2 [role="row"]:last-child {
  border-bottom: none;
}

/* Zellen */
.comparison-table span,
.comparison-table strong {
  border-right: 1px solid rgba(50, 121, 249, .08);
  color: #375b75;
}

.comparison-table [role="columnheader"] {
  background: transparent;
  color: #071f48;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .11em;
}

.comparison-table strong {
  background: rgba(50, 121, 249, .07);
  color: #071f48;
  font-weight: 680;
}

/* Vergleich (market section) */
.comparison-table-v2 [role="columnheader"],
.comparison-table-v2 [role="cell"] {
  color: #375b75;
  border-right: 1px solid rgba(50, 121, 249, .08);
}

.comparison-table-v2 [role="columnheader"]:last-child,
.comparison-table-v2 [role="cell"]:last-child {
  border-right: none;
}

.comparison-table-v2 .col-df {
  background: rgba(50, 121, 249, .08);
  color: #071f48;
}

/* ============================================
   PAKETVERGLEICH — Eyebrow/H3 Abstand
   ============================================ */

.package-compare-wrap .section-head h3 {
  margin-top: clamp(16px, 2vw, 26px);
}

.section-head h3.type-xxl {
  margin-top: clamp(12px, 1.6vw, 20px);
}

/* ============================================
   SECTION PADDING — global reduziert
   ============================================ */
.section:not(.hero):not(.hero-frameblox) {
  padding-top: clamp(48px, 6vw, 80px) !important;
  padding-bottom: clamp(48px, 6vw, 80px) !important;
}

.section.founder-section:not(.hero):not(.hero-frameblox) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Hero: kleine Viewports voll nutzen, sehr hohe Viewports sinnvoll kappen. */
.hero-frameblox {
  --hero-viewport-height: calc(100svh - var(--df-nav-height, 64px));
  height: min(var(--hero-viewport-height), 900px) !important;
  min-height: min(var(--hero-viewport-height), 900px) !important;
  max-height: 900px !important;
}

@media (max-height: 860px), (max-width: 760px) {
  .hero-frameblox {
    height: var(--hero-viewport-height) !important;
    min-height: var(--hero-viewport-height) !important;
    max-height: var(--hero-viewport-height) !important;
  }
}

/* Early Bird Badge: im Flex-Modus verstecken */
.price-block.is-flex .early-bird-badge {
  display: none;
}

/* ============================================
   MARKET H2 — enger umbrechen
   ============================================ */
.market-h2 {
  max-width: 22ch;
  margin-inline: auto;
}

@media (min-width: 1000px) {
  .market-h2 {
    max-width: none;
  }

  .market-heading-line {
    white-space: nowrap;
  }
}

/* ============================================
   GRÜNDER SECTION — distinkte Background
   ============================================ */
.founder-section {
  background:
    linear-gradient(to right, rgba(50,121,249,.038), transparent 55%),
    linear-gradient(180deg, #f0f6ff 0%, #e8f2fb 100%) !important;
  border-top: 1px solid rgba(50,121,249,.10) !important;
  border-bottom: 1px solid rgba(50,121,249,.08) !important;
}

.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(50,121,249,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(50,121,249,.04) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: .6;
  pointer-events: none;
}

/* ============================================
   PRICING ACCORDION — zahnärzte.online-Farben, heller
   ============================================ */
.pricing-accordion {
  background: #f8fbff !important;
  border: 1.5px solid transparent !important;
  background-clip: padding-box !important;
  background-image:
    linear-gradient(#f8fbff, #f8fbff),
    linear-gradient(135deg, #3279f9 0%, #0b8da7 50%, #071f48 100%) !important;
  background-origin: border-box !important;
  border-radius: 20px !important;
  overflow: visible !important;
}

/* Override the ::before approach */
.pricing-accordion::before { display: none !important; }

.pricing-accordion-head {
  background: transparent !important;
  border-radius: 18px !important;
}

.pricing-accordion.is-open .pricing-accordion-head {
  background: linear-gradient(135deg, rgba(50,121,249,.18) 0%, rgba(11,141,167,.12) 100%) !important;
  border-radius: 18px 18px 0 0 !important;
  border-bottom: 1px solid rgba(50,121,249,.14) !important;
}

.pricing-accordion.is-open .pricing-accordion-title { color: #071f48 !important; }
.pricing-accordion.is-open .pricing-accordion-sub   { color: #48627a !important; }

.pricing-accordion.is-open .pricing-accordion-icon {
  background: linear-gradient(135deg, #3279f9, #0b8da7) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px -8px rgba(50,121,249,.5);
}

.pricing-accordion.is-open .pricing-accordion-arrow {
  background: linear-gradient(135deg, #3279f9, #0b8da7) !important;
  color: #fff !important;
}

.pricing-accordion-icon {
  background: rgba(50,121,249,.12) !important;
  color: #2862c9 !important;
}

.pricing-accordion-arrow {
  background: rgba(50,121,249,.10) !important;
  color: #2862c9 !important;
}

.pricing-accordion-title { color: #071f48 !important; }
.pricing-accordion-sub   { color: #48627a !important; }

/* ============================================
   FAQ — padding-bottom für CTA-Overlap
   ============================================ */
main {
  --final-cta-overlap: clamp(140px, 10vw, 190px);
  --final-cta-clearance: clamp(110px, 10vw, 170px);
}

@media (max-width: 640px) {
  main {
    --final-cta-overlap: clamp(205px, 55vw, 245px);
    --final-cta-clearance: clamp(90px, 26vw, 120px);
  }
}

#faq.section.faq {
  /* Landezone = sichtbare Karten-Protrusion + Sicherheitsabstand. */
  padding-bottom: calc(var(--final-cta-overlap) + var(--final-cta-clearance)) !important;
  position: relative;
  z-index: 1;
}

.faq .section-head {
  text-align: center !important;
  align-items: center !important;
}

/* ============================================
   FINAL CTA — eigene Sektion, distinkt
   ============================================ */
#cta.section.final-cta {
  margin-top: 0 !important;
  padding-top: clamp(48px, 6vw, 80px) !important;
  padding-bottom: clamp(48px, 6vw, 80px) !important;
  background:
    radial-gradient(circle at 16% 28%, rgba(50,121,249,.18), transparent 38%),
    linear-gradient(180deg, #e8f2ff 0%, #dceeff 60%, #d0e8ff 100%) !important;
  border-top: none !important;
  position: relative;
  z-index: 2;
}

/* CTA-Card: Nur die Karte ragt nach oben in die FAQ-Sektion. Der Container
   erzeugt einen eigenen BFC, damit der negative Margin nicht nach außen
   kollabiert und das CTA-Hintergrundband nicht mit nach oben zieht. */
.final-cta .cta-card {
  max-width: 100% !important;
  margin-inline: auto !important;
  margin-top: calc(var(--final-cta-overlap) * -1) !important;
  position: relative;
  z-index: 3;
}

/* Trust-Liste MIT Checkmarks, hell-blau, klein */
.cta-trust-list {
  list-style: none;
  padding: 0;
  margin: clamp(10px, 1.1vw, 14px) 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 10px;
}

.final-cta .cta-trust-list li {
  font-size: clamp(.56rem, .62vw, .68rem) !important;
  line-height: 1.05 !important;
  letter-spacing: 0;
  color: rgba(150,205,255,.78);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.final-cta .cta-trust-list li::before {
  content: "✓";
  font-size: .54rem;
  font-weight: 700;
  color: rgba(120,220,200,.9);
  flex-shrink: 0;
}

.cta-side-panel > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: .42rem .72rem;
  background: rgba(255, 255, 255, .07);
  color: rgba(220, 240, 255, .78) !important;
  font-size: .62rem !important;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .11em;
}

.cta-side-panel ul {
  gap: 10px !important;
  margin-top: 20px !important;
}

.cta-side-panel li {
  line-height: 1.34 !important;
}

.cta-side-title {
  font-family: var(--font);
  font-size: clamp(1.28rem, 1.65vw, 1.72rem) !important;
  font-weight: 560;
  line-height: 1.14;
  color: white;
  margin: .9rem 0 0;
}

/* BASISPAKET CALLOUT — visuell stärker
   ============================================ */
.pricing-base-package {
  max-width: 580px !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(50,121,249,.18), transparent 40%),
    linear-gradient(135deg, #ddeeff 0%, #e8f4ff 60%, #d5edf9 100%) !important;
  border: 1.5px solid rgba(50,121,249,.3) !important;
  box-shadow: 0 14px 44px -20px rgba(50,121,249,.28), inset 0 1px 0 rgba(255,255,255,.9) !important;
}

.pricing-base-eyebrow { color: #1a4fa8 !important; }
.pricing-base-title   { color: #071f48 !important; }
.pricing-base-desc    { color: #2a4a6b !important; }

/* ============================================
   PRICING ACCORDION — dunkler, Gradient-Border
   ============================================ */
.pricing-accordion {
  border: none !important;
  background: #fff;
  box-shadow: none !important;
  position: relative;
  border-radius: 20px;
  overflow: visible !important;
}

.pricing-accordion-head {
  background: rgba(7,31,72,.06) !important;
  border-radius: 20px;
}

.pricing-accordion.is-open .pricing-accordion-head {
  background: linear-gradient(135deg, #071f48 0%, #0d2f5c 54%, #0a2545 100%) !important;
  border-radius: 20px 20px 0 0;
  border-bottom: none !important;
}

.pricing-accordion.is-open .pricing-accordion-title { color: #fff !important; }
.pricing-accordion.is-open .pricing-accordion-sub   { color: rgba(255,255,255,.62) !important; }
.pricing-accordion.is-open .pricing-accordion-icon  { background: rgba(255,255,255,.16) !important; color: #fff !important; }
.pricing-accordion.is-open .pricing-accordion-arrow { background: rgba(255,255,255,.18) !important; color: #fff !important; }

.pricing-accordion-title { font-size: clamp(1.05rem, 1.18vw, 1.3rem) !important; font-weight: 700 !important; }
.pricing-accordion-sub   { font-size: .88rem !important; }

.pricing-accordion-inner .comparison-table {
  background: #fff !important;
  border: 1px solid rgba(50,121,249,.15) !important;
  box-shadow: 0 8px 28px -16px rgba(7,31,72,.14) !important;
}

/* Gradient-Border via outline + background clip */
.pricing-accordion {
  border: 1.5px solid transparent !important;
  background-clip: padding-box;
  background-color: #fff;
}

.pricing-accordion::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 21px;
  background: linear-gradient(135deg, #3279f9, #0b8da7 50%, #071f48);
  z-index: -1;
}

/* ============================================
   FAQ — einspaltig, zentriert, mehr Padding
   ============================================ */
.faq-list {
  grid-template-columns: 1fr !important;
  max-width: 800px !important;
  margin-inline: auto !important;
}

#faq.section.faq {
  /* Maßgebliche FAQ-Regel (überschreibt die weiter oben). */
  padding-bottom: calc(var(--final-cta-overlap) + var(--final-cta-clearance)) !important;
  position: relative;
  z-index: 1;
}

/* ============================================
   FINAL CTA — dunkler, schmaler, FAQ-Overlap
   ============================================ */
#cta.section.final-cta {
  /* Eigene Sektion mit deutlich abgesetztem, blauem Hintergrund-Band
     (FAQ darüber ist near-white #f8f9fc, Footer darunter ist weiß). */
  background:
    radial-gradient(circle at 18% 18%, rgba(50,121,249,.18), transparent 44%),
    linear-gradient(180deg, #e3eefe 0%, #cadfff 55%, #b6d3ff 100%) !important;
  border-top: none !important;
  position: relative;
  z-index: 2;
  margin-top: 0 !important;
  /* overflow: visible überschreibt das geerbte .section { overflow: clip },
     sonst wird der per negativem Margin nach oben überstehende Teil der
     CTA-Karte abgeschnitten. */
  overflow: visible !important;
  /* Kein padding-top: das Band beginnt hinter der Karte, die Karte ragt
     nach oben in die FAQ-Sektion (deren großes padding-bottom dient als
     Landezone, sodass kein FAQ-Inhalt verdeckt wird). */
  padding-top: 0 !important;
  padding-bottom: clamp(64px, 8vw, 110px) !important;
}

.final-cta .container {
  display: flow-root;
  /* Breiter als zuvor (war 860px), aber nicht über die volle Fensterbreite:
     links/rechts bleibt der normale Seiten-Innenabstand erhalten. */
  max-width: min(1240px, calc(100vw - var(--page) * 2)) !important;
}

.cta-card {
  background: linear-gradient(135deg, #030d1e 0%, #071227 45%, #040c1c 100%) !important;
  box-shadow:
    0 60px 120px -40px rgba(3,9,30,.9),
    0 0 0 1px rgba(50,121,249,.22),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

/* ============================================
   FINAL CTA — Heading-Gradient auf dunklem Grund sichtbar
   (heller, kontrastreicher Verlauf statt blau→schwarz)
   ============================================ */
.final-cta .cta-card .accent-gradient {
  background: linear-gradient(95deg, #7cc4ff 0%, #cfeaff 52%, #ffffff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

/* ============================================
   FINAL CTA — Glowing Border + animierter Beam
   ============================================ */
@property --cta-beam-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.final-cta .cta-card {
  /* Eigener Stacking-Context: Inhalt liegt über dem Border-Ring */
  isolation: isolate;
}

/* Der Verlaufs-Ring mit umlaufendem Leucht-Beam */
.final-cta .cta-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;                   /* Border-Dicke */
  background: conic-gradient(
    from var(--cta-beam-angle),
    rgba(70,150,255,.30)  0deg,
    rgba(70,150,255,.30)  74deg,
    rgba(85,205,255,.92)  98deg,
    #ffffff               116deg,
    rgba(110,225,255,1)   134deg,
    rgba(70,150,255,.30)  160deg,
    rgba(70,150,255,.30)  360deg
  );
  /* Nur den Rand sichtbar lassen (Ring-Maske) */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  /* dezentes Leuchten, wandert mit dem helleren Beam mit */
  filter: drop-shadow(0 0 11px rgba(110,210,255,.88));
  animation: cta-border-beam 5.5s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Karten-Inhalt über den Ring heben */
.final-cta .cta-card > * {
  position: relative;
  z-index: 1;
}

@keyframes cta-border-beam {
  to { --cta-beam-angle: 360deg; }
}

.footer-offer-note {
  display: block;
  margin-top: .5rem;
  color: var(--grey-1000);
  font-weight: 700;
}

/* ============================================
   SCROLLSPY — aktiver Nav-Link
   ============================================ */
.nav-links a.is-active {
  color: var(--grey-1200);
  font-weight: 600;
}

.nav-links a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3279f9, #0b8da7);
}

/* ============================================
   PREFERS-REDUCED-MOTION — alle Animationen
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .service-track {
    animation: none !important;
  }

  .grid-bg {
    animation: none !important;
  }

  .problem-alt-shape {
    animation: none !important;
  }

  .system-item {
    animation: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .masonry-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-frameblox-mockup.reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ============================================
   #14 BORDER-RADIUS — 4 semantische Stufen
   pill=999px | control=16px | card=24px | feature=32px
   ============================================ */

/* Buttons/Badges/Pills bleiben 999px — bereits korrekt */

/* Standard-Cards auf einheitliche 24px */
.bento-card,
.segment-vp-card,
.price-card,
.navigator-step,
.process-timeline-card,
.ki-card,
.pack-nav-final-callout,
.pack-table,
.pricing-info-card {
  border-radius: 24px;
}

/* Control-Elemente auf 16px */
.pack-callout,
.masonry-card,
.comparison-table,
.comparison-table-v2,
.pricing-rationale,
.founder-sig {
  border-radius: 16px;
}

/* Feature-Kacheln (Bento groß, Gründer-Accent) auf 32px */
.bento-card:nth-child(1),
.cta-card {
  border-radius: 32px;
}

/* ============================================
   #15 WEIGHT-AUDIT — 5 systemische Stufen
   360 | 430 | 560 | 640 | 760
   ============================================ */

/* Karten-Titel → 560 */
.navigator-step-title,
.segment-vp-body h3,
.ki-card-body strong,
.process-timeline-card h3,
.pack-table-title,
.pack-row-name {
  font-weight: 560;
}

/* Labels & Eyebrows → 640 */
.bento-eyebrow,
.pack-table-badge,
.tier-label,
.process-day {
  font-weight: 640;
}

/* Body bleiben bei 430–480 (Token-Werte) */


/* ============================================
   #17 F-PATTERN — alle Section-Heads linksbündig
   Ausnahmen: Hero (zentral), Navigator (zentral),
   Pakete (zentral), Vergleich (zentral)
   ============================================ */

.status-quo-alt .section-head,
.status-quo .section-head,
.process-section .section-head,
.ki-automation-section .section-head,
.founder-section .section-head,
.faq .section-head {
  text-align: left;
  align-items: flex-start;
}

.status-quo-alt .section-head .eyebrow,
.status-quo .section-head .eyebrow,
.process-section .section-head .eyebrow {
  margin-inline: 0;
}

/* ============================================
   #18 MOBILE — Responsive-Fixes
   ============================================ */
@media (max-width: 768px) {
  /* Navigator Steps: Connector ausblenden bereits vorhanden */

  /* Comparison Tables: horizontal scrollbar */
  .comparison-table,
  .comparison-table-v2 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Pricing Grid: 1 Spalte */
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  /* Prozess: Stack */
  .process-layout {
    grid-template-columns: 1fr;
  }

  /* KI-Layout: Stack */
  .ki-layout {
    grid-template-columns: 1fr;
  }

  /* Segment Cards: 1 Spalte */
  .segments-viewport-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  /* Navigator Example: Stack */
  .navigator-example-inner {
    padding: 18px 16px;
  }

  /* Pricing Cards: mehr Padding */
  .price-card {
    padding: clamp(20px, 5vw, 28px);
  }

  /* Founder Text */
  .founder-text {
    max-width: 100%;
  }
}
}

/* ============================================
   PRICING — Basispaket & Tier-Struktur
   ============================================ */

.pricing-base-package {
  position: relative;
  max-width: 680px;
  margin: clamp(32px, 3.6vw, 48px) auto clamp(36px, 4vw, 52px);
  padding: clamp(20px, 2.2vw, 26px) clamp(24px, 2.8vw, 32px);
  border: 1.5px solid rgba(50,121,249,.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% 10%, rgba(50,121,249,.10), transparent 38%),
    linear-gradient(135deg, rgba(50,121,249,.07) 0%, rgba(11,141,167,.04) 100%);
  box-shadow: 0 12px 40px -24px rgba(50,121,249,.20), inset 0 1px 0 rgba(255,255,255,.9);
}

.pricing-base-eyebrow {
  margin: 0 0 8px;
  color: #2862c9;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pricing-base-title {
  margin: 0 0 .45rem;
  color: #071f48;
  font-size: clamp(1.05rem, 1.12vw, 1.28rem);
  font-weight: 680;
  line-height: 1.1;
}

.pricing-base-desc {
  margin: 0;
  color: #48627a;
  font-size: clamp(.9rem, .94vw, 1.02rem);
  line-height: 1.56;
  max-width: 820px;
}

/* Tier-Includes Label — eine einzige Zeile, kein Trennstrich */
.pricing-tier-includes {
  margin: 14px 0 8px;
  color: #071f48;
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 720;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Feature-Item: klickbar */
.feature-item {
  cursor: pointer;
}

.feature-item:hover .feature-item span {
  color: var(--blue);
}

/* ============================================
   PRICING — Feature-List & Tooltip Korrekturen
   ============================================ */

/* Checkmarks flush mit Card-Rand */
.price-card .feature-list {
  padding-left: 0;
}

/* Feature-Item Spans: Bricolage statt JetBrains (überschreibt .price-card span) */
.price-card .feature-item span {
  font-family: var(--font) !important;
  font-size: clamp(14px, .82vw, 15px) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--grey-1200) !important;
  line-height: 1.46 !important;
}

/* Feature-Item Strong: einfaches Blau statt Gradient */
.price-card .feature-item strong {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: var(--blue, #3279f9) !important;
  font-weight: 680 !important;
}

/* price-for + card-badge Mindesthöhe — Tier-Includes auf gleicher Linie */
.price-for {
  min-height: 110px;
}

.card-badge {
  min-height: 2.8em;
}

/* Tooltip-Panel: volle Breite (kein Links-Margin) */
.feature-tooltip-panel {
  margin-left: 0 !important;
}

/* Tooltip-Zeilen: Eyebrow über Text (kein Flex-Row) */
.tooltip-row {
  flex-direction: column;
  gap: 5px;
  padding: 10px 14px;
}

/* Eyebrow-Tags: oben, breit, klar lesbar */
.tooltip-tag {
  font-family: var(--font) !important;
  font-size: 11px !important;
  font-weight: 680 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  width: max-content;
  padding: 3px 8px !important;
  border-radius: 6px !important;
}

/* Tooltip-Text: Standard-Font */
.tooltip-row p {
  font-family: var(--font) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

/* Pricing-Note: Standard-Font, kleiner */
.pricing-note {
  font-family: var(--font) !important;
  font-size: 11.5px !important;
  color: var(--grey-700, #6b7280) !important;
  max-width: 900px;
  margin-inline: auto;
}

/* ============================================
   TABELLEN — Fettung reduzieren, Zellen kompakter
   ============================================ */

/* Alle Werte in Tabellen: Regular statt Bold */
.comparison-table strong,
.comparison-table-v2 [role="cell"] strong {
  font-weight: 430 !important;
  color: #071f48;
}

/* Spaltenköpfe: größer, deutlicher, Bricolage */
.comparison-table [role="columnheader"],
.comparison-table-v2 [role="columnheader"] {
  font-family: var(--font) !important;
  font-size: clamp(.88rem, .9vw, 1rem) !important;
  font-weight: 680 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #071f48 !important;
  padding: 14px 18px !important;
}

/* Zellenhöhe reduzieren */
.comparison-table span,
.comparison-table strong,
.comparison-table-v2 [role="cell"],
.comparison-table-v2 [role="columnheader"] {
  padding: 9px 16px !important;
  font-size: 13.5px !important;
  line-height: 1.4 !important;
}

/* ============================================
   PRICE BLOCK — Font-Override (gegen .price-card span mono + 11px)
   ============================================ */
.price-block span,
.price-block div,
.early-bird-badge,
.setup-price,
.setup-unit,
.setup-meta,
.price-block-divider {
  font-family: var(--font) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: inherit !important;
}

/* Explizit Größen */
.setup-price { font-size: clamp(1.8rem, 2.8vw, 2.6rem) !important; }
.setup-unit  { font-size: .9rem !important; }
.setup-meta  { font-size: .9rem !important; }
.early-bird-badge { font-size: 10.5px !important; }

/* ============================================
   PRICING TOGGLE — Commitment / Flex
   ============================================ */
.pricing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: clamp(28px, 3vw, 40px) auto clamp(16px, 2vw, 24px);
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(50,121,249,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 8px 24px -12px rgba(50,121,249,.15);
}

.toggle-label {
  font-size: 13.5px;
  font-weight: 560;
  color: #48627a;
  transition: color .22s ease, font-weight .22s ease;
  user-select: none;
}

.toggle-label.is-active {
  color: #071f48;
  font-weight: 680;
}

.toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  border: none;
  border-radius: 999px;
  background: rgba(50,121,249,.15);
  cursor: pointer;
  transition: background .22s ease;
  padding: 0;
}

.toggle-switch.is-flex {
  background: linear-gradient(135deg, #3279f9, #0b8da7);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(7,31,72,.18);
  transition: transform .22s cubic-bezier(.22,.61,.36,1);
}

.toggle-switch.is-flex .toggle-knob {
  transform: translateX(18px);
}

.toggle-hint {
  font-size: 13px;
  color: #48627a;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   PRICE BLOCK — Einrichtungspreis prominent
   ============================================ */
.price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: clamp(12px, 1.4vw, 18px) 0 0;
}

.early-bird-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid rgba(50,121,249,.28);
  color: #2057d4;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.setup-main-line {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 4px;
}

.setup-price {
  font-weight: 760;
  color: #071f48;
  line-height: 1;
  letter-spacing: -.03em;
}

.setup-unit {
  font-weight: 480;
  color: #6b7f90;
}

.setup-meta {
  display: block;
  color: #48627a;
  font-weight: 480;
  margin-top: 3px;
}

.price-block-divider {
  border-top: 1px solid rgba(7,31,72,.08);
  margin-top: 10px;
}

/* ============================================
   PRICING ACCORDION — zahnärzte.online Stil
   ============================================ */
.pricing-accordion-wrap {
  margin-top: clamp(40px, 4.8vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 18px);
  max-width: 1080px;
  margin-inline: auto;
  margin-top: clamp(40px, 4.8vw, 64px);
}

.pricing-accordion {
  border: 1px solid transparent !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(242,249,252,.62)) padding-box,
    linear-gradient(135deg, rgba(50,121,249,.24), rgba(11,141,167,.16), rgba(255,255,255,.74)) border-box !important;
  background-clip: padding-box, border-box !important;
  background-origin: border-box !important;
  box-shadow:
    0 18px 46px -34px rgba(7,31,72,.24),
    inset 0 1px 0 rgba(255,255,255,.82) !important;
  transition: box-shadow .28s ease, border-color .28s ease, transform .28s ease;
}

.pricing-accordion.is-open {
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(244,250,253,.7)) padding-box,
    linear-gradient(135deg, rgba(50,121,249,.34), rgba(11,141,167,.24), rgba(255,255,255,.82)) border-box !important;
  box-shadow:
    0 24px 62px -34px rgba(50,121,249,.28),
    inset 0 1px 0 rgba(255,255,255,.9) !important;
  overflow: visible !important;
}

.pricing-accordion-head {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto 34px;
  align-items: center;
  gap: 0 clamp(14px, 1.6vw, 18px);
  min-height: clamp(92px, 8vw, 108px);
  padding: clamp(22px, 2.35vw, 30px) clamp(24px, 2.8vw, 36px);
  border: none;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(238,247,255,.7) 52%, rgba(232,250,247,.54)) !important;
  cursor: pointer;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
  transition: background .24s ease, box-shadow .24s ease;
}

.pricing-accordion.is-open .pricing-accordion-head {
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(231,244,255,.82) 48%, rgba(226,248,245,.66)) !important;
  border-bottom: 1px solid rgba(50,121,249,.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 18px 34px -34px rgba(7,31,72,.28);
}

.pricing-accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(50,121,249,.13), rgba(11,141,167,.08)) !important;
  color: #2862c9 !important;
  font-size: 19px;
  font-style: normal;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68);
  transition: background .28s ease, color .28s ease, box-shadow .28s ease;
}

.pricing-accordion.is-open .pricing-accordion-icon {
  background: linear-gradient(135deg, rgba(50,121,249,.18), rgba(11,141,167,.11)) !important;
  color: #1e4fba !important;
}

.pricing-accordion-title {
  display: block;
  color: #071f48;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 680;
  line-height: 1.1;
}

.pricing-accordion.is-open .pricing-accordion-title {
  color: #071f48 !important;
}

.pricing-accordion-sub {
  display: block;
  color: #6b7f90;
  font-size: .84rem;
  font-weight: 430;
  margin-top: 2px;
  line-height: 1.3;
}

.pricing-accordion.is-open .pricing-accordion-sub {
  color: #48627a !important;
}

.pricing-accordion-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.72) !important;
  color: #2862c9 !important;
  box-shadow:
    inset 0 0 0 1px rgba(50,121,249,.12),
    0 10px 24px -18px rgba(7,31,72,.34);
  transition: transform .28s cubic-bezier(.22,.61,.36,1), background .22s ease, box-shadow .22s ease;
  flex-shrink: 0;
}

.pricing-accordion-arrow::before {
  content: "↓";
  font-size: .9rem;
  font-weight: 600;
}

.pricing-accordion.is-open .pricing-accordion-arrow {
  transform: rotate(180deg);
  background: rgba(255,255,255,.86) !important;
  color: #1e4fba !important;
  box-shadow:
    inset 0 0 0 1px rgba(50,121,249,.18),
    0 12px 26px -18px rgba(7,31,72,.36);
}

.pricing-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.22,.61,.36,1);
}

.pricing-accordion.is-open .pricing-accordion-body {
  overflow: visible;
}

.pricing-accordion-inner {
  padding: clamp(20px, 2.4vw, 30px);
}

.pricing-accordion-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.pricing-placeholder-text {
  max-width: 480px;
  text-align: center;
  color: #6b7f90;
  font-size: .95rem;
  line-height: 1.6;
  font-style: italic;
}

/* Paket-Finder */
.package-finder {
  color: #071f48;
}

.package-finder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.package-finder-flow {
  display: grid;
  gap: 14px;
}

.package-finder-step,
.package-finder-result {
  border: 1px solid rgba(50,121,249,.13);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(50,121,249,.035), rgba(255,255,255,.98));
  box-shadow: 0 12px 34px -28px rgba(7,31,72,.2);
}

.package-finder-step {
  padding: clamp(16px, 2vw, 22px);
  transition: opacity .2s ease, border-color .2s ease;
}

.package-finder-step.is-active {
  border-color: rgba(50,121,249,.28);
}

.package-finder-step.is-locked {
  opacity: .55;
}

.package-finder-step.is-locked .package-finder-pack {
  pointer-events: none;
}

.package-finder-step-head {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.package-finder-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(50,121,249,.10);
  color: #2862c9;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
}

.package-finder-step h3 {
  margin: 0;
  color: #071f48;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.15;
}

.package-finder-step p {
  margin: 4px 0 0;
  color: #48627a;
  font-size: .86rem;
  line-height: 1.45;
}

.package-finder-step-mode,
.package-finder-group-title,
.package-finder-result-head span,
.package-finder-summary > span {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b7f90;
}

.package-finder-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.package-finder-practice,
.package-finder-pack {
  border: 1px solid rgba(50,121,249,.14);
  background: rgba(255,255,255,.86);
  color: #071f48;
  cursor: pointer;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.package-finder-practice:hover,
.package-finder-pack:hover {
  border-color: rgba(50,121,249,.34);
  background: #fff;
  box-shadow: 0 14px 34px -26px rgba(50,121,249,.24);
  transform: translateY(-1px);
}

.package-finder-practice.is-selected,
.package-finder-pack.is-selected {
  border-color: rgba(50,121,249,.58);
  background: linear-gradient(145deg, rgba(50,121,249,.10), rgba(255,255,255,.96));
}

.package-finder-practice {
  display: grid;
  gap: 5px;
  padding: 15px;
  border-radius: 14px;
}

.package-finder-practice span,
.package-finder-practice strong {
  font-size: .9rem;
  line-height: 1.2;
}

.package-finder-practice strong {
  color: #48627a;
  font-weight: 560;
}

.package-finder-pack-group + .package-finder-pack-group {
  margin-top: 18px;
}

.package-finder-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
}

.package-finder-group-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(50,121,249,.12);
}

.package-finder-pack-list {
  display: grid;
  gap: 7px;
}

.package-finder-pack {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
}

.package-finder-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  border: 1.5px solid rgba(50,121,249,.22);
  color: transparent;
  font-size: .7rem;
  font-weight: 800;
}

.package-finder-pack.is-selected .package-finder-check {
  background: linear-gradient(135deg, #3279f9, #0b8da7);
  border-color: transparent;
  color: #fff;
}

.package-finder-pack strong,
.package-finder-pack small {
  display: block;
}

.package-finder-pack strong {
  font-size: .9rem;
  line-height: 1.2;
}

.package-finder-pack small {
  margin-top: 2px;
  color: #6b7f90;
  font-size: .76rem;
  line-height: 1.35;
}

.package-finder-pack em {
  justify-self: end;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(50,121,249,.09);
  color: #2862c9;
  font-size: .66rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.package-finder-result {
  position: sticky;
  top: calc(var(--df-nav-height, 64px) + 16px);
  align-self: start;
  overflow: hidden;
}

.package-finder-result-head,
.package-finder-meter,
.package-finder-price,
.package-finder-summary,
.package-finder-actions,
.package-finder-note {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(50,121,249,.10);
}

.package-finder-result-head {
  background: linear-gradient(135deg, rgba(50,121,249,.10), rgba(11,141,167,.06));
}

.package-finder-result-head strong {
  display: block;
  margin-top: 4px;
  color: #071f48;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1;
}

.package-finder-result-head p {
  margin: 5px 0 0;
  color: #48627a;
  font-size: .88rem;
}

.package-finder-result.is-professional {
  border-color: rgba(50,121,249,.36);
  box-shadow: 0 18px 50px -28px rgba(50,121,249,.28);
}

.package-finder-result.is-growth {
  border-color: rgba(11,141,167,.42);
  box-shadow: 0 18px 54px -28px rgba(11,141,167,.28);
}

.package-finder-meter > div:first-child,
.package-finder-meter-markers {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #6b7f90;
  font-size: .76rem;
}

.package-finder-meter-track {
  height: 8px;
  margin: 9px 0 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(50,121,249,.10);
}

.package-finder-meter-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3279f9, #0b8da7);
  transition: width .28s ease;
}

.package-finder-meter-markers .is-active {
  color: #2862c9;
  font-weight: 700;
}

.package-finder-price strong {
  color: #071f48;
  font-size: clamp(1.7rem, 2.1vw, 2.15rem);
  line-height: 1;
}

.package-finder-price span {
  color: #6b7f90;
  font-size: .84rem;
  margin-left: 4px;
}

.package-finder-price p,
.package-finder-price small,
.package-finder-summary p {
  margin: 5px 0 0;
  color: #6b7f90;
  font-size: .82rem;
  line-height: 1.4;
}

.package-finder-price small {
  display: block;
  color: #0b8a63;
  font-weight: 650;
}

.package-finder-summary > strong {
  display: block;
  margin-top: 7px;
  color: #071f48;
  font-size: 2rem;
  line-height: 1;
}

.package-finder-selected-list {
  display: grid;
  gap: 4px;
  max-height: 142px;
  margin-top: 10px;
  overflow: auto;
}

.package-finder-selected-list span,
.package-finder-selected-list em {
  color: #48627a;
  font-size: .78rem;
  line-height: 1.35;
}

.package-finder-selected-list span {
  display: flex;
  gap: 6px;
  align-items: center;
}

.package-finder-selected-list span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0b8da7;
  flex: 0 0 auto;
}

.package-finder-selected-list em {
  font-style: italic;
}

.package-finder-hint {
  margin: 0 18px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(245,158,11,.22);
  border-radius: 12px;
  background: rgba(245,158,11,.08);
  color: #8a5a08;
  font-size: .78rem;
  line-height: 1.45;
}

.package-finder-actions {
  display: grid;
  gap: 9px;
}

.package-finder-actions .btn {
  width: 100%;
}

.package-finder-note {
  display: grid;
  gap: 4px;
  border-bottom: 0;
  background: rgba(7,31,72,.03);
}

.package-finder-note strong {
  color: #071f48;
  font-size: .88rem;
}

.package-finder-note span {
  color: #6b7f90;
  font-size: .78rem;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .package-finder-grid,
  .package-finder-practice-grid {
    grid-template-columns: 1fr;
  }

  .package-finder-result {
    position: static;
  }

  .package-finder-step-head {
    grid-template-columns: 34px 1fr;
  }

  .package-finder-step-mode {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .package-finder-pack {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .package-finder-pack em {
    grid-column: 2;
    justify-self: start;
  }
}

/* Pack-Beispiele Grid */
.pack-examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}

.pack-example {
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(50,121,249,.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(50,121,249,.04), rgba(255,255,255,.98));
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pack-example-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pack-example-emoji {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.pack-example-head div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.pack-example-head strong {
  color: #071f48;
  font-size: clamp(.92rem, .98vw, 1.06rem);
  font-weight: 680;
  line-height: 1.2;
}

.pack-example p {
  color: #48627a;
  font-size: .88rem;
  line-height: 1.56;
  margin: 0;
}

.pack-example-stat {
  font-size: .82rem;
  color: #2862c9;
  font-weight: 640;
  padding-top: 8px;
  border-top: 1px solid rgba(50,121,249,.10);
}

.pack-example-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pack-example-tag-s { background: rgba(50,121,249,.10); color: #2862c9; }
.pack-example-tag-p { background: rgba(7,31,72,.08); color: #071f48; }
.pack-example-tag-g { background: linear-gradient(135deg, rgba(50,121,249,.14), rgba(11,141,167,.10)); color: #0b6478; }

@media (max-width: 680px) {
  .pack-examples-grid { grid-template-columns: 1fr; }
  .pricing-accordion-head {
    grid-template-columns: 38px 1fr 28px;
  }
  .pricing-accordion-sub { display: none; }
}
