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

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1a5197; }

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

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

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

.browser-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 60px -20px rgba(16, 26, 40, .28);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 15px;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}
.dot { width: 9px; height: 9px; border-radius: 99px; }
.dot-red { background: #E2574C; }
.dot-yellow { background: #F4BE4F; }
.dot-green { background: #5FC57E; }
.browser-url { margin-left: 10px; font-size: 10px; color: #9AA0A8; }

.browser-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-hair);
}
.mini-brand { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 12px; }
.mini-logo { width: 15px; height: 15px; border-radius: 5px; background: var(--blue); }
.mini-cta {
  font-weight: 700; font-size: 9px; color: #fff;
  background: var(--green); padding: 5px 10px; border-radius: 6px;
}

.mini-hero { padding: 26px 20px; background: linear-gradient(140deg, var(--blue), var(--blue-2)); }
.mini-hero-title { font-weight: 800; font-size: 19px; line-height: 1.2; color: #fff; margin-bottom: 9px; }
.bar { height: 6px; border-radius: 9px; background: rgba(255, 255, 255, .45); margin-bottom: 6px; }
.bar.dim { background: rgba(255, 255, 255, .3); }
.bar-64 { width: 64%; }
.bar-46 { width: 46%; margin-bottom: 16px; }
.mini-hero-btn {
  display: inline-block; font-weight: 700; font-size: 10px;
  color: var(--blue); background: #fff; padding: 8px 14px; border-radius: 7px;
}

.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 18px 20px; }
.mini-tile {
  border: 1px solid var(--border-hair); border-radius: 9px;
  padding: 13px 9px; text-align: center;
}
.mini-tile-icon { display: block; width: 24px; height: 24px; border-radius: 7px; background: var(--blue-pale); margin: 0 auto 8px; }
.mini-tile-line { display: block; width: 74%; height: 4px; border-radius: 9px; background: #E9EAEC; margin: 0 auto; }

.phone-card {
  position: absolute;
  bottom: -24px; right: -6px;
  width: 118px;
  border-radius: 20px;
  border: 5px solid var(--ink);
  background: var(--ink);
  box-shadow: 0 24px 44px -14px rgba(16, 26, 40, .4);
}
.phone-screen { border-radius: 15px; overflow: hidden; background: #fff; }
.phone-notch { height: 22px; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.phone-notch span { width: 34px; height: 4px; border-radius: 9px; background: #D3D6DB; }
.phone-hero { padding: 12px 11px; background: linear-gradient(140deg, var(--blue), var(--blue-2)); }
.phone-hero-title { font-weight: 800; font-size: 10px; line-height: 1.2; color: #fff; margin-bottom: 6px; }
.phone-hero-btn { display: inline-block; font-weight: 700; font-size: 7px; color: var(--blue); background: #fff; padding: 4px 7px; border-radius: 5px; }
.phone-body { padding: 10px 11px; display: flex; flex-direction: column; gap: 6px; }
.phone-body span { height: 26px; border-radius: 6px; background: var(--chip); }

.offer-chip {
  position: absolute;
  top: -14px; left: -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;
}
.offer-chip-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: #E7F4EC;
  display: flex; align-items: center; justify-content: center;
}
.offer-chip-title { display: block; font-weight: 800; font-size: 14px; line-height: 1; }
.offer-chip-sub { display: block; font-size: 10px; color: var(--muted); margin-top: 4px; }

/* --------------------------- 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;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

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

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

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

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 34px 30px;
}
.lift { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.lift:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 26, 40, .10); }

.price-card-featured {
  position: relative;
  background: var(--card-dark);
  border-color: var(--card-dark);
  color: #fff;
  box-shadow: 0 24px 50px -18px rgba(16, 26, 40, .45);
}
.price-badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 99px;
}

.price-name { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.price-value { display: flex; align-items: baseline; gap: 5px; }
.price-amount { font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: -.02em; }
.price-period { font-weight: 500; font-size: 15px; color: var(--muted); }
.price-card-featured .price-period { color: #8B9099; }
.price-setup { font-size: 11px; text-transform: uppercase; color: var(--muted-2); margin: 8px 0 24px; }
.price-card-featured .price-setup { color: #7C828B; }

.price-rule { border: none; height: 1px; background: var(--border-hair); margin: 0 0 22px; }
.price-card-featured .price-rule { background: #33343A; }

.price-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.price-features li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.price-card-featured .price-features li { color: #D8DADE; }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 17px; height: 17px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%231E5BA8' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.price-card-featured .price-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%235E92D0' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.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-cta { white-space: nowrap; }

/* ------------------------------ 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-inner { position: relative; max-width: 680px; }
.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, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 20px;
}
.cta-lead { font-size: clamp(16px, 1.8vw, 19px); line-height: 1.6; color: #9BA6B4; margin-bottom: 36px; }
.cta-contact {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 36px;
  font-size: 12px; letter-spacing: .04em; color: #6C7787;
}
.cta-contact a:hover { color: #9BB6D6; }
.cta-sep { color: #33404F; }

/* ------------------------------ 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; }
.footer-nav a { font-size: 13px; color: #8A94A2; }
.footer-nav a: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(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================== Responsive ================================= */
@media (max-width: 1023px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-top: 20px; }
  .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; }

  .hero-visual { display: none; }
  .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; }

  .price-grid { grid-template-columns: 1fr; gap: 14px; }
  .price-card { padding: 24px 22px; }
  .price-card-featured { margin-top: 11px; }

  .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; transition: none; }
  .btn:hover, .lift:hover { transform: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
