/* ============================================================
   Wachstum-Medien – Premium Landing Page
   Design: Apple × Rolex × Premium-Agentur
   Palette: Gold / Dunkelgold / Anthrazit / Schwarz / Weiß
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --black: #0a0b0e;
  --black-2: #0d0f13;
  --anthracite: #14161c;
  --anthracite-2: #1a1d25;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --gold: #e7c45c;
  --gold-bright: #f4d77a;
  --gold-deep: #b8912e;
  --gold-soft: rgba(231, 196, 92, 0.14);

  --white: #ffffff;
  --cream: #f5f2ea;
  --text: #eef0f4;
  --muted: rgba(238, 240, 244, 0.62);
  --muted-2: rgba(238, 240, 244, 0.42);

  --gold-grad: linear-gradient(135deg, #f4d77a 0%, #e7c45c 45%, #b8912e 100%);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 18px 50px -12px rgba(231, 196, 92, 0.35);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --ff-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 50% at 75% -5%, rgba(231, 196, 92, 0.10), transparent 60%),
    radial-gradient(50% 40% at 10% 8%, rgba(231, 196, 92, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.6; }
.eyebrow.center::after { content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.6; }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--white); }
h2 { font-size: clamp(28px, 4.2vw, 46px); }
h3 { font-size: 20px; letter-spacing: -0.01em; }

.lead { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 620px; }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.head-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.head-center .lead { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: 16px;
  padding: 16px 30px; border-radius: 999px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.3s var(--ease);
  will-change: transform;
}
.btn-gold {
  background: var(--gold-grad); color: #1a1404;
  box-shadow: var(--shadow-gold);
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-gold:hover::after { transform: translateX(130%); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 19px 40px; font-size: 17px; }
.btn-block { width: 100%; }

.cta-note { font-size: 13px; color: var(--muted-2); margin-top: 14px; }
.cta-note strong { color: var(--gold); font-weight: 600; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 14, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled { background: rgba(10, 11, 14, 0.85); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: var(--white); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--gold-grad); color: #1a1404;
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
  box-shadow: 0 6px 18px -6px rgba(231,196,92,0.6);
}
.brand b { font-weight: 700; }
.brand span { color: var(--gold); }
.header-cta { display: none; }
@media (min-width: 720px) { .header-cta { display: inline-flex; padding: 11px 22px; font-size: 15px; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 56px 0 80px; }
.hero-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03);
  font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.hero h1 { font-size: clamp(34px, 5.6vw, 58px); margin-bottom: 22px; }
.hero .lead { margin-bottom: 28px; }

.hero-price {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  padding: 18px 22px; border-radius: var(--radius);
  border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  margin-bottom: 28px;
}
.hero-price .price-block { display: flex; flex-direction: column; gap: 3px; }
.hero-price .price { font-family: var(--ff-display); font-weight: 700; font-size: 30px; color: var(--white); white-space: nowrap; line-height: 1; }
.hero-price .price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.hero-price .price-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.hero-price .divider { width: 1px; height: 40px; background: var(--line-strong); }
.hero-price .guarantee { font-size: 14px; color: var(--muted); }
.hero-price .guarantee strong { color: var(--gold); font-weight: 600; }

.hero-trustline { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trustline .item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); }
.hero-trustline svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ---------- Multi-step Form ---------- */
.form-card {
  background: linear-gradient(180deg, rgba(26,29,37,0.9), rgba(13,15,19,0.95));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
@media (min-width: 980px) { .form-card { position: sticky; top: 96px; } }
.form-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 1px; background: linear-gradient(160deg, rgba(231,196,92,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.form-head { text-align: center; margin-bottom: 22px; }
.form-head h3 { font-size: 21px; margin-bottom: 6px; }
.form-head p { font-size: 14px; color: var(--muted); }

.progress-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; font-size: 12px; color: var(--muted-2); font-weight: 500; letter-spacing: 0.04em; }
.progress-bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 24px; }
.progress-fill { height: 100%; width: 25%; background: var(--gold-grad); border-radius: 999px; transition: width 0.5s var(--ease); }

.steps { position: relative; }
.step { display: none; animation: stepIn 0.45s var(--ease); }
.step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.step-q { font-family: var(--ff-display); font-weight: 600; font-size: 19px; color: var(--white); margin-bottom: 4px; text-align: center; }
.step-sub { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 20px; }

.options { display: grid; gap: 12px; }
.opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.025);
  text-align: left; font-size: 16px; font-weight: 500; color: var(--text);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.2s var(--ease);
}
.opt:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-1px); }
.opt .opt-mark { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-strong); flex-shrink: 0; transition: 0.3s var(--ease); position: relative; }
.opt:hover .opt-mark { border-color: var(--gold); }
.opt.selected { border-color: var(--gold); background: var(--gold-soft); }
.opt.selected .opt-mark { border-color: var(--gold); background: var(--gold); }
.opt.selected .opt-mark::after { content: ""; position: absolute; inset: 0; margin: auto; width: 8px; height: 8px; border-radius: 50%; background: #1a1404; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 7px; }
.field input {
  width: 100%; padding: 15px 16px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03);
  color: var(--white); font-size: 16px; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.input-error { border-color: #e06a5a !important; }

.consent { display: flex; align-items: flex-start; gap: 11px; margin: 16px 0 18px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.consent a { color: var(--gold); text-decoration: underline; }

.step-nav { display: flex; gap: 12px; margin-top: 22px; }
.step-nav .btn { flex: 1; }
.btn-back { flex: 0 0 auto !important; padding-left: 20px; padding-right: 20px; }
.form-error { margin-top: 14px; padding: 12px 14px; border-radius: 11px; border: 1px solid rgba(224,106,90,0.4); background: rgba(224,106,90,0.1); color: #f0a395; font-size: 13.5px; text-align: center; }
.form-foot { text-align: center; font-size: 12px; color: var(--muted-2); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-foot svg { width: 14px; height: 14px; color: var(--gold); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 48px 0; background: rgba(255,255,255,0.012); }
.trust-head { text-align: center; font-size: 14px; color: var(--muted); margin-bottom: 28px; letter-spacing: 0.02em; }
.trust-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 820px; margin: 0 auto; }
@media (min-width: 720px) { .trust-stats { grid-template-columns: repeat(4, 1fr); } }
.trust-stat { text-align: center; }
.trust-stat .num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(28px, 4vw, 40px); color: var(--white); line-height: 1; }
.trust-stat .num span { color: var(--gold); }
.trust-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 8px; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid { display: grid; gap: 16px; grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
@media (min-width: 720px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
.problem-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: var(--radius);
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.problem-item:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.problem-item .x { width: 38px; height: 38px; border-radius: 10px; background: rgba(224,106,90,0.12); color: #e88a7c; display: grid; place-items: center; flex-shrink: 0; }
.problem-item .x svg { width: 19px; height: 19px; }
.problem-item p { font-size: 16px; font-weight: 500; color: var(--text); }

/* ============================================================
   SOLUTION (Steps)
   ============================================================ */
.solution-steps { display: grid; gap: 20px; counter-reset: step; }
@media (min-width: 720px) { .solution-steps { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
.sol-step { position: relative; padding: 26px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); transition: 0.4s var(--ease); }
.sol-step:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.sol-step .n { font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--gold); display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--gold-soft); margin-bottom: 16px; }
.sol-step h3 { font-size: 17px; margin-bottom: 8px; }
.sol-step p { font-size: 14px; color: var(--muted); }

/* ============================================================
   SERVICES (Premium Cards)
   ============================================================ */
.services-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative; padding: 30px 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: linear-gradient(180deg, rgba(26,29,37,0.6), rgba(13,15,19,0.4));
  overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; opacity: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(231,196,92,0.16), transparent 70%);
  transition: opacity 0.5s var(--ease); pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.service-card:hover::before { opacity: 1; }
.service-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--gold-soft); border: 1px solid rgba(231,196,92,0.25); display: grid; place-items: center; margin-bottom: 20px; transition: 0.5s var(--ease); }
.service-card:hover .service-ic { background: var(--gold-grad); }
.service-ic svg { width: 26px; height: 26px; color: var(--gold); transition: 0.5s var(--ease); }
.service-card:hover .service-ic svg { color: #1a1404; }
.service-card h3 { font-size: 19px; margin-bottom: 9px; }
.service-card p { font-size: 15px; color: var(--muted); }
/* "Der Weg" – nummerierte Schritt-Badges */
.weg-num { position: absolute; top: 22px; right: 24px; z-index: 2; font-family: var(--ff-display); font-weight: 700; font-size: 13px; color: var(--gold); width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid rgba(231,196,92,0.28); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-sec { padding: 96px 0; }
.guarantee-box {
  position: relative; text-align: center; max-width: 880px; margin: 0 auto;
  padding: 60px 40px; border-radius: var(--radius-lg);
  border: 1px solid rgba(231,196,92,0.3);
  background: radial-gradient(70% 100% at 50% 0%, rgba(231,196,92,0.10), transparent 70%), linear-gradient(180deg, rgba(26,29,37,0.7), rgba(13,15,19,0.6));
  box-shadow: var(--shadow);
}
.guarantee-seal {
  width: 88px; height: 88px; margin: 0 auto 26px; border-radius: 50%;
  background: var(--gold-grad); display: grid; place-items: center;
  box-shadow: 0 0 0 10px rgba(231,196,92,0.10), var(--shadow-gold);
}
.guarantee-seal svg { width: 44px; height: 44px; color: #1a1404; }
.guarantee-box h2 { margin-bottom: 18px; }
.guarantee-box p { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 auto 30px; }
.guarantee-box p strong { color: var(--cream); font-weight: 600; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; } }
.about-photo { position: relative; }
.about-photo img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line-strong); aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.about-photo::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); background: linear-gradient(180deg, transparent 55%, rgba(10,11,14,0.5)); pointer-events: none; }
.about-tag { position: absolute; left: 18px; bottom: 18px; z-index: 2; padding: 10px 16px; border-radius: 12px; background: rgba(10,11,14,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line-strong); font-size: 13px; }
.about-tag b { color: var(--white); font-weight: 600; display: block; }
.about-tag span { color: var(--gold); font-size: 12px; }
.about-content h2 { margin-bottom: 8px; }
.about-role { color: var(--gold); font-weight: 600; font-size: 15px; letter-spacing: 0.02em; margin-bottom: 20px; }
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about-content p strong { color: var(--cream); font-weight: 600; }
.about-signature { font-family: var(--ff-display); font-weight: 700; font-size: 20px; color: var(--white); margin-top: 8px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { padding: 28px 26px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008)); transition: 0.4s var(--ease); display: flex; flex-direction: column; }
.testi-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; margin-bottom: 16px; }
.testi-card p { font-size: 15.5px; color: var(--text); line-height: 1.65; margin-bottom: 22px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); color: #1a1404; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testi-author .name { font-weight: 600; font-size: 15px; color: var(--white); }
.testi-author .meta { font-size: 13px; color: var(--muted-2); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
.pf-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--anthracite); transition: 0.5s var(--ease); }
.pf-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.pf-frame { background: #16181f; border-bottom: 1px solid var(--line); }
.pf-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; }
.pf-bar .d { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.pf-bar .url { margin-left: 10px; font-size: 12px; color: var(--muted-2); background: rgba(255,255,255,0.04); padding: 4px 12px; border-radius: 999px; }
.pf-shot { height: 340px; overflow: hidden; position: relative; background: #16181f; }
.pf-shot img { width: 100%; height: auto; display: block; transform: translateY(0); transition: transform 0.9s var(--ease); will-change: transform; }
/* Hover = langsam durch die gesamte Webseite scrollen, Verlassen = zügig zurück */
.pf-card:hover .pf-shot img { transform: translateY(calc(-100% + 340px)); transition: transform 5.5s linear; }
.pf-shot::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 56px; background: linear-gradient(transparent, rgba(10,11,14,0.55)); pointer-events: none; opacity: 1; transition: opacity 0.4s var(--ease); }
.pf-card:hover .pf-shot::after { opacity: 0; }
.pf-hint { display: inline-block; margin-top: 8px; font-size: 14px; color: var(--gold); opacity: 0.85; }
.pf-meta { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; }
.pf-meta .name { font-family: var(--ff-display); font-weight: 600; font-size: 16px; color: var(--white); }
.pf-meta .tag { font-size: 12px; color: var(--muted); }
.pf-result { font-family: var(--ff-display); font-weight: 700; color: var(--gold); font-size: 15px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.02); overflow: hidden; transition: border-color 0.4s var(--ease); }
.faq-item.open { border-color: var(--line-strong); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 20px 22px; font-family: var(--ff-display); font-weight: 600; font-size: 16.5px; color: var(--white); text-align: left; }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform 0.4s var(--ease); color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-icon::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq-icon::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 100px 0; }
.final-box {
  position: relative; text-align: center; max-width: 860px; margin: 0 auto;
  padding: 70px 40px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(231,196,92,0.25);
  background: radial-gradient(80% 120% at 50% 0%, rgba(231,196,92,0.12), transparent 65%), linear-gradient(180deg, rgba(26,29,37,0.8), rgba(10,11,14,0.9));
  box-shadow: var(--shadow);
}
.final-box h2 { font-size: clamp(30px, 5vw, 50px); margin-bottom: 18px; }
.final-box p { font-size: 19px; color: var(--muted); margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 40px; }
.footer-inner { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 13px; color: var(--muted-2); }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thanks-hero { padding: 80px 0 60px; text-align: center; }
.thanks-seal { width: 96px; height: 96px; margin: 0 auto 30px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; box-shadow: 0 0 0 12px rgba(231,196,92,0.10), var(--shadow-gold); animation: pop 0.6s var(--ease); }
@keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thanks-seal svg { width: 48px; height: 48px; color: #1a1404; }
.thanks-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 20px; }
.thanks-hero p { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 16px; }
.thanks-hero p strong { color: var(--cream); font-weight: 600; }
.thanks-alert { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding: 16px 24px; border-radius: 14px; border: 1px solid rgba(231,196,92,0.3); background: var(--gold-soft); font-size: 15px; color: var(--cream); }
.thanks-alert svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.consent-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(26,29,37,0.98), rgba(13,15,19,0.99));
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  transform: translateY(140%); opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}
.consent-banner.show { transform: translateY(0); opacity: 1; }
.consent-inner { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 720px) { .consent-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; } }
.consent-text strong { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 16px; color: var(--white); margin-bottom: 5px; }
.consent-text p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.consent-text a { color: var(--gold); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent-actions .btn { padding: 12px 22px; font-size: 14px; white-space: nowrap; }
@media (max-width: 480px) { .consent-actions { flex-direction: column-reverse; } .consent-actions .btn { width: 100%; } }
.consent-reopen { cursor: pointer; }

/* ---------- Reveal animations (only hidden when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { padding: 36px 0 60px; }
  .field-row { grid-template-columns: 1fr; }
  .guarantee-box, .final-box { padding: 48px 24px; }
}
