/* ============================================================
   Wachstum Medien — Landing Page Styles
   Brand: Dark navy bg · Gold accent · Brown secondary · Beige light
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy:      #0E2233;
  --navy-2:    #13293D;   /* card surface on dark */
  --navy-3:    #1B354B;   /* hover / borders on dark */
  --gold:      #E0A340;
  --gold-2:    #F0B962;   /* lighter gold for hover */
  --gold-soft: rgba(224,163,64,.12);
  --brown:     #6B4F3A;
  --beige:     #F5EFE4;
  --beige-2:   #FBF8F2;
  --white:     #FFFFFF;
  --muted:     #9FB0C0;   /* muted text on dark */
  --ink:       #182A38;   /* dark text on light */
  --ink-muted: #5A6B78;   /* muted text on light */
  --line:      rgba(255,255,255,.10);
  --line-dark: rgba(24,42,56,.12);

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 40px -18px rgba(0,0,0,.55);
  --shadow-light: 0 16px 36px -20px rgba(24,42,56,.30);
  --maxw:      1160px;

  --font-head: "Space Grotesk", system-ui, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { color: var(--muted); }
.gold-text { color: var(--gold); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.section--dark  { background: var(--navy); }
.section--navy2 { background: var(--navy-2); }
.section--beige { background: var(--beige); color: var(--ink); }
.section--beige p { color: var(--ink-muted); }
.section--beige h2, .section--beige h3 { color: var(--ink); }

.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  padding: 7px 14px; margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--gold-soft);
}
.section--beige .eyebrow { border-color: var(--line-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--gold); color: #2A1C08;
  box-shadow: 0 10px 26px -8px rgba(224,163,64,.55);
}
.btn--primary:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--white); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,34,51,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark { width: 30px; height: 30px; flex: none; }
.logo__text {
  font-family: var(--font-head); font-weight: 700; font-size: 1.06rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--white);
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(40px,6vw,72px) 0 clamp(56px,7vw,88px); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 88% 8%, rgba(224,163,64,.16), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(107,79,58,.20), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--gold); display: inline-block; }
.hero__sub { font-size: 1.12rem; max-width: 540px; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 22px; font-size: .92rem; color: var(--muted);
}
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .7; }
.stars { color: var(--gold); letter-spacing: 2px; }
.trust-strip strong { color: var(--white); font-weight: 600; }

/* Video / VSL container */
.video-wrap { position: relative; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; background: var(--navy-2);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.video-frame img, .video-frame iframe, .video-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0;
}
.video-frame .placeholder {
  position: absolute; inset: 0; display: grid; place-content: center; gap: 14px;
  text-align: center; padding: 20px;
  background:
    linear-gradient(135deg, rgba(224,163,64,.14), transparent 55%),
    var(--navy-2);
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto;
  background: var(--gold); display: grid; place-content: center;
  box-shadow: 0 10px 30px -6px rgba(224,163,64,.6);
}
.play-btn svg { width: 26px; height: 26px; margin-left: 4px; }
.video-frame .placeholder span { color: var(--muted); font-size: .9rem; }

/* ---------- Lead form ---------- */
.lead-form {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow);
}
.lead-form--light { background: var(--white); border-color: var(--line-dark); box-shadow: var(--shadow-light); }
.lead-form h3 { margin-bottom: 4px; }
.lead-form .form-hint { font-size: .9rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: .85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--white);
}
.lead-form--light .field label { color: var(--ink); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem;
  padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--navy); color: var(--white);
  border: 1px solid var(--line-dark); border-color: var(--line);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form--light .field input, .lead-form--light .field textarea {
  background: var(--beige-2); color: var(--ink); border-color: var(--line-dark);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .8; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { resize: vertical; min-height: 84px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 18px; }
.consent input { margin-top: 4px; width: 18px; height: 18px; flex: none; accent-color: var(--gold); }
.consent label { font-size: .82rem; color: var(--muted); font-weight: 400; }
.consent a { color: var(--gold); text-decoration: underline; }
.lead-form--light .consent label { color: var(--ink-muted); }
.form-foot { margin-top: 14px; font-size: .8rem; color: var(--muted); text-align: center; }
.lead-form--light .form-foot { color: var(--ink-muted); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Social proof bar ---------- */
.proof-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-bar__title { text-align: center; color: var(--muted); font-size: .95rem; margin-bottom: 26px; }
.proof-bar__title strong { color: var(--white); }
/* Client logo wall — uniform monochrome marks on dark, airy & borderless.
   Flexbox so a partial last row centers cleanly. */
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 18px;
}
.logo-tile {
  flex: 0 0 calc(100% / 3 - 18px);   /* mobile: 3 per row */
  height: 46px;
  display: grid;
  place-items: center;
}
@media (min-width: 600px) { .logo-tile { flex-basis: calc(100% / 4 - 18px); } }       /* tablet: 4 */
@media (min-width: 980px) { .logos { gap: 38px 26px; } .logo-tile { flex-basis: calc(100% / 6 - 26px); } } /* desktop: 6 */

.logo-tile img {
  height: var(--h, 26px);          /* per-logo optical height keeps them visually balanced */
  width: auto;
  max-width: 100%;
  object-fit: contain;             /* never stretch or distort */
  filter: brightness(0) invert(1); /* unify every brand mark to clean white */
  opacity: .55;
  transition: opacity .25s ease, transform .25s ease;
}
.logo-tile:hover img { opacity: 1; transform: scale(1.04); }

/* ---------- Cards (generic grid) ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  transition: transform .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--navy-3); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }
.section--beige .card {
  background: var(--white); border-color: var(--line-dark);
  box-shadow: var(--shadow-light);
}
.section--beige .card p { color: var(--ink-muted); }

.card__icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  display: grid; place-content: center;
  background: var(--gold-soft); color: var(--gold);
}
.card__icon svg { width: 24px; height: 24px; }

/* Pain cards accent */
.pain .card__icon { background: rgba(107,79,58,.22); color: var(--gold-2); }

/* SEO pillar — featured GEO card */
.card--featured {
  background: linear-gradient(160deg, rgba(224,163,64,.16), var(--navy-2) 60%);
  border-color: rgba(224,163,64,.4);
}
.card--featured .card__icon { background: var(--gold); color: #2A1C08; }
.badge-new {
  display: inline-block; font-family: var(--font-head); font-size: .68rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(224,163,64,.5);
  padding: 3px 9px; border-radius: 999px; margin-bottom: 12px;
}

/* ---------- Solution split ---------- */
.split { display: grid; gap: clamp(28px,4vw,48px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-content: center; margin-top: 2px;
}
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list strong { color: var(--white); display: block; margin-bottom: 2px; }
.feature-list span { color: var(--muted); font-size: .94rem; }
.split-visual {
  aspect-ratio: 4/3; border-radius: var(--radius); border: 1px dashed var(--line);
  background:
    radial-gradient(50% 60% at 70% 20%, rgba(224,163,64,.18), transparent),
    var(--navy-2);
  display: grid; place-content: center; text-align: center; gap: 8px; padding: 24px;
  color: var(--muted); font-size: .9rem;
}

/* ---------- SEO results — detailed case studies ---------- */
.seo-cases { display: grid; gap: 26px; }
.seo-case {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 38px);
}
.seo-case__top { display: grid; gap: clamp(22px, 3vw, 40px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 920px) { .seo-case__top { grid-template-columns: 1fr 1fr; } }
.seo-headline { font-size: clamp(1.25rem, 2.2vw, 1.7rem); color: var(--white); margin-bottom: 22px; }
.seo-sub {
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
/* keyword table */
.kw-table { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--navy); }
.kw-row { display: grid; grid-template-columns: 1fr max-content; gap: 14px; padding: 13px 16px; align-items: center; font-size: .9rem; border-top: 1px solid var(--line); }
.kw-row:first-child { border-top: 0; }
.kw-head { background: var(--navy-3); font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.kw-term { color: var(--white); font-weight: 500; }
.kw-pos { color: var(--gold); font-weight: 600; font-family: var(--font-head); white-space: nowrap; text-align: right; }
.kw-pos::before { content: "▲"; font-size: .7em; margin-right: 6px; color: #4cd6a0; }
.kw-head .kw-pos, .kw-head span:last-child { color: var(--muted); }
/* chart + testimonial */
.seo-case__side { display: grid; gap: 18px; }
.seo-chart { width: 100%; height: auto; border-radius: var(--radius-sm); border: 1px solid var(--line); display: block; }
.testimonial {
  display: flex; align-items: center; gap: 14px;
  background: var(--navy); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 18px;
}
.testimonial .avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(150deg, var(--gold), var(--gold-2)); color: #2A1C08;
  display: grid; place-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
}
.testimonial .t-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.testimonial .t-meta strong { color: var(--white); font-size: .95rem; }
.testimonial .verified { display: inline-flex; align-items: center; gap: 5px; color: #4cd6a0; font-size: .76rem; }
.testimonial .t-logo {
  margin-left: auto; box-sizing: border-box;
  max-height: 46px; max-width: 130px; width: auto;
  object-fit: contain; background: #fff;
  border-radius: 8px; padding: 6px 10px;
}
/* 4-stat footer */
.seo-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 14px;
  margin-top: clamp(24px, 3vw, 36px); padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid var(--line); text-align: center;
}
@media (min-width: 720px) { .seo-stats { grid-template-columns: repeat(4, 1fr); } }
.seo-stat .n { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--gold); line-height: 1.05; }
.seo-stat .l { display: block; margin-top: 8px; font-size: .85rem; color: var(--muted); }

/* ---------- Webdesign portfolio gallery ---------- */
.webdesign::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% -10%, rgba(224,163,64,.10), transparent 60%);
  pointer-events: none;
}
.wd-gallery {
  position: relative;
  display: grid; gap: clamp(20px, 3vw, 32px);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .wd-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .wd-gallery { grid-template-columns: repeat(4, 1fr); gap: 26px 20px; } }
.wd-card { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.wd-frame {
  width: 100%; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: #0b1722;
  box-shadow: 0 24px 50px -26px rgba(0,0,0,.7);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wd-card:hover .wd-frame { transform: translateY(-6px); box-shadow: 0 34px 60px -28px rgba(0,0,0,.8); }
.wd-bar { display: flex; align-items: center; gap: 6px; height: 30px; padding: 0 13px; background: #101d2b; }
.wd-bar i { width: 9px; height: 9px; border-radius: 50%; background: #36465a; }
.wd-bar i:nth-child(1) { background: #ff5f57; } .wd-bar i:nth-child(2) { background: #febc2e; } .wd-bar i:nth-child(3) { background: #28c840; }
.wd-shot { aspect-ratio: 5 / 6; overflow: hidden; }
.wd-shot img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center top;
  transition: object-position 3s ease;   /* hover "scrolls" through the page preview */
}
.wd-card:hover .wd-shot img { object-position: center bottom; }
.wd-card figcaption { display: grid; place-items: center; min-height: 40px; }
.wd-logo {
  box-sizing: border-box;
  max-height: 54px; max-width: 170px; width: auto; object-fit: contain;
  background: #fff; border-radius: 12px; padding: 10px 18px;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, .6);
  transition: transform .25s ease;
}
.wd-card:hover .wd-logo { transform: translateY(-2px); }

/* ---------- Stats (results by the numbers) ---------- */
.stat-grid { display: grid; gap: 18px; grid-template-columns: repeat(2,1fr); }
@media (min-width: 820px) { .stat-grid { grid-template-columns: repeat(3,1fr); } }
.stat {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
}
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem,4vw,2.7rem); color: var(--gold); line-height: 1; }
.stat .num small { font-size: .55em; color: var(--white); }
.stat .label { margin-top: 10px; font-size: .9rem; color: var(--muted); }
.stat .sub { font-size: .78rem; color: var(--muted); opacity: .8; margin-top: 4px; }

/* ---------- Differentiation ---------- */
.compare { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare__col { border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.compare__col h3 { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare__col li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; font-size: .96rem; color: var(--muted); border-top: 1px solid var(--line); }
.compare__col li:first-of-type { border-top: 0; }
.compare__col .ic { flex: none; width: 22px; height: 22px; display: grid; place-content: center; border-radius: 50%; margin-top: 1px; }
.compare--bad { background: var(--navy-2); }
.compare--bad .ic { background: rgba(120,140,160,.18); color: var(--muted); }
.compare--good { background: linear-gradient(160deg, rgba(224,163,64,.14), var(--navy-2) 70%); border-color: rgba(224,163,64,.4); }
.compare--good .ic { background: var(--gold-soft); color: var(--gold); }
.compare--good li { color: #D9E2EA; }
.compare--good strong { color: var(--white); }

.bafa-banner {
  margin-top: 30px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #2A1C08; padding: clamp(26px,4vw,38px);
  display: grid; gap: 18px; align-items: center;
  grid-template-columns: 1fr; box-shadow: 0 20px 50px -22px rgba(224,163,64,.7);
}
@media (min-width: 760px) { .bafa-banner { grid-template-columns: 1fr auto; } }
.bafa-banner h3 { font-size: clamp(1.4rem,3vw,2rem); color: #2A1C08; }
.bafa-banner p { color: #4A340F; margin-top: 8px; font-weight: 500; }
.bafa-banner .btn--primary { background: #2A1C08; color: var(--gold); box-shadow: none; }
.bafa-banner .btn--primary:hover { background: #14150e; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3,1fr); } }
.step { background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-light); position: relative; }
.step__num { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.step h3 { color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--ink-muted); font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 24px; height: 24px; position: relative; transition: transform .2s ease; }
.faq summary .plus::before, .faq summary .plus::after {
  content: ""; position: absolute; background: var(--gold); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq summary .plus::before { width: 14px; height: 2px; }
.faq summary .plus::after  { width: 2px; height: 14px; transition: opacity .2s ease; }
.faq details[open] summary .plus::after { opacity: 0; }
.faq details[open] summary .plus { transform: rotate(180deg); }
.faq .answer { padding: 0 22px 20px; color: var(--muted); font-size: .98rem; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(224,163,64,.18), transparent 60%);
}
.final-grid { position: relative; display: grid; gap: clamp(28px,4vw,48px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .final-grid { grid-template-columns: 1.05fr .95fr; } }
.reassure { margin-top: 18px; font-family: var(--font-head); font-weight: 600; color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-2); border-top: 1px solid var(--line); padding: 56px 0 32px; }
.footer__grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer p, .footer a { color: var(--muted); font-size: .94rem; }
.footer a:hover { color: var(--gold); }
.footer h4 { font-family: var(--font-head); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer ul { display: grid; gap: 9px; }
.bafa-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  background: var(--navy); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--gold);
}
.footer__bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem; color: var(--muted);
}

/* ---------- Legal / simple pages ---------- */
.legal { padding: clamp(48px,7vw,90px) 0; }
.legal .container { max-width: 820px; }
.legal h1 { margin-bottom: 28px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; font-size: .98rem; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--gold); text-decoration: underline; }
.placeholder-note {
  background: var(--gold-soft); border: 1px dashed rgba(224,163,64,.5);
  border-radius: var(--radius-sm); padding: 16px 18px; margin: 16px 0;
  color: var(--gold-2); font-size: .9rem;
}

/* Thank-you page */
.thanks { min-height: 70vh; display: grid; place-content: center; text-align: center; padding: 60px 20px; }
.thanks .check {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 26px;
  background: var(--gold); display: grid; place-content: center;
  box-shadow: 0 16px 40px -10px rgba(224,163,64,.6);
}
.thanks .check svg { width: 40px; height: 40px; }
.thanks h1 { margin-bottom: 16px; }
.thanks p { max-width: 520px; margin: 0 auto 12px; font-size: 1.05rem; }
.thanks .btn { margin-top: 24px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link {
  position: absolute; left: 12px; top: -50px; z-index: 100;
  background: var(--gold); color: #2A1C08; padding: 10px 16px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 600; transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   v2 sections — hero center, problem, system, comparison, CTA
   ============================================================ */

/* Eyebrow bracket variant */
.eyebrow--bracket { background: transparent; border: 0; color: var(--gold); letter-spacing: .22em; }
.eyebrow--bracket::before { content: "[ "; }
.eyebrow--bracket::after  { content: " ]"; }

/* Centered hero */
.hero--center { max-width: 880px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero--center .hero__sub { margin-inline: auto; }
.hero__video { width: 100%; max-width: 760px; margin: clamp(26px,4vw,38px) auto clamp(22px,3vw,30px); }
.hero__cta--center { justify-content: center; }
.trust-strip--center { justify-content: center; }

/* Scarcity + value */
.scarcity {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(214,69,69,.12); color: #ff8a8a;
  border: 1px solid rgba(214,69,69,.35); border-radius: 999px;
  padding: 8px 16px; font-size: .86rem; font-weight: 600;
  font-family: var(--font-head); margin-bottom: 16px;
}
.scarcity__dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5f57; box-shadow: 0 0 0 0 rgba(255,95,87,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,95,87,.55);} 70%{box-shadow:0 0 0 8px rgba(255,95,87,0);} 100%{box-shadow:0 0 0 0 rgba(255,95,87,0);} }
.scarcity--center { display: flex; width: max-content; max-width: 100%; margin-inline: auto; }
.value-tag { display: inline-block; font-size: .62em; vertical-align: middle; color: var(--gold); border: 1px solid rgba(224,163,64,.5); border-radius: 999px; padding: 3px 10px; margin-left: 6px; font-family: var(--font-head); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 420px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Problem (Screenshot 1) ---------- */
.problem__head { max-width: 1000px; margin: 0 auto clamp(34px,5vw,52px); text-align: center; }
.problem__head h2 { font-size: clamp(1.9rem,4vw,3rem); margin: 16px auto 22px; max-width: 16ch; }
.problem__lead { font-size: 1.06rem; line-height: 1.7; max-width: 880px; margin-inline: auto; }
.problem__lead strong { color: var(--white); }
.problem__cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .problem__cards { grid-template-columns: repeat(3,1fr); } }
.prob-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent), var(--navy-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
}
.prob-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.prob-card p { font-size: .96rem; }
.prob-x { flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-content: center; background: rgba(214,69,69,.16); color: #ff6b6b; margin-top: 2px; }

/* ---------- Unser System (Screenshot 3) ---------- */
.system-flow { display: grid; gap: 18px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 940px) { .system-flow { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; } }
.sys-card {
  background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column;
}
.sys-step { font-family: var(--font-head); font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.sys-card h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--white); }
.sys-card p { font-size: .96rem; }
.sys-card--gold { background: linear-gradient(165deg, rgba(224,163,64,.16), var(--navy-2) 70%); border-color: rgba(224,163,64,.4); }
.sys-card--gold h3 { color: var(--gold); }
.sys-op { display: grid; place-content: center; font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--gold); }
@media (max-width: 939px) { .sys-op { padding: 2px 0; } }

/* ---------- Comparison table (Screenshot 5) ---------- */
.vs-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
.vs-table {
  min-width: 720px; display: grid; grid-template-columns: 1.7fr repeat(5, 1fr);
  background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-light);
}
.vs-cell { display: grid; place-items: center; padding: 18px 14px; border-top: 1px solid var(--line-dark); text-align: center; }
.vs-table > .vs-cell:nth-child(-n+6) { border-top: 0; }
.vs-corner { background: transparent; }
.vs-chead { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink); line-height: 1.2; }
.vs-feature { justify-items: start; justify-content: start; text-align: left; font-weight: 500; color: var(--ink); font-size: .95rem; }
.vs-yes, .vs-no { width: 28px; height: 28px; border-radius: 50%; display: grid; place-content: center; font-weight: 700; font-size: .9rem; }
.vs-no { background: rgba(120,140,160,.16); }
.vs-no::before { content: "✕"; color: #9aa7b3; }
.vs-yes { background: rgba(14,34,51,.08); }
.vs-yes::before { content: "✓"; color: var(--navy); }
/* highlighted Wachstum Medien column */
.vs-me { background: var(--gold); border-top-color: rgba(255,255,255,.35); }
.vs-chead.vs-me { color: #2A1C08; font-weight: 700; }
.vs-me--top { border-radius: 14px 14px 0 0; }
.vs-me--bottom { border-radius: 0 0 14px 14px; }
.vs-yes--gold { background: rgba(255,255,255,.3); }
.vs-yes--gold::before { content: "✓"; color: #fff; }

.bafa-note {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 26px; text-align: center; color: var(--ink-muted); font-size: 1rem;
}
.bafa-note svg { color: var(--brown); flex: none; }
.bafa-note strong { color: var(--ink); }

/* ---------- Final CTA (Screenshot 4) ---------- */
.final-cta__head { text-align: center; max-width: 920px; margin: 0 auto clamp(30px,4vw,46px); }
.final-cta__head h2 { font-size: clamp(1.7rem,3.4vw,2.6rem); margin: 8px auto 12px; max-width: 22ch; }
.final-cta__value { font-size: 1.3rem; font-family: var(--font-head); color: var(--white); }
.final-cta__value strong { color: var(--gold); }
.final-side { display: flex; flex-direction: column; gap: 22px; justify-content: center; }
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #D9E2EA; font-size: 1.02rem; }
.check-list .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(76,214,160,.16); color: #4cd6a0; display: grid; place-content: center; margin-top: 1px; }
.final-video { max-width: 100%; }

/* ---------- Minimal footer ---------- */
.footer--minimal { padding: 48px 0; }
.footer--minimal .container { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer__tagline { max-width: 460px; color: var(--muted); font-size: .96rem; }
.footer__copy { color: var(--muted); font-size: .9rem; }

/* Final CTA side intro (video removed) */
.final-side__intro { color: #D9E2EA; font-size: 1.06rem; line-height: 1.6; }
.final-side__intro strong { color: var(--gold); }
.final-side .check-list { margin-top: 4px; }

/* ============================================================
   Motion & micro-interactions (luxe touch, GPU-only)
   ============================================================ */

/* Scroll-reveal: hidden state only when enabled (html.reveal-on) */
html.reveal-on :is(
  .hero h1, .hero .eyebrow, .hero__sub, .hero__video, .hero__cta, .trust-strip,
  .section-head, .problem__lead, .prob-card, .sys-card, .sys-op,
  .seo-case, .wd-card, .vs-table, .step, .faq details, .lead-form,
  .check-list li, .final-cta__head, .bafa-note, .logos
) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
html.reveal-on .is-in { opacity: 1 !important; transform: none !important; }

/* Slow ambient glow in the hero (composited transform/opacity) */
.hero::before { animation: heroGlow 11s ease-in-out infinite; }
@keyframes heroGlow {
  0%, 100% { opacity: .85; transform: translate3d(0, 0, 0) scale(1); }
  50%      { opacity: 1;   transform: translate3d(0, -14px, 0) scale(1.04); }
}

/* Gold sheen sweep across primary buttons on hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: 0; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: translateX(-180%) skewX(-20deg);
  transition: transform .7s ease; pointer-events: none;
}
.btn--primary:hover::after { transform: translateX(340%) skewX(-20deg); }

/* Hover lift on problem & system cards (match the rest of the page) */
.prob-card, .sys-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.prob-card:hover, .sys-card:hover {
  transform: translateY(-4px); border-color: var(--navy-3);
  box-shadow: 0 22px 44px -26px rgba(0,0,0,.6);
}
.sys-card--gold:hover { border-color: rgba(224,163,64,.6); }

/* Logo tiles: gentle scale already on hover; add smooth float-in feel via reveal above */

/* Honour reduced motion explicitly for the reveal layer too */
@media (prefers-reduced-motion: reduce) {
  html.reveal-on :is(
    .hero h1, .hero .eyebrow, .hero__sub, .hero__video, .hero__cta, .trust-strip,
    .section-head, .problem__lead, .prob-card, .sys-card, .sys-op,
    .seo-case, .wd-card, .vs-table, .step, .faq details, .lead-form,
    .check-list li, .final-cta__head, .bafa-note, .logos
  ) { opacity: 1 !important; transform: none !important; }
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 780px; margin-inline: auto;
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .7);
  padding: 18px 20px;
  transform: translateY(160%); opacity: 0;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .45s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 22px; }
.cookie-banner__text { flex: 1 1 320px; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-btn { padding: 11px 20px; font-size: .92rem; }
@media (max-width: 540px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* Footer legal line (minimal footer) */
.footer__legal { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; font-size: .85rem; }
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--gold); }
