/* ==========================================================================
   Klickprofi — Landing page styles
   Design tokens mirror the approved concept (Plus Jakarta Sans / JetBrains Mono)
   ========================================================================== */

/* --------------------------- Self-hosted fonts -------------------------- */
/* Lokal gehostet (DSGVO – keine Anfrage an Google). Latin-Subset genügt für
   Deutsch inkl. Umlauten und typografischer Zeichen. */
@font-face {
  font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 400;
  font-display: swap; src: url('/assets/fonts/plus-jakarta-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 500;
  font-display: swap; src: url('/assets/fonts/plus-jakarta-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600;
  font-display: swap; src: url('/assets/fonts/plus-jakarta-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700;
  font-display: swap; src: url('/assets/fonts/plus-jakarta-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 800;
  font-display: swap; src: url('/assets/fonts/plus-jakarta-sans-800.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500;
  font-display: swap; src: url('/assets/fonts/jetbrains-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono'; font-style: normal; font-weight: 600;
  font-display: swap; src: url('/assets/fonts/jetbrains-mono-600.woff2') format('woff2');
}

:root {
  /* Ink / text */
  --ink: #1D1D1F;
  --ink-2: #565A60;
  --ink-3: #43474D;
  --ink-soft: #3A4048;
  --muted: #8A9099;
  --muted-2: #9AA0A8;

  /* Brand */
  --blue: #1E5BA8;
  --blue-2: #3D78C2;
  --blue-light: #5E92D0;
  --blue-pale: #EAF1FA;
  --green: #2E9E5B;

  /* Surfaces */
  --surface: #F5F5F7;
  --chip: #F0F1F3;
  --card-dark: #1D1D1F;
  --dark: #0B1524;
  --darker: #070E19;

  /* Borders */
  --border: #E4E5E9;
  --border-soft: #EBECEF;
  --border-card: #E9EAEC;
  --border-hair: #EEEFF1;

  /* Type */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --maxw: 1320px;
  --gutter: clamp(22px, 5vw, 60px);
  --section-y: clamp(56px, 8.5vw, 100px);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; color: var(--ink); }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid rgba(30, 91, 168, .5);
  outline-offset: 2px;
  border-radius: 4px;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ------------------------------ Layout ---------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
}

/* Section headings shared */
.section-index {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-title {
  font-weight: 800;
  font-size: clamp(26px, 4.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0;
}

.section-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--ink-2);
}

/* ------------------------------ Buttons --------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 14px 22px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

/* Light sweeps once across the button on hover — reads as polish, not gimmick. */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}
.btn:hover::after { animation: btn-sheen .75s var(--ease); }
@keyframes btn-sheen { to { transform: translateX(120%); } }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px -10px rgba(30, 91, 168, .7); }
.btn-primary:hover { background: #1a5197; box-shadow: 0 14px 30px -10px rgba(30, 91, 168, .75); }

.btn-secondary { background: var(--chip); color: var(--ink); }
.btn-secondary:hover { background: #e7e9ec; }

.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { background: #f1f3f6; }

.btn-sm { padding: 11px 20px; font-size: 15px; }
.btn-lg { padding: 16px 26px; }
.btn-block { display: flex; width: 100%; }

/* ------------------------------ Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
/* Lifts subtly off the page once the user scrolls — a quiet depth cue. */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(16, 26, 40, .04), 0 12px 34px -14px rgba(16, 26, 40, .22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { flex-shrink: 0; }
.brand-name {
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.02em;
}
.brand-accent { color: var(--blue); }

.nav-desktop { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 36px); }
.navlink {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-3);
}
.navlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0;
  background: var(--blue);
  transition: width .3s var(--ease);
}
.navlink:hover::after { width: 100%; }
/* Scroll-spy: the section you're in stays underlined. */
.navlink.is-current { color: var(--ink); }
.navlink.is-current::after { width: 100%; background: var(--blue); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  padding: 6px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--gutter) 22px;
  border-top: 1px solid var(--border-soft);
}
.navlink-mobile {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-3);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile .btn { margin-top: 12px; }

/* ------------------------------- Hero ----------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 96px) clamp(56px, 8vw, 88px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 26px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 99px; background: var(--blue); }

.hero-title {
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 18px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
}
.hero-trust svg { flex-shrink: 0; }

/* Hero visual — device duo (decorative) */
.hero-visual { position: relative; padding: 12px; }

/* Reference showcase — clickable, auto-cycling browser + phone mockup */
.ref-showcase {
  position: relative;
  display: block;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  outline: none;
}
.ref-showcase:focus-visible { box-shadow: 0 0 0 3px rgba(30, 91, 168, .45); border-radius: 18px; }

/* Browser device frame */
.browser-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 34px 70px -22px rgba(16, 26, 40, .34), 0 3px 10px rgba(16, 26, 40, .06);
}
/* Safari-style chrome */
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(#FBFBFC, #EFF0F2);
  border-bottom: 1px solid var(--border-soft);
}
.browser-dots { display: flex; gap: 7px; flex-shrink: 0; }
.dot { width: 11px; height: 11px; border-radius: 99px; }
.dot-red { background: #ED6A5E; }
.dot-yellow { background: #F5BF4F; }
.dot-green { background: #61C554; }

.browser-address {
  flex: 1;
  min-width: 0;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border-hair);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(16, 26, 40, .05);
}
.browser-lock { color: var(--muted-2); flex-shrink: 0; }
.browser-url {
  font-size: 11px; color: var(--ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: opacity .3s var(--ease);
}

.ref-visit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .02em;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.ref-showcase:hover .ref-visit,
.ref-showcase:focus-visible .ref-visit { opacity: 1; transform: none; }

.browser-shot {
  aspect-ratio: 1440 / 900;
  overflow: hidden;
  background: var(--surface);
}
.browser-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity .45s var(--ease), transform 6s linear;
}
.ref-showcase:hover .browser-shot img { transform: scale(1.03); }

/* Phone device frame — true phone aspect (~9 : 19.5) */
.phone-card {
  position: absolute;
  bottom: -30px; right: -10px;
  width: 116px;
  border-radius: 22px;
  border: 5px solid var(--ink);
  background: var(--ink);
  box-shadow: 0 26px 46px -14px rgba(16, 26, 40, .44);
  transition: transform .4s var(--ease);
}
.ref-showcase:hover .phone-card { transform: translateY(-5px); }
.phone-screen { border-radius: 17px; overflow: hidden; background: #fff; }
/* Slim status bar on top so the notch never overlaps the screenshot */
.phone-notch {
  height: 19px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch span {
  display: block;
  width: 32px; height: 5px;
  border-radius: 99px;
  background: var(--ink);
}
.phone-shot { aspect-ratio: 390 / 800; overflow: hidden; background: var(--surface); }
.phone-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity .45s var(--ease);
}

/* Website → inquiry bridge: a compact process preview beside the references. */
.request-bridge {
  position: relative;
  margin: 36px 0 0;
  padding: 18px 18px 17px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 40px -28px rgba(16, 26, 40, .34);
}
.request-bridge-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}
.request-bridge-kicker {
  display: block;
  color: var(--blue);
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.request-bridge-title {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}
.request-bridge-badge {
  flex-shrink: 0;
  padding: 5px 7px;
  border-radius: 6px;
  color: var(--muted);
  background: var(--chip);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.request-flow {
  display: flex;
  align-items: center;
  gap: 7px;
}
.request-screen {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
}
.request-screen-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 8px;
  border-bottom: 1px solid var(--border-hair);
  background: #F8F9FA;
}
.request-screen-brand {
  overflow: hidden;
  color: var(--ink-2);
  font-weight: 700;
  font-size: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.request-screen-step,
.request-row-time {
  color: var(--muted-2);
  font-size: 7px;
}
.request-form-content { padding: 11px 10px 10px; }
.request-form-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 7px;
  font-weight: 700;
}
.request-form-content strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 9px;
  line-height: 1.25;
}
.request-form-line {
  display: block;
  width: 66%;
  height: 4px;
  margin-bottom: 5px;
  border-radius: 4px;
  background: var(--border);
}
.request-form-line-wide { width: 88%; background: var(--blue-pale); }
.request-form-option {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  padding: 6px;
  border: 1px solid #D8E5F4;
  border-radius: 5px;
  color: var(--ink-2);
  font-size: 7px;
  font-weight: 600;
}
.request-form-option i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--blue);
}
.request-status {
  padding: 3px 5px;
  border-radius: 4px;
  color: #247B48;
  background: #E7F4EC;
  font-size: 7px;
  font-weight: 800;
}
.request-inbox-content { padding: 5px 6px; }
.request-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 3px;
  border-bottom: 1px solid var(--border-hair);
}
.request-row:last-child { border-bottom: 0; }
.request-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 6px;
  color: var(--blue);
  background: var(--blue-pale);
  font-size: 7px;
  font-weight: 800;
}
.request-avatar-muted { color: var(--muted); background: var(--chip); }
.request-row-copy { min-width: 0; flex: 1; }
.request-row-copy strong,
.request-row-copy small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.request-row-copy strong { color: var(--ink-2); font-size: 7px; }
.request-row-copy small { margin-top: 2px; color: var(--muted-2); font-size: 6px; }
.request-flow-arrow {
  flex-shrink: 0;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
}
.request-bridge-copy {
  margin: 13px 0 0;
  color: var(--ink-2);
  font-size: 11px;
  line-height: 1.45;
}
.request-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.request-bridge-link:hover { text-decoration: underline; }

/* Bars still used by the before/after slider mockup */
.bar { height: 6px; border-radius: 9px; background: rgba(255, 255, 255, .45); margin-bottom: 6px; }
.bar.dim { background: rgba(255, 255, 255, .3); }

/* "Rundum sorglos" badge with live pulse */
.ref-chip {
  position: absolute;
  top: -14px; right: -14px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(16, 26, 40, .14);
  padding: 12px 16px;
}
.ref-chip-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: #E7F4EC;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ref-chip-dot {
  width: 11px; height: 11px; border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(46, 158, 91, .5);
  animation: ref-pulse 2.4s var(--ease) infinite;
}
@keyframes ref-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 158, 91, .5); }
  70% { box-shadow: 0 0 0 7px rgba(46, 158, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 158, 91, 0); }
}
.ref-chip-label { display: block; font-weight: 800; font-size: 14px; line-height: 1; }
.ref-chip-sub { display: block; font-size: 10px; color: var(--muted); margin-top: 4px; }

/* Carousel dots */
.ref-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.ref-dot {
  width: 26px; height: 5px;
  padding: 0;
  border: none;
  border-radius: 99px;
  background: var(--border);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background .3s var(--ease);
}
.ref-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--blue);
  border-radius: inherit;
}
.ref-dot.is-active { background: var(--blue-pale); }
.ref-dot.is-timing::after { width: 100%; transition: width var(--ref-interval, 5s) linear; }
@media (prefers-reduced-motion: reduce) {
  .ref-dot.is-active::after { width: 100%; }
  .ref-chip-dot { animation: none; }
}

/* --------------------------- Problem / B-A ------------------------------ */
.problem-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(32px, 4.5vw, 56px);
  align-items: center;
}
.problem-copy .section-title { margin-bottom: 20px; }
.problem-copy .section-lead { margin-bottom: 22px; }

.slider-hint {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
}
.slider-hint svg { flex-shrink: 0; }

.ba-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px -18px rgba(16, 26, 40, .26);
  background: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-action: none;
  cursor: ew-resize;
  -webkit-user-drag: none;
}
/* Ensure no descendant (before/after mockups) becomes selectable during drag */
.ba-frame * { 
  -webkit-user-select: none; 
  user-select: none; 
  -webkit-user-drag: none;
  pointer-events: none;
}

/* AFTER layer */
.ba-after { position: absolute; inset: 0; background: #fff; }
.ba-after-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; border-bottom: 1px solid var(--border-hair);
}
.ba-brand { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 13px; }
.ba-logo { width: 16px; height: 16px; border-radius: 5px; background: var(--blue); }
.ba-nav { display: flex; align-items: center; gap: 14px; }
.ba-navline { width: 22px; height: 4px; border-radius: 9px; background: #E2E4E8; }
.ba-badge { font-weight: 700; font-size: 9px; color: #fff; background: var(--green); padding: 5px 11px; border-radius: 6px; }

.ba-after-hero { padding: 34px 26px; background: linear-gradient(140deg, var(--blue), var(--blue-2)); }
.ba-after-title { font-weight: 800; font-size: 24px; line-height: 1.15; color: #fff; margin-bottom: 11px; }
.bar-52 { width: 52%; height: 7px; background: rgba(255, 255, 255, .4); margin-bottom: 16px; }
.ba-after-btn { display: inline-block; font-weight: 700; font-size: 12px; color: var(--blue); background: #fff; padding: 10px 18px; border-radius: 8px; }

.ba-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 22px 26px; }
.ba-card { border: 1px solid var(--border-hair); border-radius: 11px; padding: 16px 12px; }
.ba-card-icon { display: block; width: 30px; height: 30px; border-radius: 8px; background: var(--blue-pale); margin-bottom: 10px; }
.ba-card .bar { margin-bottom: 6px; background: #EAEBED; }
.ba-card .bar.faint { background: var(--border-hair); margin-bottom: 0; }
.bar-80 { width: 80%; height: 5px; }
.bar-55 { width: 55%; height: 5px; }

/* BEFORE layer (clipped) */
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
}
.ba-before-inner {
  position: absolute; inset: 0;
  background: #ECE7DC;
  padding: 18px;
  font-family: Georgia, 'Times New Roman', serif;
}
.ba-before-head { text-align: center; border-bottom: 3px double #B4A886; padding-bottom: 9px; margin-bottom: 12px; }
.ba-before-name { font: bold 21px Georgia, serif; color: #5A3E1B; }
.ba-before-since { font: italic 12px Georgia, serif; color: #8A7B5F; }
.ba-before-cols { display: flex; gap: 14px; }
.ba-before-sidebar { width: 104px; flex-shrink: 0; }
.ba-before-img {
  background: #C9BC9C; height: 76px;
  display: flex; align-items: center; justify-content: center;
  color: #6b5c3f; font: 12px serif; border: 1px solid #A89877;
}
.ba-before-link { font: 12px serif; color: #153a9e; text-decoration: underline; margin-top: 4px; }
.ba-before-sidebar .ba-before-link:first-of-type { margin-top: 9px; }
.ba-before-main { flex: 1; }
.ba-before-text { font: 13px/1.5 Georgia, serif; color: #3a3226; }
.ba-before-rule { margin-top: 10px; height: 9px; background: #D6CBAE; }
.ba-before-rule.short { margin-top: 6px; width: 82%; }
.ba-before-btn {
  margin-top: 14px; display: inline-block;
  background: #B02D2D; color: #fff; font: bold 11px serif;
  padding: 6px 11px; border: 2px outset #d66;
}
.ba-before-counter { margin-top: 12px; font: 11px serif; color: #8A7B5F; }

/* Divider + handle */
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #fff; transform: translateX(-1px);
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ba-handle-knob {
  width: 40px; height: 40px; border-radius: 99px;
  background: #fff; box-shadow: 0 3px 12px rgba(16, 26, 40, .3);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .3s var(--ease);
}
.ba-frame:hover .ba-handle-knob,
.ba-frame:focus-visible .ba-handle-knob {
  box-shadow: 0 3px 12px rgba(16, 26, 40, .3), 0 0 0 6px rgba(30, 91, 168, .14);
}
/* Attention pulse the first time the comparison scrolls into view (set from JS). */
.ba-frame.hint .ba-handle-knob { animation: ba-knob-pulse 1.5s var(--ease) 2; }
@keyframes ba-knob-pulse {
  0%, 100% { box-shadow: 0 3px 12px rgba(16, 26, 40, .3); }
  50%      { box-shadow: 0 3px 12px rgba(16, 26, 40, .3), 0 0 0 10px rgba(30, 91, 168, .18); }
}

.ba-label {
  position: absolute; top: 14px;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 6px; pointer-events: none;
}
.ba-label-before { left: 14px; color: #5A3E1B; background: rgba(236, 231, 220, .9); }
.ba-label-after { right: 14px; color: #fff; background: rgba(30, 91, 168, .9); }

/* Static mobile comparison — hidden by default */
.ba-static, .ba-static-note { display: none; }

/* ------------------------------ Ablauf ---------------------------------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 320px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.step { padding: 34px; border-right: 1px solid var(--border); }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; border-right: none; }
.step-num { display: block; font-size: 13px; color: var(--blue); margin-bottom: 22px; }
.step-title { font-weight: 700; font-size: 23px; letter-spacing: -.01em; margin-bottom: 12px; }
.step-text { font-size: 16px; line-height: 1.6; color: var(--ink-2); }

/* ------------------------------ Preise ---------------------------------- */
.pakete-head { text-align: center; margin-bottom: 30px; }
.pakete-head .section-index { margin-bottom: 16px; }
.pakete-lead { max-width: 620px; margin: 14px auto 0; }

.billing-toggle {
  display: flex;
  gap: 4px;
  width: max-content;
  margin: 0 auto clamp(32px, 4vw, 44px);
  background: #E5E6EA;
  padding: 5px;
  border-radius: 14px;
}
.billing-btn {
  flex: 1;
  white-space: nowrap;
  padding: 11px 22px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #6E747C;
  background: transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.billing-btn.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(16, 26, 40, .12);
}

.lift { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.lift:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(16, 26, 40, .12); }

/* Flagship offer card */
.offer-card {
  position: relative;
  isolation: isolate;
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  box-shadow: 0 26px 60px -30px rgba(16, 26, 40, .3);
  overflow: hidden;
}
/* Cursor-tracking spotlight — driven from main.js via --mx/--my. */
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, -20%), rgba(30, 91, 168, .09), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.offer-card:hover::before { opacity: 1; }

.offer-main { display: grid; grid-template-columns: 1fr 1fr; }
.offer-intro { padding: clamp(30px, 3.6vw, 46px); }
.offer-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 6px 12px; border-radius: 99px;
  margin-bottom: 18px;
}
.offer-name { font-weight: 800; font-size: clamp(24px, 3vw, 32px); line-height: 1.12; letter-spacing: -.02em; margin-bottom: 12px; }
.offer-desc { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin-bottom: 22px; max-width: 34ch; }

.offer-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 10px; margin-bottom: 22px; }
.price-value { display: flex; align-items: baseline; gap: 5px; }
.price-amount { font-weight: 800; font-size: clamp(42px, 5.5vw, 54px); line-height: 1; letter-spacing: -.02em; }
.price-period { font-weight: 500; font-size: 16px; color: var(--muted); }
.offer-setup { width: 100%; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); }

.offer-cta { width: 100%; }
.offer-cta-note { margin-top: 12px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); text-align: center; }

.offer-list-wrap {
  padding: clamp(30px, 3.6vw, 46px);
  background: var(--surface);
  border-left: 1px solid var(--border-soft);
}
.offer-list-title {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.offer-features { display: flex; flex-direction: column; gap: 15px; }
.offer-features li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.offer-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 99px;
  background: var(--blue-pale) no-repeat center / 13px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%231E5BA8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* Add-ons */
.addons { max-width: 940px; margin: clamp(28px, 3.5vw, 40px) auto 0; }
.addons-title {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: 18px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 14px;
}
.addon {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 22px 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.addon:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(16, 26, 40, .09); border-color: var(--border); }
.addon-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--blue-pale);
  margin-bottom: 16px;
}
.addon-name { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.addon-desc { font-size: 13px; line-height: 1.5; color: var(--ink-2); margin-bottom: 16px; flex: 1; }
.addon-price {
  font-weight: 700; font-size: 18px; color: var(--ink);
  display: flex; align-items: baseline; gap: 6px;
}
.addon-price span { font-weight: 500; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }

.price-note {
  text-align: center;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 30px;
}

/* Kaufen panel */
.buy-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 22px;
  padding: 44px 46px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.buy-title { font-weight: 800; font-size: 26px; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 12px; }
.buy-text { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin-bottom: 18px; }
.buy-price { display: flex; align-items: baseline; gap: 8px; }
.buy-price .mono { font-size: 12px; text-transform: uppercase; color: var(--muted-2); }
.buy-amount { font-weight: 800; font-size: 34px; line-height: 1; letter-spacing: -.02em; }
.buy-note { margin-top: 14px; font-size: 11px; letter-spacing: .04em; color: var(--muted-2); line-height: 1.5; }
.buy-cta { white-space: nowrap; flex-shrink: 0; }

/* ------------------------------ Vorteile -------------------------------- */
.vorteile-title { max-width: 560px; margin-bottom: clamp(32px, 5vw, 56px); }
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.benefit { padding: 32px 28px; border-right: 1px solid var(--border); }
.benefit:first-child { padding-left: 0; }
.benefit:last-child { padding-right: 0; border-right: none; }
.benefit-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-pale);
  margin-bottom: 20px;
}
.benefit-title { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.benefit-text { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

/* ------------------------------ Über uns -------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(32px, 4vw, 52px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.about-panel {
  aspect-ratio: 1 / 1.08;
  border-radius: 22px;
  background: linear-gradient(155deg, var(--blue), #153F73);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; padding: 30px; text-align: center;
}
.about-panel-name { font-weight: 800; font-size: 30px; line-height: 1; color: #fff; }
.about-panel-name span { color: #9BC0E8; }
.about-panel-tag {
  display: block;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: #9BB6D6; margin-top: 12px;
}
.about-title { font-weight: 800; font-size: clamp(24px, 3.6vw, 36px); line-height: 1.1; margin-bottom: 20px; }
.about-copy .section-lead { line-height: 1.7; }

/* -------------------------------- FAQ ----------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 19px);
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.chev { flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-a {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 640px;
}

/* -------------------------------- CTA ----------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-block: clamp(64px, 10vw, 110px);
}
.cta-glow {
  position: absolute;
  top: -140px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 99px;
  background: radial-gradient(circle, rgba(30, 91, 168, .45), transparent 70%);
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.cta-inner { position: relative; max-width: 520px; }
.cta-eyebrow {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 22px;
}
.cta-title {
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 20px;
}
.cta-lead { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.6; color: #9BA6B4; margin-bottom: 26px; }
.cta-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.cta-points li {
  position: relative; padding-left: 28px;
  font-size: 15px; line-height: 1.4; color: #C4CDD8;
}
.cta-points li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 99px;
  background: rgba(46, 158, 91, .16) no-repeat center / 12px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233FBE74' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.cta-contact {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 12px; letter-spacing: .04em; color: #6C7787;
}
.cta-contact a:hover { color: #9BB6D6; }
.cta-sep { color: #33404F; }

/* Lead form card */
.cta-form-wrap { position: relative; }
.lead-form {
  background: #fff;
  border-radius: 22px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .5);
  display: flex; flex-direction: column; gap: 16px;
}
/* [hidden] muss display:flex überstimmen, sonst bleibt das Formular nach Erfolg sichtbar */
.lead-form[hidden], .lead-success[hidden] { display: none; }
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-form-title { font-weight: 800; font-size: 17px; color: var(--ink); margin-bottom: 2px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label, .field-legend { font-weight: 600; font-size: 13px; color: var(--ink-2); }
.field label span, .field-legend span { color: var(--muted); font-weight: 500; }
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%;
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.lead-form textarea { resize: vertical; min-height: 76px; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--muted-2); }
.lead-form input:focus, .lead-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 91, 168, .14);
}

/* Anliegen chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  font-weight: 600; font-size: 14px; color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9px 15px;
  transition: all .2s var(--ease);
}
.chip:hover span { border-color: var(--blue-light); }
.chip input:checked + span {
  color: #fff; background: var(--blue); border-color: var(--blue);
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(30, 91, 168, .2); }

/* Privacy note (no consent checkbox needed for a basic contact form) */
.lead-privacy { font-size: 12px; line-height: 1.5; color: var(--muted); text-align: center; margin-top: -2px; }
.lead-privacy a { color: var(--blue); text-decoration: underline; }

.lead-submit { margin-top: 2px; }
.lead-submit.is-loading { opacity: .7; pointer-events: none; }
.lead-submit.is-loading .lead-submit-label::after {
  content: " …";
}

.lead-status { font-size: 14px; line-height: 1.5; margin-top: -4px; }
.lead-status.is-error { color: #C0392B; }

.lead-alt { text-align: center; font-size: 13px; color: var(--muted); margin-top: -2px; }
.lead-alt a { color: var(--blue); font-weight: 600; }

/* Success state */
.lead-success {
  background: #fff;
  border-radius: 22px;
  padding: clamp(32px, 4vw, 46px) clamp(24px, 3vw, 34px);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .5);
  text-align: center;
}
.lead-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 99px;
  background: #E7F4EC; margin-bottom: 18px;
}
.lead-success-title { font-weight: 800; font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.lead-success-text { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin-bottom: 22px; }

/* ------------------------------ Footer ---------------------------------- */
.site-footer { background: var(--darker); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 32px;
}
.footer-name { font-weight: 800; font-size: 18px; color: #fff; }
.footer-name span { color: var(--blue-light); }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: #8A94A2; }
.footer-nav a:hover { color: #fff; }
.footer-link-btn {
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; font-size: 13px; color: #8A94A2; cursor: pointer;
}
.footer-link-btn:hover { color: #fff; }
.footer-copy { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #5A6472; }

/* ---------------------------- Reveal anim ------------------------------- */
/* Gated behind `.js`: without JavaScript everything stays visible (no blank
   sections for crawlers or no-JS users). */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition: opacity .75s var(--ease), transform .75s var(--ease), filter .75s var(--ease);
  will-change: opacity, transform, filter;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

/* =========================== Responsive ================================= */
@media (max-width: 1023px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-top: 20px; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { max-width: 620px; }
  .problem-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-panel { max-width: 300px; }
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit { padding: 28px 24px; }
  .benefit:nth-child(2) { padding-right: 0; border-right: none; }
  .benefit:nth-child(3) { padding-left: 0; border-top: 1px solid var(--border); }
  .benefit:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 767px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open .nav-mobile { display: flex; }

  /* Mobile: keep the reference showcase, drop the overlapping phone */
  .hero-visual { max-width: none; margin-top: 26px; padding: 0; }
  .phone-card { display: none; }
  .ref-chip { top: -12px; right: -6px; padding: 10px 14px; }
  .ref-dots { margin-top: 26px; }
  .request-bridge { margin-top: 30px; padding: 16px 14px; }
  .request-bridge-title { font-size: 15px; }
  .request-flow { flex-direction: column; align-items: stretch; gap: 4px; }
  .request-screen { flex: none; width: 100%; }
  .request-flow-arrow { align-self: center; transform: rotate(90deg); }
  .hero { padding-block: 34px 38px; }

  /* Before/After: swap interactive slider for static side-by-side */
  .ba-interactive, .slider-hint { display: none; }
  .ba-static {
    display: flex;
    gap: 10px;
    margin-top: 4px;
  }
  .ba-static-col { flex: 1; position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
  .ba-static .ba-label { position: absolute; top: 8px; font-size: 8px; padding: 3px 6px; z-index: 2; }
  .ba-static-before {
    background: #ECE7DC; padding: 12px 10px; min-height: 150px;
    font-family: Georgia, serif;
  }
  .ba-static-before .ba-before-head { border-bottom: 2px double #B4A886; padding-bottom: 5px; margin-bottom: 7px; }
  .ba-static-before .ba-before-name { font: bold 12px Georgia, serif; }
  .ba-static-before .ba-before-link { font-size: 10px; margin-top: 2px; }
  .ba-static-before .ba-before-btn { margin-top: 7px; font-size: 8px; padding: 3px 6px; border-width: 1px; }
  .ba-static-after { min-height: 150px; background: #fff; }
  .ba-static-after .ba-after-top { padding: 8px 10px; }
  .ba-static-after .ba-brand { font-size: 9px; }
  .ba-static-after .ba-logo { width: 11px; height: 11px; }
  .ba-static-after .ba-after-hero { padding: 14px 10px; }
  .ba-static-after .ba-after-title { font-size: 11px; margin-bottom: 6px; }
  .ba-static-after .ba-after-btn { font-size: 7px; padding: 4px 7px; }
  .ba-static-tiles { display: flex; gap: 6px; padding: 9px 10px; }
  .ba-static-tiles span { flex: 1; height: 24px; border-radius: 6px; background: var(--chip); }
  .ba-static-note { display: block; margin-top: 16px; font-size: 14px; }

  .steps { grid-template-columns: 1fr; border-top: none; }
  .step { padding: 20px 0; border-right: none; border-top: 1px solid var(--border); }
  .step:first-child { padding-left: 0; }
  .step-num { margin-bottom: 10px; }
  .step-title { font-size: 18px; margin-bottom: 6px; }
  .step-text { font-size: 15px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }

  .offer-main { grid-template-columns: 1fr; }
  .offer-list-wrap { border-left: none; border-top: 1px solid var(--border-soft); }
  .addons-grid { grid-template-columns: 1fr 1fr; }

  .field-row { grid-template-columns: 1fr; }

  .buy-card { flex-direction: column; align-items: flex-start; gap: 22px; padding: 30px 24px; }
  .buy-cta { width: 100%; }

  .benefits { grid-template-columns: 1fr; border-top: none; }
  .benefit { padding: 18px 0; border-right: none; border-top: 1px solid var(--border); }
  .benefit:nth-child(2), .benefit:nth-child(3) { padding-left: 0; }
  .benefit-icon { display: none; }

  .cta-contact { flex-direction: column; gap: 8px; }
  .cta-sep { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------------------------- Legal pages ------------------------------- */
.legal { padding-block: clamp(48px, 7vw, 88px); max-width: 820px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 14px; color: var(--blue);
  margin-bottom: 28px;
}
.legal h1 {
  font-weight: 800;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}
.legal h2 {
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: -.01em;
  margin: 40px 0 12px;
}
.legal h3 { font-weight: 700; font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--ink-2); }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--ink); }
.legal .placeholder {
  background: #FFF4E5;
  color: #8A5A12;
  border: 1px dashed #E0B673;
  border-radius: 6px;
  padding: 1px 7px;
  font-family: var(--font-mono);
  font-size: .85em;
  font-weight: 500;
}
.legal-updated {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* --------------------- Reduced motion / print --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
  .btn:hover, .lift:hover { transform: none; }
  .btn::after, .offer-card::before { display: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
