/* abiball.tekdream.de — Tek Dream Events Abiball Landing
   Phase 1 statisch. Class + CSS vars + body.dark Override (theme-aware UI). */

:root {
  /* Phase 1 — clean professional palette (navy + white + neutral) */
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-pain: #fdf3ef;
  --bg-trust: #eef3fa;
  --ink: #0f1a2c;           /* deep navy ink */
  --ink-soft: #475066;
  --ink-mute: #8590a3;
  --rule: #e3e8f0;
  --accent: #2b4d8a;        /* professional navy */
  --accent-deep: #1e3a6b;
  --accent-soft: #d6e1f2;
  --warn: #b13a2a;
  --ok: #2e7d4f;
  --placeholder-bg: #fff8d6;
  --placeholder-ink: #6b5400;
  --placeholder-border: #e8d56b;
  --shadow-sm: 0 1px 2px rgba(15,26,44,0.04);
  --shadow-md: 0 8px 30px rgba(15,26,44,0.08);
  --shadow-lg: 0 16px 50px rgba(15,26,44,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --max-w: 1200px;
  --pad-x: clamp(20px, 5vw, 64px);
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

body.dark {
  --bg: #0b1220;
  --bg-elev: #131c2d;
  --bg-soft: #131c2d;
  --bg-pain: #1c1816;
  --bg-trust: #131e2f;
  --ink: #eef2f8;
  --ink-soft: #c2cad8;
  --ink-mute: #7d8699;
  --rule: #1f2a3d;
  --accent: #6ea1ff;
  --accent-deep: #4a82ee;
  --accent-soft: #1d2c47;
  --placeholder-bg: #3a2f10;
  --placeholder-ink: #f3d96b;
  --placeholder-border: #6b5400;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1 { font-family: var(--font-display); font-weight: 500; color: var(--ink); letter-spacing: -0.015em; font-size: clamp(2.3rem, 5.4vw, 4.2rem); line-height: 1.04; margin: 0 0 0.4em; }
h2 { font-family: var(--font-body); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.15; margin: 0 0 0.4em; }
h3 { font-family: var(--font-body); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.3; margin: 0 0 0.3em; }
h4 { font-family: var(--font-body); font-weight: 600; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent-soft); transition: color 0.15s, border-color 0.15s; }
a:hover { color: var(--accent-deep); border-bottom-color: var(--accent); }
body.dark a { color: var(--accent); }

.eyebrow { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 1.1em; display: block; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid var(--rule); }
section:first-of-type { border-top: 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head p { color: var(--ink-mute); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--bg-elev); color: var(--ink); border-color: var(--rule); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink-soft); border-color: var(--rule); box-shadow: none; }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
body.dark .nav { background: rgba(11, 18, 32, 0.92); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); border: 0; font-family: var(--font-body); font-weight: 600; }
.brand img { height: 38px; width: auto; display: block; }
.brand .sub { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); padding-left: 12px; border-left: 1px solid var(--rule); font-weight: 700; }
@media (max-width: 540px) { .brand img { height: 32px; } .brand .sub { display: none; } }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 0.93rem; color: var(--ink-soft); border: 0; font-weight: 500; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { margin-left: auto; }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ---------- Hero (legacy split-grid — kept for fallback) ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0 clamp(80px, 9vw, 120px);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-top: 0;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }
.hero h1 { color: var(--ink); }
.hero .lede { font-size: 1.15rem; color: var(--ink-soft); margin: 1.2em 0 1.6em; max-width: 36em; }

/* ---------- Hero — full-width background image ---------- */
.hero-fullwidth {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  padding: clamp(80px, 12vh, 140px) 0 clamp(64px, 10vh, 120px);
  background: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/static/img/hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.20) 0%, rgba(11,18,32,0.55) 60%, rgba(11,18,32,0.85) 100%),
    linear-gradient(90deg, rgba(11,18,32,0.70) 0%, rgba(11,18,32,0.30) 55%, rgba(11,18,32,0.10) 100%);
}
.hero-fullwidth-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  color: #fff;
  width: 100%;
}
.hero-fullwidth-inner h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  max-width: 18ch;
  font-weight: 500;
}
.hero-fullwidth-inner .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin: 1.2em 0 1.8em;
  max-width: 38em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-eyebrow {
  color: #d4ad6c !important;   /* warm gold — matches Tek Dream logo */
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.trust-bar-hero { margin: 0 0 2em; }
.trust-bar-hero li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.trust-bar-hero li::before { background: #d4ad6c; }
.btn-on-hero {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-on-hero:hover { background: rgba(255,255,255,0.18); border-color: #fff; color: #fff; }
@media (max-width: 720px) {
  .hero-overlay { background: linear-gradient(180deg, rgba(11,18,32,0.45) 0%, rgba(11,18,32,0.85) 100%); }
}
.trust-bar { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0 0 2em; padding: 0; list-style: none; }
.trust-bar li { font-size: 0.9rem; color: var(--ink-mute); position: relative; padding-left: 18px; }
.trust-bar li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-figure {
  aspect-ratio: 4 / 5;
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
}
.hero-figure .placeholder-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--ink-mute); font-style: italic; padding: 24px; text-align: center; }

/* ---------- Placeholders (sichtbare TODOs) ---------- */
.ph {
  display: inline-block;
  background: var(--placeholder-bg);
  color: var(--placeholder-ink);
  border: 1px dashed var(--placeholder-border);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-size: 0.85em;
  font-style: italic;
  font-family: var(--font-body);
}
.ph-block {
  display: block;
  background: var(--placeholder-bg);
  color: var(--placeholder-ink);
  border: 1px dashed var(--placeholder-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 8px 0;
  font-size: 0.9em;
  font-style: italic;
}

/* ---------- Pain cards ---------- */
.pain { background: var(--bg-pain); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card { background: var(--bg-elev); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.pain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pain-card h3 { color: var(--warn); margin: 0; font-size: 1.18rem; }
.pain-card .src { font-size: 0.82rem; color: var(--ink-mute); padding-top: 14px; border-top: 1px solid var(--rule); margin-top: auto; }
.pain-card .bridge { background: var(--bg-trust); border-left: 3px solid var(--accent); padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.93rem; color: var(--ink-soft); margin: 4px 0 0; }
.pain-card .bridge strong { color: var(--accent-deep); }
.pain-card .bridge a { color: var(--accent-deep); border-bottom-color: var(--accent-soft); }
body.dark .pain-card .bridge strong, body.dark .pain-card .bridge a { color: var(--accent); }
.pain-bridge { text-align: center; margin-top: 56px; font-family: var(--font-body); font-size: 1.1rem; color: var(--accent); font-weight: 500; letter-spacing: -0.01em; }

/* ---------- Accordion (Klauseln + FAQ) ---------- */
.acc { background: var(--bg-elev); border: 1px solid var(--rule); border-radius: var(--radius-md); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
.acc.open { box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  user-select: none;
}
.acc-head .icon { width: 22px; height: 22px; flex: 0 0 22px; position: relative; }
.acc-head .icon::before, .acc-head .icon::after { content: ""; position: absolute; background: var(--accent); }
.acc-head .icon::before { left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); }
.acc-head .icon::after { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); transition: transform 0.2s; }
.acc.open .acc-head .icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.acc-body { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.acc.open .acc-body { padding: 4px 26px 26px; max-height: 2000px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 14px 0; }
.compare > div { background: var(--bg); border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: 14px 16px; }
.compare h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 8px; }
.compare .us h4 { color: var(--ok); }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.persona-tag { font-size: 0.78rem; padding: 2px 9px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep); margin-right: 10px; font-weight: 600; font-family: var(--font-body); }

/* ---------- Locations grid ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1080px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card { background: var(--bg-elev); border: 1px solid var(--rule); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.loc-img { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--accent-deep), var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }
.loc-card .body { padding: 18px 20px 22px; }
.loc-card h3 { margin: 0 0 6px; font-size: 1.2rem; }
.loc-card .cap { font-size: 0.88rem; color: var(--accent-deep); font-weight: 600; }
.loc-card .city { font-size: 0.85rem; color: var(--ink-mute); margin-bottom: 8px; }
.loc-card .char { font-size: 0.92rem; color: var(--ink-soft); }
.icon-strip { background: var(--bg-soft); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 36px clamp(20px, 4vw, 40px); margin-top: 44px; }
.icon-strip h4 { text-align: center; margin: 0 0 26px; font-size: 1.15rem; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
.icon-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
@media (max-width: 900px) { .icon-row { grid-template-columns: repeat(4, 1fr); } }
.icon-row .item { text-align: center; padding: 12px 6px; }
.icon-row .item .sym { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.icon-row .item .lbl { font-size: 0.78rem; color: var(--ink-soft); }
.trust-line { text-align: center; margin-top: 22px; color: var(--accent); font-family: var(--font-body); font-weight: 500; font-size: 1rem; letter-spacing: -0.005em; }

/* ---------- Pricing ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier { background: var(--bg-elev); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 34px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
.tier:hover { box-shadow: var(--shadow-md); }
.tier.feature { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-6px); position: relative; }
.tier.feature::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--accent); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.tier h3 { margin: 0 0 4px; font-size: 1.3rem; }
.tier .tier-tag { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 700; }
.tier .price { font-family: var(--font-body); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin: 8px 0 16px; letter-spacing: -0.02em; }
.tier .avail { font-size: 0.88rem; color: var(--ink-mute); margin-bottom: 14px; }
.tier ul { padding-left: 1.1em; margin: 0 0 18px; color: var(--ink-soft); font-size: 0.95rem; }
.tier ul li { margin-bottom: 6px; }
.eltern-block, .anz-block { background: var(--bg-soft); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 26px 28px; margin-top: 28px; }
.eltern-block h4, .anz-block h4 { margin: 0 0 14px; }
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; font-size: 0.95rem; }
.kv .k { color: var(--ink-mute); }
.kv .v { color: var(--ink); font-weight: 500; }
@media (max-width: 700px) { .kv { grid-template-columns: 1fr; } .kv .k { font-size: 0.8rem; } }

/* ---------- Workshop CTA section ---------- */
.workshop-cta { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.workshop-cta::before { content: ""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.25; pointer-events: none; }
.workshop-cta * { color: inherit; }
.workshop-cta h2, .workshop-cta h3 { color: #fff; }
.workshop-cta .eyebrow { color: #8eb5ff; }
.workshop-cta .lede { font-size: 1.12rem; opacity: 0.82; color: #d4dcec; }
.workshop-cta p { color: #d4dcec; }
.workshop-cta .anti-sell { font-family: var(--font-body); font-style: italic; font-size: 1.15rem; color: #fff; padding: 20px 26px; border-left: 3px solid var(--accent); background: rgba(255,255,255,0.04); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 28px 0; }
.workshop-cta .btn-primary { background: #fff; color: var(--accent-deep); border-color: #fff; }
.workshop-cta .btn-primary:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.workshop-outcomes { padding-left: 0; list-style: none; margin: 22px 0; }
.workshop-outcomes li { padding: 12px 0 12px 32px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.08); color: #e3e9f3; }
.workshop-outcomes li::before { content: "→"; position: absolute; left: 0; color: #8eb5ff; font-weight: 700; }

/* ---------- About ---------- */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 0.6fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.founder-photo { aspect-ratio: 3 / 4; background: linear-gradient(180deg, var(--accent), var(--accent-deep)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: #fff; padding: 24px; text-align: center; box-shadow: var(--shadow-lg); }
.principles { background: var(--bg-elev); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 28px 32px; margin-top: 32px; box-shadow: var(--shadow-sm); }
.principles h4 { margin: 0 0 16px; font-size: 1.08rem; color: var(--accent); letter-spacing: 0.01em; }
.principles ul { columns: 2; column-gap: 28px; padding-left: 1.1em; margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
@media (max-width: 700px) { .principles ul { columns: 1; } }
.principles ul li { margin-bottom: 6px; break-inside: avoid; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--bg-soft); text-align: center; }
.final-cards { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; margin: 48px 0 32px; text-align: left; }
@media (max-width: 900px) { .final-cards { grid-template-columns: 1fr; } }
.final-cards .card { background: var(--bg-elev); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 30px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.final-cards .card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.final-cards .card.primary { border-color: var(--accent); box-shadow: var(--shadow-md); }
.final-cards .card h3 { margin: 0 0 8px; }
.final-cards .card p { font-size: 0.95rem; flex: 1; }
.contact-row { font-size: 0.95rem; color: var(--ink-soft); margin-top: 6px; }
.contact-row .line { display: block; padding: 4px 0; }
.reply-time { color: var(--ink-mute); font-style: italic; }

/* ---------- Forms ---------- */
.form-page { padding: clamp(48px, 7vw, 96px) 0; min-height: 70vh; background: var(--bg-soft); }
.form-shell { max-width: 640px; margin: 0 auto; background: var(--bg-elev); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); box-shadow: var(--shadow-lg); }
.form-shell h1 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); }
.form-shell .lede { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.05rem; }
.form-shell ul.outcomes { padding-left: 1.1em; margin: 18px 0 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--bg-elev);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field .help { font-size: 0.8rem; color: var(--ink-mute); margin-top: 4px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); margin: 14px 0 22px; }
.checkbox-row input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .row { grid-template-columns: 1fr; } }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; }
.form-msg.ok { background: rgba(58, 107, 72, 0.12); color: var(--ok); border: 1px solid rgba(58, 107, 72, 0.3); }
.form-msg.err { background: rgba(160, 69, 53, 0.12); color: var(--warn); border: 1px solid rgba(160, 69, 53, 0.3); }
.trust-foot { text-align: center; font-size: 0.86rem; color: var(--ink-mute); margin-top: 22px; }
.legal-foot { text-align: center; font-size: 0.78rem; color: var(--ink-mute); margin-top: 8px; line-height: 1.5; }
.req { color: var(--warn); font-weight: 600; }
.outcomes-icons { list-style: none; padding: 0; margin: 0 0 28px; }
.outcomes-icons li { padding: 10px 0; border-bottom: 1px solid var(--rule); color: var(--ink-soft); font-size: 0.96rem; }
.outcomes-icons li:last-child { border-bottom: 0; }
.outcomes-icons li strong { color: var(--ok); margin-right: 4px; }
body.dark .outcomes-icons li strong { color: #7ec98c; }

/* ---------- Wizard (multi-step form) ---------- */
.wizard-shell { max-width: 720px; }
.wizard-progress { list-style: none; padding: 0; margin: 32px 0 36px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; position: relative; }
.wizard-progress::before { content: ""; position: absolute; left: 14%; right: 14%; top: 18px; height: 2px; background: var(--rule); z-index: 0; }
.wiz-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 4px; }
.wiz-step .wiz-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-elev); border: 2px solid var(--rule); color: var(--ink-mute);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s;
}
.wiz-step .wiz-lbl { font-size: 0.82rem; color: var(--ink-mute); letter-spacing: 0.02em; font-weight: 500; }
.wiz-step.active .wiz-num { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 0 0 4px var(--accent-soft); }
.wiz-step.active .wiz-lbl { color: var(--accent); font-weight: 600; }
.wiz-step.done .wiz-num { background: var(--ok); border-color: var(--ok); color: #fff; }
.wiz-step.done .wiz-num::after { content: "✓"; }
.wiz-step.done .wiz-num span { display: none; }

.wiz-panel { display: none; border: 0; padding: 0; margin: 0; animation: wiz-in 0.28s ease; }
.wiz-panel.active { display: block; }
@keyframes wiz-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wiz-legend { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 6px; padding: 0; }
.wiz-hint { font-size: 0.94rem; color: var(--ink-mute); margin: 0 0 22px; }
.wiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--rule); }
.wiz-nav .btn { min-width: 140px; }

/* check-grid + radio-grid */
.check-grid { border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: 14px 16px; }
.check-grid legend { padding: 0 6px; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.check-grid label, .radio-grid label { display: flex; align-items: center; gap: 8px; padding: 7px 0; cursor: pointer; font-size: 0.94rem; color: var(--ink-soft); }
.check-grid label:hover, .radio-grid label:hover { color: var(--ink); }
.check-grid input[type="checkbox"], .radio-grid input[type="radio"] { width: 18px; height: 18px; accent-color: var(--accent); }
.cap-hint { color: var(--ink-mute); font-size: 0.82rem; }
.radio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 18px; }
@media (max-width: 540px) {
  .wizard-progress { grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
  .wiz-step .wiz-lbl { font-size: 0.72rem; }
  .wiz-step .wiz-num { width: 32px; height: 32px; font-size: 0.85rem; }
  .wizard-progress::before { top: 15px; }
  .wiz-nav { flex-direction: column-reverse; }
  .wiz-nav .btn { width: 100%; }
}

/* ---------- Mobile sticky bottom CTA ---------- */
.sticky-mob {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--rule);
  padding: 12px 16px;
  display: none;
  z-index: 60;
  box-shadow: 0 -4px 20px rgba(15,26,44,0.08);
}
.sticky-mob .btn-primary { width: 100%; background: var(--accent); color: #fff; border-color: var(--accent); }
@media (max-width: 720px) {
  .sticky-mob { display: block; }
  body { padding-bottom: 72px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--accent-deep); padding: 64px 0 36px; color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer a { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.2); }
.footer a:hover { color: #fff; border-bottom-color: var(--accent); }
.footer h5 { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin: 0 0 16px; font-weight: 700; }
.footer-logo { height: 56px; width: auto; display: block; margin-bottom: 16px; filter: brightness(1.05); }
.footer-grid ul { padding: 0; list-style: none; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { border-bottom: 0; }
.footer-copy { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.86rem; color: rgba(255,255,255,0.55); }
.footer-copy a { color: rgba(255,255,255,0.85); }

/* ---------- Cookie banner ---------- */
.cookiebar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  z-index: 70;
  display: none;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.cookiebar.show { display: flex; }
.cookiebar p { color: var(--bg); margin: 0; font-size: 0.9rem; flex: 1; min-width: 220px; }
.cookiebar .btn { padding: 8px 16px; font-size: 0.9rem; }

/* ---------- Legal pages ---------- */
.legal-shell { max-width: 780px; margin: 0 auto; padding: clamp(40px, 7vw, 90px) var(--pad-x); }
.legal-shell h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.6em; }
.legal-shell h2 { margin-top: 1.6em; font-size: 1.3rem; }
.legal-shell p, .legal-shell li { font-size: 0.96rem; }
.legal-shell .meta { color: var(--ink-mute); font-size: 0.9rem; margin-bottom: 2em; }

/* ---------- Misc ---------- */
.lead-bridge { text-align: center; color: var(--ink-mute); font-style: italic; margin-top: 32px; }
.theme-toggle { background: transparent; border: 1px solid var(--rule); color: var(--ink-soft); padding: 6px 12px; border-radius: 999px; cursor: pointer; font-size: 0.84rem; }
.theme-toggle:hover { border-color: var(--ink); color: var(--ink); }
