/* zahnärzte.online — Styles */

:root {
  /* Design tokens */
  --grey-0: #fff;
  --grey-10: #f8f9fc;
  --grey-15: #f0f1f5;
  --grey-20: #eff2f7;
  --grey-50: #e6eaf0;
  --grey-100: #e1e6ec;
  --grey-200: #cdd4dc;
  --grey-300: #b2bbc5;
  --grey-800: #45474d;
  --grey-900: #2f3034;
  --grey-1000: #212226;
  --grey-1200: #121317;
  --blue: #3279f9;
  --emerald: #16a36b;
  --font: "Bricolage Grotesque", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --page: clamp(18px, 4vw, 72px);
  --max: 1728px;
  --ease: cubic-bezier(.23, 1, .32, 1);

  /* Type scale */
  --type-scale: 0.85;
  --font-display: calc(var(--type-scale) * clamp(2.5rem, 3.75vw + 1.625rem, 5rem));
  --font-xxl: calc(var(--type-scale) * clamp(2rem, 3vw + 1.3rem, 4rem));
  --font-l: calc(var(--type-scale) * clamp(1.75rem, 1.9vw + 1.29rem, 3rem));
  --font-m: calc(var(--type-scale) * clamp(1.5rem, 1.5vw + 1.15rem, 2.5rem));
  --font-s: calc(var(--type-scale) * clamp(1.25rem, 0.75vw + 1.1rem, 1.75rem));

  /* Navigation */
  --df-nav-height: 64px;
}


/* ── TYPE SCALE ─────────────────────────────────────────────────────── */

/* ── Globaler Skalierungsfaktor ──────────────────────────────────
   Einen Wert ändern — alle Überschriften skalieren proportional.
   Fluid-Verhalten (clamp) bleibt vollständig erhalten.

   Beispiele:
     --type-scale: 0.85  → alle Überschriften 15 % kleiner
     --type-scale: 1     → Standardgröße (Design-Default)
     --type-scale: 1.15  → alle Überschriften 15 % größer
   ──────────────────────────────────────────────────────────── */


/* ── CSS-Custom-Properties — font-size-Werte einzeln verwendbar ── */
/* ── HTML-Reset: Elemente strukturieren, tragen keinen Stil ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

/* ─────────────────────────────────────────
   T-SHIRT-KLASSEN
   ───────────────────────────────────────── */

/* Display — 80 px max / Hero-Headline */
.type-display {
  font-family: var(--font);
  font-size: var(--font-display);
  font-weight: 430;
  line-height: .98;
  letter-spacing: -.028em;
}

/* XXL — 64 px max / Primäre Abschnitts-Headlines */
.type-xxl {
  font-family: var(--font);
  font-size: var(--font-xxl);
  font-weight: 430;
  line-height: 1.04;
  letter-spacing: -.024em;
}

/* L — 48 px max / Carousel-, Feature- & Alternating-Section-Headlines */


/* M — 40 px max / Modal-, Navigator- & Prozess-Headlines */
.type-m {
  font-family: var(--font);
  font-size: var(--font-m);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.018em;
}

/* S — 28 px max / Karten-Titel & Komponenten-Headlines */
.type-s {
  font-family: var(--font);
  font-size: var(--font-s);
  font-weight: 560;
  line-height: 1.10;
  letter-spacing: -.012em;
}


/* ── BASE STYLES ────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--grey-10);
}

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--grey-1200);
  background: var(--grey-10);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}



a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.container {
  max-width: calc(var(--max) + var(--page) * 2);
  margin: 0 auto;
  padding: 0 var(--page);
}

.section {
  padding: clamp(76px, 10vw, 160px) 0;
  position: relative;
  overflow: clip;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 64px;
  padding: 0 var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, .76);
  border-bottom: 1px solid rgba(33, 34, 38, .06);
  backdrop-filter: blur(22px) saturate(1.5);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 28px rgba(33, 34, 38, .045);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand span span {
  color: var(--blue);
  font-weight: 360;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--grey-1200);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--grey-800);
  font-size: 14px;
}

.nav-links a {
  transition: color .2s var(--ease);
}

.nav-links a:hover {
  color: var(--grey-1200);
}

.nav-cta,
.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 550;
  transition: transform .32s var(--ease), background .38s var(--ease), border .38s var(--ease), color .28s var(--ease), box-shadow .45s var(--ease), filter .45s var(--ease);
}

.nav-cta,
.btn-secondary {
  background: var(--grey-10);
  border: 1px solid var(--grey-100);
  color: var(--grey-1200);
}

.btn-primary {
  background: var(--grey-1200);
  color: white;
}

.site-nav .nav-cta {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue) 0%, #164cc9 54%, var(--grey-1200) 100%);
  background-size: 140% 140%;
  background-position: 0% 50%;
  color: white;
  box-shadow: 0 16px 36px -26px rgba(50, 121, 249, .78), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  background: var(--grey-900);
}

.btn-secondary:hover {
  background: white;
  border-color: var(--grey-200);
}

.site-nav .nav-cta:hover {
  background-position: 100% 50%;
  box-shadow: 0 20px 42px -26px rgba(50, 121, 249, .9), inset 0 1px 0 rgba(255, 255, 255, .28);
  filter: saturate(1.05);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 64px 0 0;
  overflow: visible;
  background: linear-gradient(180deg, rgba(50, 121, 249, .08), white 42%, var(--grey-10));
  border-bottom: 0;
}

.grid-bg {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image: linear-gradient(to right, rgba(33, 34, 38, .06) 1px, transparent 1px), linear-gradient(to bottom, rgba(33, 34, 38, .06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at 50% 10%, #000 20%, transparent 74%);
}







.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(33, 34, 38, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .76);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .34);
}

.hero h1 {
  max-width: 100%;
  font-weight: 430;
  letter-spacing: -.028em;
  line-height: .98;
}

.accent-gradient {
  color: transparent;
  background: linear-gradient(95deg, var(--blue), #164cc9 52%, var(--grey-1200));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subhead,
.section-head p,
.cta-card p {
  color: var(--grey-800);
  font-size: clamp(1.02rem, 1.1vw, 1.28rem);
  line-height: 1.58;
}

.hero-subhead {
  max-width: 62ch;
}









.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #164cc9 52%, var(--grey-1200) 100%);
  background-size: 145% 145%;
  background-position: 0% 50%;
  box-shadow: 0 18px 44px -24px rgba(50, 121, 249, .85), inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: transform .34s var(--ease), background-position .62s var(--ease), box-shadow .5s var(--ease), filter .5s var(--ease);
}

.hero-actions .btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 22px 48px -24px rgba(50, 121, 249, .95), inset 0 1px 0 rgba(255, 255, 255, .28);
  filter: saturate(1.08) brightness(1.02);
}

.service-marquee {
  position: relative;
  grid-column: 1 / -1;
  z-index: 5;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  contain: layout;
  overflow: visible;
  padding: 16px 0 0;
  margin: 0;
  border-top: 0;
  transform: translateZ(0);
}

.service-marquee::before,
.service-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 240px;
  pointer-events: none;
}

.service-marquee::before {
  left: -112px;
  background: linear-gradient(90deg, var(--grey-10) 0%, var(--grey-10) 34%, rgba(248, 249, 252, .94) 58%, rgba(248, 249, 252, 0) 100%);
}

.service-marquee::after {
  right: -112px;
  background: linear-gradient(270deg, var(--grey-10) 0%, var(--grey-10) 34%, rgba(248, 249, 252, .94) 58%, rgba(248, 249, 252, 0) 100%);
}

.service-track {
  position: relative;
  z-index: 8;
  display: flex;
  width: max-content;
  gap: 48px;
  animation: serviceMarquee 34s linear infinite;
  transform: translateX(128px);
}

.service-marquee:hover .service-track,
.service-marquee:focus-within .service-track {
  animation-play-state: paused;
}

.trust-tags {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(32px, 6vw, 88px);
  padding: 0;
  margin: 0;
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 12px;
  list-style: none;
}

.trust-tags li {
  position: relative;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.trust-tags li:hover,
.trust-tags li:focus-within {
  z-index: 40;
}

.checkpoint {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.checkpoint::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.trust-tags [role="tooltip"] {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: calc(100% + 10px);
  z-index: 30;
  width: min(270px, 78vw);
  padding: 12px 14px;
  border: 1px solid rgba(33, 34, 38, .12);
  border-radius: 14px;
  background: rgba(18, 19, 23, .96);
  color: white;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 18px 44px rgba(18, 19, 23, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}

.trust-tags [role="tooltip"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: rgba(18, 19, 23, .96);
  transform: translate(-50%, 5px) rotate(45deg);
}

.trust-tags li:hover [role="tooltip"],
.trust-tags li:focus-within [role="tooltip"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

.checkpoint:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.navigator-mockup {
  background: white;
  border: 1px solid rgba(33, 34, 38, .12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 48px 90px -34px rgba(18, 19, 23, .28), 0 16px 36px -24px rgba(18, 19, 23, .16);
}



















.mockup-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}















.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-questions button {
  border: 1px solid var(--grey-100);
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--grey-10);
  color: var(--grey-900);
  font-size: 12px;
  transition: all .2s var(--ease);
}

.quick-questions button:hover,
.quick-questions button.is-active {
  background: var(--grey-1200);
  border-color: var(--grey-1200);
  color: white;
}











.target-bubble {
  padding: 20px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, var(--grey-1200), var(--grey-1000));
}









.target-bubble small {
  display: block;
  margin-bottom: 9px;
  color: #98bfff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.target-bubble strong {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 560;
  line-height: 1.08;
}

.target-bubble em {
  display: inline-flex;
  margin-top: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  color: var(--grey-15);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
}

.section-head {
  max-width: 900px;
  margin-bottom: clamp(44px, 6vw, 86px);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.centered .eyebrow {
  margin-inline: auto;
  justify-content: center;
}

.section-head.centered .eyebrow::before {
  display: none;
}

.section-head h2,
.cta-card h2 {
  margin-top: 16px;
  line-height: 1.04;
  letter-spacing: -.024em;
  font-weight: 430;
}

.section-head p {
  max-width: 760px;
  margin: 18px auto 0;
}

main>.section:not(.hero) p,
main>.section:not(.hero) li {
  font-size: clamp(1.02rem, 1.03vw, 1.16rem);
}

.term-tip,
.info-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.term-tip span[role="tooltip"],
.info-dot span[role="tooltip"] {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: min(260px, 72vw);
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--grey-1200);
  color: white;
  box-shadow: 0 18px 48px rgba(18, 19, 23, .22);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.term-tip span[role="tooltip"]::after,
.info-dot span[role="tooltip"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12px;
  height: 12px;
  background: inherit;
  transform: translate(-50%, -6px) rotate(45deg);
}

.term-tip:hover span[role="tooltip"],
.term-tip:focus-visible span[role="tooltip"],
.term-tip.is-open span[role="tooltip"],
.info-dot:hover span[role="tooltip"],
.info-dot:focus-visible span[role="tooltip"],
.info-dot.is-open span[role="tooltip"] {
  opacity: 1;
  transform: translate(-50%, 0);
}



.info-dot {
  width: 19px;
  height: 19px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(50, 121, 249, .12);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
}























.bento-card span,
.price-card span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bento-card h3,
.price-card h3 {
  margin-top: 10px;
  color: var(--grey-1200);
  line-height: 1.1;
  font-weight: 560;
}

.bento-card p,
.price-card p,
.faq details p {
  margin-top: 12px;
  color: var(--grey-800);
  font-size: 15px;
  line-height: 1.62;
}





.intent-scroll-stage {
  position: relative;
  min-height: 360vh;
  margin-top: clamp(80px, 10vh, 128px);
}

.navigator-mockup {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
}

.intent-scroll-stage .navigator-mockup {
  position: sticky;
  top: clamp(160px, 28vh, 288px);
  z-index: 4;
  transform: scale(var(--intent-scale, .72));
  transform-origin: center center;
  transition: none;
}

.mockup-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-100);
}

.mockup-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--grey-100);
  border-radius: 18px;
  background: var(--grey-10);
}

.mockup-search label {
  color: var(--grey-800);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.mockup-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--grey-1200);
  font-size: 19px;
  font-weight: 520;
}

.mockup-search button,
.price-card button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--grey-1200);
  color: white;
  font-weight: 550;
}

.navigator-questions {
  margin-top: 18px;
  justify-content: center;
}

.mockup-routing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.patient-bubble {
  padding: 20px;
  border: 1px solid var(--grey-100);
  border-radius: 20px;
  background: var(--grey-10);
  color: var(--grey-1200);
  font-size: 22px;
  font-weight: 540;
}

.route-pulse {
  display: flex;
  gap: 5px;
  align-items: center;
}

.route-pulse span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: bounceDot 1.1s infinite ease-in-out;
}

.route-pulse span:nth-child(2) {
  animation-delay: .15s;
}

.route-pulse span:nth-child(3) {
  animation-delay: .3s;
}

.navigator-mockup [data-intent-part] {
  transition: opacity .35s var(--ease), filter .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}

.navigator-mockup.is-guided [data-intent-part] {
  opacity: .32;
  filter: blur(1.2px) grayscale(.35);
}

.navigator-mockup[data-active="search"] [data-intent-part="search"],
.navigator-mockup[data-active="quick"] [data-intent-part="quick"],
.navigator-mockup[data-active="process"] [data-intent-part="process"],
.navigator-mockup[data-active="result"] [data-intent-part="result"] {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
  border-color: rgba(50, 121, 249, .65);
  box-shadow: 0 0 0 2px rgba(50, 121, 249, .22), 0 18px 52px -32px rgba(50, 121, 249, .78);
}

.navigator-mockup[data-active="process"] .route-pulse {
  box-shadow: none;
}

.intent-step-notes {
  position: sticky;
  top: var(--intent-note-top, clamp(600px, 72vh, 680px));
  z-index: 6;
  width: min(430px, calc(100vw - var(--page) * 2));
  min-height: 148px;
  margin: 0 0 0 var(--intent-note-left, calc(50% - 215px));
  pointer-events: none;
  transition: top .28s var(--ease), margin-left .28s var(--ease);
}

.intent-scroll-stage[data-active="search"] {
  --intent-note-top: clamp(360px, 48vh, 472px);
  --intent-note-left: calc(50% - 490px);
}

.intent-scroll-stage[data-active="quick"] {
  --intent-note-top: clamp(440px, 58vh, 552px);
  --intent-note-left: calc(50% + 70px);
}

.intent-scroll-stage[data-active="process"] {
  --intent-note-top: clamp(624px, 78vh, 736px);
  --intent-note-left: calc(50% - 490px);
}

.intent-scroll-stage[data-active="result"] {
  --intent-note-top: clamp(624px, 78vh, 736px);
  --intent-note-left: calc(50% + 70px);
}

.intent-step-note {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 18px;
  align-items: start;
  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: 0;
  transform: translateY(14px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.intent-step-note::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 42px;
  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: rotate(45deg);
}

.intent-scroll-stage[data-active="quick"] .intent-step-note::before,
.intent-scroll-stage[data-active="result"] .intent-step-note::before {
  left: auto;
  right: 42px;
}

.intent-step-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intent-step-note span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .16);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.intent-step-note h3 {
  margin: 0;
  color: white;
  line-height: 1.05;
  font-weight: 560;
  letter-spacing: -.012em;
}

.intent-step-note p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.5;
}

































.navigator-solution-alt {
  margin-top: clamp(40px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-block: 8px;
}

.solution-alt-copy {
  position: sticky;
  top: 96px;
}

.solution-alt-copy h3 {
  margin-top: 14px;
  max-width: 12ch;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 440;
  letter-spacing: -.024em;
}

.solution-alt-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--grey-800);
  line-height: 1.58;
}

.solution-rail {
  position: relative;
  display: grid;
  gap: 14px;
}

.solution-rail::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 28px;
  width: 1px;
  background: linear-gradient(var(--blue), rgba(50, 121, 249, .12));
}

.solution-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--grey-100);
  border-radius: 24px;
  background: white;
  box-shadow: 0 22px 58px -48px rgba(18, 19, 23, .32);
}

.solution-rail article span {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: rgba(50, 121, 249, .09);
  font-family: var(--mono);
}

.solution-rail article strong {
  color: var(--grey-1200);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.solution-rail article p {
  margin-top: 6px;
  color: var(--grey-800);
  line-height: 1.5;
}



































.status-quo {
  padding: clamp(56px, 6vw, 88px) 0;
  color: white;
  background: var(--grey-1200);
}

.status-quo .section-head p.eyebrow {
  justify-self: start;
  margin: 0;
  max-width: none;
  font-size: 12px;
  line-height: 1.2;
}

.status-quo .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  grid-template-rows: auto auto;
  gap: 18px clamp(40px, 6vw, 96px);
  align-items: end;
}

.status-quo .section-head .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.status-quo .section-head h2 {
  grid-column: 1;
  grid-row: 2;
  text-wrap: balance;
}

.status-quo .section-head h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(95deg, #7fb0ff, var(--blue) 48%, white);
  -webkit-background-clip: text;
  background-clip: text;
}

.status-quo .section-head p {
  color: rgba(255, 255, 255, .72);
}

.status-quo .section-head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  max-width: 52ch;
  align-self: end;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(240px, auto));
  gap: 16px;
}

.bento-card {
  position: relative;
  grid-column: span 4;
  min-height: 0;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 26px;
  background: rgba(255, 255, 255, .055);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.bento-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  z-index: 0;
  width: clamp(130px, 11vw, 190px);
  height: clamp(130px, 11vw, 190px);
  border: 1px solid rgba(127, 176, 255, .18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(127, 176, 255, .12), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 11px);
  opacity: .82;
  transform: rotate(12deg);
  pointer-events: none;
}

.bento-grid .bento-card:nth-child(1)::after {
  right: auto;
  left: -76px;
  bottom: -72px;
  width: clamp(180px, 16vw, 260px);
  height: clamp(118px, 10vw, 172px);
  border-radius: 999px;
  transform: rotate(-11deg);
}

.bento-grid .bento-card:nth-child(2)::after {
  right: -54px;
  top: -58px;
  bottom: auto;
  border-radius: 999px;
  transform: rotate(20deg);
}

.bento-grid .bento-card:nth-child(3)::after {
  right: auto;
  left: -60px;
  bottom: 20px;
  border-radius: 28px;
  transform: rotate(-18deg);
}

.bento-grid .bento-card:nth-child(4)::after {
  right: 24px;
  bottom: -82px;
  width: clamp(220px, 18vw, 320px);
  height: clamp(92px, 8vw, 132px);
  border-radius: 999px;
  transform: rotate(6deg);
}

.bento-grid .bento-card:nth-child(5)::after {
  right: auto;
  left: 50%;
  bottom: -92px;
  width: clamp(150px, 13vw, 230px);
  height: clamp(150px, 13vw, 230px);
  border-radius: 42px;
  transform: translateX(-50%) rotate(45deg);
}

.bento-grid .bento-card:nth-child(6)::after {
  right: -36px;
  top: -48px;
  bottom: auto;
  width: clamp(120px, 10vw, 176px);
  height: clamp(180px, 14vw, 240px);
  border-radius: 30px;
  transform: rotate(28deg);
}

.bento-grid .bento-card:nth-child(7)::after {
  right: auto;
  left: -46px;
  top: -46px;
  bottom: auto;
  width: clamp(132px, 12vw, 196px);
  height: clamp(132px, 12vw, 196px);
  border-radius: 999px;
  transform: rotate(-24deg);
}

.bento-card>* {
  position: relative;
  z-index: 1;
}



.bento-card>i {
  width: clamp(54px, 6vh, 68px);
  height: clamp(54px, 6vh, 68px);
  margin-bottom: clamp(14px, 1.8vh, 22px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 176, 255, .14);
  color: #7fb0ff;
  font-style: normal;
  font-size: clamp(24px, 2.8vh, 34px);
  font-weight: 640;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}



.status-quo .bento-grid .bento-card h3 {
  max-width: 12ch;
  color: white;
  line-height: 1.02;
  letter-spacing: -.022em;
  font-weight: 520;
}

.status-quo .bento-grid .bento-card p {
  max-width: none;
  margin-top: clamp(12px, 1.6vh, 18px);
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.98rem, .92vw, 1.1rem);
  line-height: 1.48;
}



















.bento-grid .bento-card:nth-child(2) {
  grid-column: 9 / span 4;
  grid-row: 1;
}

.bento-grid .bento-card:nth-child(3) {
  grid-column: 1 / span 4;
  grid-row: 2;
}

.bento-grid .bento-card:nth-child(4) {
  grid-column: 5 / span 8;
  grid-row: 2;
}

.bento-grid .bento-card:nth-child(5) {
  grid-column: 1 / span 6;
  grid-row: 3;
}

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

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




























@keyframes statusBorderOrbit {
  to {
    transform: rotate(1turn);
  }
}



.process-layout {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 96px;
}

.process-sticky h2 {
  margin-top: 16px;
  max-width: 17ch;
  line-height: 1.03;
  letter-spacing: -.024em;
  font-weight: 430;
}

.process-sticky p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--grey-800);
  font-size: 1.2rem;
}











































































.comparison-table {
  margin-top: 24px;
  border: 1px solid var(--grey-100);
  border-radius: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  background: white;
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  min-width: 760px;
}

.comparison-table [role="row"]+[role="row"] {
  border-top: 1px solid var(--grey-100);
}

.comparison-table span,
.comparison-table strong {
  padding: 16px 18px;
  border-right: 1px solid var(--grey-100);
  color: var(--grey-800);
  font-size: 15px;
  text-align: left;
}

.comparison-table span:last-child,
.comparison-table strong:last-child {
  border-right: 0;
}

.comparison-table [role="columnheader"] {
  background: var(--grey-10);
  color: var(--grey-1200);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-table strong {
  color: var(--grey-1200);
  background: rgba(50, 121, 249, .08);
  font-weight: 650;
}

























.pricing,
.final-cta {
  background: white;
  border-top: 1px solid var(--grey-100);
}



.price-card,
.cta-card {
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--grey-100);
  border-radius: 30px;
  background: var(--grey-10);
}





.price-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--grey-800);
  line-height: 1.7;
}















.content-pack {
  background: var(--grey-10);
}















.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  max-width: 1180px;
  margin: 0 auto;
}













.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: 36px;
  background: white;
  box-shadow: 0 26px 70px -54px rgba(18, 19, 23, .38);
}

.price-card.popular {
  background: white;
  color: var(--grey-1200);
  transform: scale(1.02);
  border-color: rgba(50, 121, 249, .85);
  box-shadow: 0 28px 78px -52px rgba(50, 121, 249, .75);
}

.price-card.popular h3 {
  color: var(--grey-1200);
}

.price-card.popular p,
.price-card.popular li {
  color: var(--grey-800);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 650;
}



.price-card .card-badge {
  width: max-content;
  margin-top: 12px;
  padding: 7px 12px;
  border: 1px solid var(--grey-100);
  border-radius: 999px;
  background: var(--grey-10);
  color: var(--grey-800);
  font-size: 13px;
}





.price-for {
  margin-top: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-800);
  font-size: 15px;
  line-height: 1.5;
}

.price-card button {
  margin-top: auto;
}

.price-card li {
  position: relative;
}

.feature-list {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 9px;
  color: var(--grey-1200);
  font-family: var(--font);
  font-size: clamp(14px, .82vw, 15px);
  font-weight: 430;
  line-height: 1.46;
}

.feature-item::before {
  content: "✓";
  color: var(--blue);
  font-weight: 780;
}

.feature-item span {
  min-width: 0;
  color: var(--grey-1200);
}

.feature-item strong {
  color: transparent;
  background: linear-gradient(95deg, var(--blue), #164cc9 52%, var(--grey-1200));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 720;
}

.price-card .info-btn {
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(50, 121, 249, .09);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(50, 121, 249, .08);
  opacity: .78;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease), opacity .2s var(--ease);
}

.price-card .info-btn:hover,
.feature-item.tooltip-open .info-btn {
  color: #1646aa;
  background: rgba(50, 121, 249, .16);
  opacity: 1;
  transform: translateY(-1px);
}

.feature-tooltip-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0 0 0 25px;
  border: 1px solid rgba(50, 121, 249, .15);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8f9ff, #eef4ff);
  transition: max-height .38s var(--ease), opacity .3s var(--ease), margin-top .3s var(--ease);
}

.tooltip-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
}

.tooltip-row+.tooltip-row {
  border-top: 1px solid rgba(50, 121, 249, .1);
}

.tooltip-row p {
  margin: 0;
  color: var(--grey-800);
  font-size: 13px;
  line-height: 1.45;
}

.tooltip-tag {
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 3px 7px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-tag {
  color: var(--blue);
  background: rgba(50, 121, 249, .14);
}

.patient-tag {
  color: #047857;
  background: rgba(16, 185, 129, .12);
}

.price-card>button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  border-radius: 999px;
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--blue), #1646aa);
  color: white;
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
}

.price-card>button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 36px -24px rgba(50, 121, 249, .72);
}

.pricing-note {
  margin: 24px auto 0;
  color: var(--grey-800);
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
}

.faq {
  background: var(--grey-10);
}

.faq-list {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.faq details {
  border: 1.5px solid rgba(50, 121, 249, .16);
  border-radius: 16px;
  background: #fafbff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(50, 121, 249, .06);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.faq details[open] {
  background: rgba(50, 121, 249, .05);
  border-color: rgba(50, 121, 249, .38);
  box-shadow: inset 3px 0 0 var(--blue), 0 2px 14px rgba(50, 121, 249, .1);
}

.faq summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600;
  list-style: none;
  color: var(--grey-1200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .15s ease;
}

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .2s ease;
  line-height: 1;
}

.faq details[open] summary {
  color: var(--blue);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 0;
  padding: 12px 24px 24px;
  color: var(--grey-800);
  line-height: 1.65;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card {
  color: white;
  background: linear-gradient(135deg, var(--blue), #1646aa 45%, var(--grey-1200));
  box-shadow: 0 40px 110px -70px rgba(50, 121, 249, .9);
}

.cta-card h2 {
  max-width: 1000px;
  color: white;
}

.cta-card p {
  color: rgba(255, 255, 255, .72);
  max-width: 780px;
  margin-top: 20px;
}

.cta-card .hero-actions {
  margin-top: 30px;
}

.cta-card .btn-primary {
  background: white;
  color: var(--grey-1200);
}

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

.cta-card .cta-trust {
  font-family: var(--mono);
  font-size: 12px;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.cta-side-panel {
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.cta-side-panel span {
  color: rgba(255, 255, 255, .74);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-side-panel h3 {
  margin-top: 18px;
  color: white;
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  line-height: 1.04;
  font-weight: 480;
  letter-spacing: -.02em;
}

.cta-side-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cta-side-panel li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.45;
}

.cta-side-panel li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, .18);
  color: white;
  font-size: 12px;
  font-weight: 760;
}

.footer {
  padding: 70px 0 40px;
  background: white;
  border-top: 1px solid var(--grey-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--grey-800);
  line-height: 1.58;
}

.footer h4 {
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: var(--grey-800);
}

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

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

.intent-scroll-stage .navigator-mockup.reveal,
.intent-scroll-stage .navigator-mockup.reveal.is-visible {
  transform: scale(var(--intent-scale, .72));
}

@keyframes pulse {
  50% {
    opacity: .48;
  }
}

@keyframes bounceDot {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: .45;
  }

  40% {
    transform: translateY(-7px);
    opacity: 1;
  }
}

@keyframes serviceMarquee {
  from {
    transform: translateX(128px);
  }

  to {
    transform: translateX(calc(-50% + 104px));
  }
}

@keyframes tryWiggle {

  0%,
  76%,
  100% {
    transform: rotate(-4deg);
  }

  80% {
    transform: rotate(-8deg) translateX(-4px);
  }

  84% {
    transform: rotate(3deg) translateX(4px);
  }

  88% {
    transform: rotate(-6deg) translateX(-4px);
  }

  92% {
    transform: rotate(1deg) translateX(2px);
  }
}

@media (max-width: 1180px) {

  .process-layout,
.navigator-solution-alt,
.final-cta-grid {
    grid-template-columns: 1fr;
  }

  

  

  .hero h1 {
    max-width: 13.5ch;
  }

  

  

  

  

  

  

  

  .solution-alt-copy {
    position: relative;
    top: auto;
  }

  

  

  

  

  

  .process-sticky {
    position: relative;
    top: auto;
  }

  
}

@media (max-width: 900px) {
  .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 {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-100);
  }

  .nav-cta {
    display: none;
  }

  

  .mockup-routing {
    grid-template-columns: 1fr;
  }

  .route-pulse {
    justify-content: center;
  }

  .intent-scroll-stage {
    min-height: auto;
  }

  .intent-scroll-stage .navigator-mockup {
    position: relative;
    top: auto;
    transform: none !important;
  }

  .intent-step-notes {
    position: relative;
    top: auto;
    min-height: auto;
    margin-top: 16px;
  }

  .intent-step-note {
    position: relative;
    display: none;
    inset: auto;
  }

  .intent-step-note.is-visible {
    display: grid;
  }

  .bento-card {
    grid-column: span 12;
  }

  

  .bento-grid {
    grid-template-rows: none;
    grid-auto-rows: auto;
    max-height: none;
  }

  .status-quo .section-head {
    grid-template-columns: 1fr;
  }

  .bento-grid .bento-card:nth-child(n) {
    grid-column: span 12;
    grid-row: auto;
  }

  

  

  

  

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.popular {
    transform: none;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .status-quo .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .status-quo .section-head .eyebrow,
  .status-quo .section-head h2,
  .status-quo .section-head p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .status-quo .section-head p:not(.eyebrow) {
    align-self: start;
    max-width: 62ch;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .site-nav {
    height: 62px;
  }

  .brand {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero h1 {
    line-height: 1.03;
  }

  

  

  .hero-actions .btn {
    width: 100%;
  }

  

  

  .service-track {
    gap: 28px;
    animation-duration: 28s;
  }

  .trust-tags {
    gap: 24px;
  }

  .checkpoint {
    justify-content: center;
    text-align: center;
  }

  .trust-tags [role="tooltip"] {
    left: 0;
    transform: translate(0, -6px);
  }

  .trust-tags [role="tooltip"]::after {
    left: 24px;
  }

  .trust-tags li:hover [role="tooltip"],
  .trust-tags li:focus-within [role="tooltip"] {
    transform: translate(0, 0);
  }

  .solution-rail article {
    grid-template-columns: 1fr;
  }

  .solution-rail::before {
    display: none;
  }

  .solution-rail article span {
    margin-bottom: 14px;
  }

  

  .term-tip span[role="tooltip"],
  .info-dot span[role="tooltip"] {
    left: 0;
    transform: translate(0, 6px);
  }

  .term-tip span[role="tooltip"]::after,
  .info-dot span[role="tooltip"]::after {
    left: 18px;
  }

  .term-tip:hover span[role="tooltip"],
  .term-tip:focus-visible span[role="tooltip"],
  .term-tip.is-open span[role="tooltip"],
  .info-dot:hover span[role="tooltip"],
  .info-dot:focus-visible span[role="tooltip"],
  .info-dot.is-open span[role="tooltip"] {
    transform: translate(0, 0);
  }

  

  

  

  .comparison-table {
    overflow-x: auto;
  }

  

  

  .mockup-search {
    grid-template-columns: 1fr;
  }

  .patient-bubble {
    font-size: 18px;
  }

  

  

  

  

  

  .footer-grid {
    grid-template-columns: 1fr;
  }

  

  
}


/* ── EXTENDED STYLES (v2) ───────────────────────────────────────────── */

/* ---- Hero Disclaimer ---- */


.site-nav {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  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);
  border-bottom-color: rgba(33, 34, 38, .06);
  box-shadow: 0 10px 28px rgba(33, 34, 38, .045);
  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 Mockup Variant ---- */





















































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

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



















/* ---- 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 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) {
  

  

  

  
}

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

  

  

  

  

  

  .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 .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;
}



@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::after {
  display: none;
}

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

.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;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: transparent;
  background: linear-gradient(94deg, #d8e8ff 0%, #8fc0ff 42%, #9ff7ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
}







/* ---- Problem Statement Card ---- */




.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-grid .bento-card:nth-child(6) {
  grid-column: 7 / span 6;
  grid-row: 3;
}

/* ---- Status Soft CTA ---- */




/* ============================================
   03 SYSTEM SECTION
   ============================================ */
































@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) {
  
}













/* ---- 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);
}





/* ============================================
   04 NAVIGATOR MASONRY
   ============================================ */






.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;
}



/* ============================================
   05 CONTENT PACKS SECTION
   ============================================ */






















































































@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-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-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) */














/* Abstract Nav */




















/* Pack Nav Solo (Seq 4) */






























/* Pack Callout */




































/* Pack Controls */






































/* ---- Pack-Nav Transfer (Seq 4) ---- */


















@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;
  }
}









/* ============================================
   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;
  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-sticky {
    position: static;
  }
}

.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-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 */




/* ============================================
   PACKAGE COMPARE WRAP
   ============================================ */


/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 600px) {
  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  .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
   ============================================ */


/* ============================================
   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-cta {
  margin-top: clamp(4px, 1vw, 10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}





/* 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 {
    max-width: none;
  }
}

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

/* ============================================
   NAVIGATOR SECTION (statische Variante)
   ============================================ */
.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 */


/* 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;
  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"
   ============================================ */


/* ============================================
   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-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;
  box-shadow: none;
  color: #071f48;
  font-size: 20px;
  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;
  }
}

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

  .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;
  }
}



/* ============================================
   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-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
   ============================================ */



.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);
  padding-bottom: clamp(48px, 6vw, 80px);
}

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

/* 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);
  min-height: min(var(--hero-viewport-height), 900px);
  max-height: 900px;
}

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

/* 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%);
  border-top: 1px solid rgba(50, 121, 249, .10);
  border-bottom: 1px solid rgba(50, 121, 249, .08);
}

.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;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  background-image:
    linear-gradient(#f8fbff, #f8fbff),
    linear-gradient(135deg, #3279f9 0%, #0b8da7 50%, #071f48 100%);
  background-origin: border-box;
  border-radius: 20px;
  overflow: visible;
}

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

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

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

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

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

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

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

.pricing-accordion-title {
  color: #071f48;
}

.pricing-accordion-sub {
  color: #48627a;
}

/* ============================================
   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-head {
  text-align: center;
  align-items: center;
}

/* ============================================
   FINAL CTA — eigene Sektion, distinkt
   ============================================ */
#cta.section.final-cta {
  margin-top: 0;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  background:
    radial-gradient(circle at 16% 28%, rgba(50, 121, 249, .18), transparent 38%),
    linear-gradient(180deg, #e8f2ff 0%, #dceeff 60%, #d0e8ff 100%);
  border-top: none;
  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%;
  margin-inline: auto;
  margin-top: calc(var(--final-cta-overlap) * -1);
  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);
  line-height: 1.05;
  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);
  font-size: .62rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .11em;
}

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

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

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

/* BASISPAKET CALLOUT — visuell stärker
   ============================================ */








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

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

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

.pricing-accordion.is-open .pricing-accordion-title {
  color: #fff;
}

.pricing-accordion.is-open .pricing-accordion-sub {
  color: rgba(255, 255, 255, .62);
}

.pricing-accordion.is-open .pricing-accordion-icon {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.pricing-accordion.is-open .pricing-accordion-arrow {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

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

.pricing-accordion-sub {
  font-size: .88rem;
}

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

/* Gradient-Border via outline + background clip */
.pricing-accordion {
  border: 1.5px solid transparent;
  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;
  max-width: 800px;
  margin-inline: auto;
}

#faq.section.faq {
  /* Maßgebliche FAQ-Regel (überschreibt die weiter oben). */
  padding-bottom: calc(var(--final-cta-overlap) + var(--final-cta-clearance));
  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%);
  border-top: none;
  position: relative;
  z-index: 2;
  margin-top: 0;
  /* overflow: visible überschreibt das geerbte .section { overflow: clip },
     sonst wird der per negativem Margin nach oben überstehende Teil der
     CTA-Karte abgeschnitten. */
  overflow: visible;
  /* 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;
  padding-bottom: clamp(64px, 8vw, 110px);
}

.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));
}

.cta-card {
  background: linear-gradient(135deg, #030d1e 0%, #071227 45%, #040c1c 100%);
  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);
}

/* ============================================
   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%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   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;
  }

  .grid-bg {
    animation: none;
  }

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

  

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

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

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

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

/* ============================================
   #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-table {
  border-radius: 24px;
}

/* Control-Elemente auf 16px */
.masonry-card,
.comparison-table,
.comparison-table-v2 {
  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,
.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 {
  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;
  }

  /* 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%;
  }
}








/* 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);
  font-size: clamp(14px, .82vw, 15px);
  letter-spacing: 0;
  text-transform: none;
  color: var(--grey-1200);
  line-height: 1.46;
}

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

/* 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;
}

/* 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);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: max-content;
  padding: 3px 8px;
  border-radius: 6px;
}

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

/* Pricing-Note: Standard-Font, kleiner */
.pricing-note {
  font-family: var(--font);
  font-size: 11.5px;
  color: var(--grey-700, #6b7280);
  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;
  color: #071f48;
}

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

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

/* ============================================
   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);
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
}

/* Explizit Größen — höhere Spezifität (0-2-0) schlägt .price-card span (0-1-1) */
.price-block .setup-price {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.price-block .setup-unit {
  font-size: .9rem;
}

.price-block .setup-meta {
  font-size: .9rem;
}

.price-card .early-bird-badge {
  font-size: 10.5px;
}

/* ============================================
   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;
  border-radius: 24px;
  overflow: hidden;
  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;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  box-shadow:
    0 18px 46px -34px rgba(7, 31, 72, .24),
    inset 0 1px 0 rgba(255, 255, 255, .82);
  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;
  box-shadow:
    0 24px 62px -34px rgba(50, 121, 249, .28),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  overflow: visible;
}

.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));
  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));
  border-bottom: 1px solid rgba(50, 121, 249, .12);
  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));
  color: #2862c9;
  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));
  color: #1e4fba;
}

.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;
}

.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;
}

.pricing-accordion-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #2862c9;
  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);
  color: #1e4fba;
  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);
}





/* 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;
  }
}


/* ── NAVIGATOR PAGE STYLES ───────────────────────────────────────────── */

/* Breadcrumb */
.nav-breadcrumb {
  display: inline-block;
  font-size: .825rem;
  color: var(--grey-700, #888);
  text-decoration: none;
  margin-bottom: 1rem;
  opacity: .7;
  transition: opacity .15s;
}

.nav-breadcrumb:hover {
  opacity: 1;
}

/* Hero */
.nav-hero {
  min-height: 80vh;
}

.nav-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .nav-hero-inner {
    grid-template-columns: 1fr;
  }
}

/* Formel-Visual */
.nav-hero-formula {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.nav-formula-step {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.nav-formula-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .5;
}

.nav-formula-bubble {
  padding: .75rem 1.25rem;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.4;
}

.nav-formula-bubble.input {
  background: var(--grey-50, #f5f5f3);
  border: 1px solid var(--grey-200, #e0e0dc);
  font-style: italic;
}

.nav-formula-bubble.result {
  background: var(--blue-50, #eff6ff);
  border: 1px solid var(--blue-200, #bfdbfe);
  color: var(--blue-800, #1e40af);
}

.nav-formula-bubble.cta {
  background: var(--green-50, #f0fdf4);
  border: 1px solid var(--green-200, #bbf7d0);
  color: var(--green-800, #166534);
}

.nav-formula-arrow {
  font-size: 1.5rem;
  opacity: .3;
  text-align: center;
  margin: -.25rem 0;
}

/* Szenarien */
.nav-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.nav-scenario {
  border: 1px solid var(--c-border, rgba(0, 0, 0, .1));
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--c-surface, #fff);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-scenario-query {
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--blue-700, #1d4ed8);
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--c-border, rgba(0, 0, 0, .08));
}

.nav-scenario-path {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  counter-reset: path;
}

.nav-scenario-path li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  line-height: 1.4;
  counter-increment: path;
}

.nav-scenario-path li::before {
  content: counter(path);
  font-size: .7rem;
  font-weight: 600;
  min-width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--grey-100, #f0f0ec);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.nav-scenario-note {
  font-size: .8rem;
  opacity: .6;
  font-style: italic;
  line-height: 1.5;
  padding-top: .5rem;
  border-top: 1px solid var(--c-border, rgba(0, 0, 0, .07));
}

/* Abgrenzung */
.nav-clarify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.nav-clarify-card {
  border: 1px solid var(--c-border, rgba(0, 0, 0, .1));
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--c-surface, #fff);
}

.nav-clarify-card h3 {
  margin-bottom: .65rem;
}

.nav-clarify-card p {
  font-size: .875rem;
  line-height: 1.65;
  opacity: .8;
}

/* Content-Pack Verbindung */
.nav-packs-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-packs-link {
    grid-template-columns: 1fr;
  }
}

.nav-packs-link-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-packs-link-copy p {
  font-size: .95rem;
  line-height: 1.7;
  opacity: .8;
}

/* Pricing Card */
.nav-pricing-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border: 1px solid var(--c-border, rgba(0, 0, 0, .12));
  border-radius: 20px;
  padding: 2.5rem;
  background: var(--c-surface, #fff);
}

@media (max-width: 768px) {
  .nav-pricing-card {
    grid-template-columns: 1fr;
  }
}

.nav-pricing-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-pricing-copy p {
  font-size: .95rem;
  line-height: 1.65;
  opacity: .8;
}

.nav-pricing-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.nav-pricing-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: var(--blue-50, #eff6ff);
  border: 1px solid var(--blue-200, #bfdbfe);
  text-align: center;
  white-space: nowrap;
}

.nav-badge-tier {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-600, #2563eb);
}

.nav-badge-label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--blue-800, #1e40af);
}


/* ── LEGAL PAGE STYLES ───────────────────────────────────────────────── */

.legal-page-body {
  background: var(--grey-10);
}

.legal-page-body .site-nav a[aria-current="page"] {
  color: var(--grey-1200);
  font-weight: 600;
}

.legal-main {
  padding-top: 64px;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 38vw, 500px);
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, rgba(50, 121, 249, .1), #fff 78%);
  border-bottom: 1px solid var(--grey-100);
}

.legal-hero .grid-bg {
  opacity: .48;
  mask-image: radial-gradient(ellipse at 35% 12%, #000 12%, transparent 74%);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(70px, 10vw, 130px);
  padding-bottom: clamp(54px, 7vw, 92px);
}

.legal-hero h1 {
  max-width: 980px;
  margin-top: 22px;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: .93;
  font-weight: 520;
  letter-spacing: -.055em;
}

.legal-backlink {
  display: inline-flex;
  margin-top: 30px;
  color: var(--grey-800);
  font-size: .95rem;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.legal-backlink:hover {
  color: var(--blue);
  transform: translateX(-3px);
}

.legal-document-section {
  padding: clamp(40px, 7vw, 96px) 0 clamp(88px, 11vw, 170px);
}

.legal-document-wrap {
  display: flex;
  justify-content: center;
}

.legal-document {
  width: min(100%, 980px);
  padding: clamp(28px, 5vw, 74px);
  border: 1px solid var(--grey-100);
  border-radius: clamp(20px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 28px 80px rgba(18, 19, 23, .06);
  color: var(--grey-900);
  font-size: clamp(1rem, .35vw + .92rem, 1.12rem);
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.legal-document>h1:first-child {
  display: none;
}

.legal-document>p:first-of-type {
  margin-top: 0;
  font-size: clamp(1.1rem, .7vw + .95rem, 1.32rem);
  color: var(--grey-1200);
}

.legal-document h2,
.legal-document h3 {
  scroll-margin-top: 100px;
  color: var(--grey-1200);
  text-wrap: balance;
}

.legal-document h2 {
  margin: clamp(54px, 7vw, 82px) 0 18px;
  padding-top: 10px;
  font-size: clamp(1.65rem, 1.5vw + 1.1rem, 2.5rem);
  line-height: 1.12;
  font-weight: 540;
  letter-spacing: -.035em;
}

.legal-document h3 {
  margin: 36px 0 12px;
  font-size: clamp(1.18rem, .75vw + 1rem, 1.55rem);
  line-height: 1.25;
  font-weight: 620;
  letter-spacing: -.02em;
}

.legal-document p,
.legal-document ul,
.legal-document ol,
.legal-document table,
.legal-document blockquote {
  margin: 0 0 20px;
}

.legal-document ul,
.legal-document ol {
  padding-left: 1.4em;
}

.legal-document li {
  padding-left: .25em;
  margin: .38em 0;
}

.legal-document strong {
  color: var(--grey-1200);
  font-weight: 650;
}

.legal-document a {
  color: #175ed6;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.legal-document a:hover {
  color: var(--blue);
}

.legal-document hr {
  margin: clamp(34px, 5vw, 58px) 0;
  border: 0;
  border-top: 1px solid var(--grey-100);
}

.legal-document blockquote {
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: rgba(50, 121, 249, .07);
  color: var(--grey-900);
}

.legal-document blockquote> :last-child {
  margin-bottom: 0;
}

.legal-document table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--grey-100);
  border-radius: 14px;
}

.legal-document th,
.legal-document td {
  min-width: 180px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--grey-100);
  text-align: left;
  vertical-align: top;
}

.legal-document th {
  background: var(--grey-10);
  color: var(--grey-1200);
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.legal-document tr:last-child td {
  border-bottom: 0;
}

.legal-page-body .footer a[aria-current="page"] {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 760px) {
  .legal-main {
    padding-top: 62px;
  }

  .legal-page-body .site-nav .nav-cta {
    display: none;
  }

  .legal-hero {
    min-height: 330px;
  }

  .legal-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.7rem);
  }

  .legal-document {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .legal-document-section {
    padding-top: 20px;
  }

  .legal-document-wrap {
    padding: 0 10px;
  }

  .legal-document {
    padding: 25px 20px 36px;
  }
}
