/* ═══════════════════════════════════════════
   PVPLUSWORLD — Editorial Design System v2
   Navy #04405E · Gold #BCAB85
   Fonts: Playfair Display + DM Sans
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy: #04405E;
  --navy-deep: #032d42;
  --navy-light: #065a82;
  --gold: #BCAB85;
  --gold-light: #d4c8a8;
  --gold-pale: #f0ebe0;
  --gold-dark: #9a8c6a;
  --cream: #FAF8F4;
  --cream-warm: #F5F0E8;
  --white: #FFFFFF;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --ink-muted: #6b6b6b;
  --stone: #e8e4dc;
  --stone-light: #f2efe9;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --container: 1280px;
  --container-narrow: 860px;
  --container-wide: 1440px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.3s;
}

/* ─── Reset ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Language Toggle ──────────────────── */
[data-lang-content] { display: none; }
[data-lang-content="de"] { display: inline; }
body.en [data-lang-content="de"] { display: none; }
body.en [data-lang-content="en"] { display: inline; }
.lang-block[data-lang-content] { display: none; }
.lang-block[data-lang-content="de"] { display: block; }
body.en .lang-block[data-lang-content="de"] { display: none; }
body.en .lang-block[data-lang-content="en"] { display: block; }
/* Flex blocks */
.lang-flex[data-lang-content="de"] { display: flex; }
.lang-flex[data-lang-content="en"] { display: none; }
body.en .lang-flex[data-lang-content="de"] { display: none; }
body.en .lang-flex[data-lang-content="en"] { display: flex; }

/* ─── Typography ───────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.text-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); }
em { font-style: italic; }

/* ─── Container ────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

/* ─── Navigation ───────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 0; transition: all var(--duration-fast) var(--ease-out); }
.nav.scrolled { background: rgba(4, 64, 94, 0.97); backdrop-filter: blur(20px); padding: 0.8rem 0; box-shadow: 0 1px 0 rgba(188, 171, 133, 0.15); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.nav__logo img { height: 52px; width: auto; }
.nav.scrolled .nav__logo img { height: 42px; }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; transition: color var(--duration-fast); position: relative; }
.nav__links a:hover { color: var(--gold-light); }
.nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--duration-fast) var(--ease-out); }
.nav__links a:hover::after { width: 100%; }
.nav__lang { display: flex; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.nav__lang button { padding: 0.35rem 0.7rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); transition: all var(--duration-fast); }
.nav__lang button.active { background: var(--gold); color: var(--navy-deep); }
.nav__cta { padding: 0.6rem 1.5rem; background: var(--gold); color: var(--navy-deep); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; border-radius: 2px; transition: all var(--duration-fast); }
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Mobile close — HIDDEN on desktop */
.nav__close { display: none; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__hamburger span { width: 24px; height: 2px; background: white; transition: all var(--duration-fast); }

@media (max-width: 960px) {
  .nav__hamburger { display: flex; }
  .nav__close { display: block; position: absolute; top: 1.5rem; right: 1.5rem; color: white; font-size: 1.5rem; }
  .nav__links { position: fixed; top: 0; right: -100%; width: 320px; height: 100vh; background: var(--navy-deep); flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; gap: 1.2rem; transition: right 0.6s var(--ease-out); box-shadow: -20px 0 60px rgba(0,0,0,0.3); }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1.1rem; }
}

/* ─── Buttons ──────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.03em; border-radius: 2px; transition: all var(--duration-fast) var(--ease-out); }
.btn--primary { background: var(--gold); color: var(--navy-deep); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(188, 171, 133, 0.25); }
.btn--outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--navy { background: var(--navy); color: white; }
.btn--navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border: 1px solid var(--stone); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.78rem; }
.btn--lg { padding: 1.1rem 2.8rem; font-size: 0.9rem; }
.btn .arrow { transition: transform var(--duration-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Hero ─────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; opacity: 0.08; background: radial-gradient(ellipse 80% 60% at 70% 40%, var(--gold) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 20% 80%, var(--navy-light) 0%, transparent 60%); }
.hero__grain { position: absolute; inset: 0; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 256px; }
.hero__line { position: absolute; top: 0; left: 12%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent); opacity: 0.12; }
.hero__line:nth-child(2) { left: 88%; }

.hero__content { position: relative; z-index: 2; max-width: var(--container-wide); margin: 0 auto; padding: 8rem var(--gutter) 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero__text { color: white; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: rgba(188, 171, 133, 0.12); border: 1px solid rgba(188, 171, 133, 0.25); border-radius: 2px; margin-bottom: 2rem; }
.hero__badge span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.hero__title { margin-bottom: 1.5rem; color: white; }
.hero__title em { color: var(--gold); }
.hero__subtitle { font-size: clamp(1rem, 1.3vw, 1.15rem); color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(188, 171, 133, 0.12); padding: 1.8rem; border-radius: 3px; transition: all var(--duration-fast); }
.stat-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(188, 171, 133, 0.25); transform: translateY(-2px); }
.stat-card__number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.stat-card__label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

@media (max-width: 768px) {
  .hero__content { grid-template-columns: 1fr; padding: 7rem var(--gutter) 3rem; }
  .stat-card { padding: 1.2rem; }
  .stat-card__number { font-size: 1.8rem; }
}

/* ─── Sections ─────────────────────────── */
.section { padding: clamp(4rem, 8vw, 10rem) 0; }
.section--sm { padding: clamp(3rem, 5vw, 6rem) 0; }
.section__eyebrow { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.section__eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
.section__title { margin-bottom: 1.5rem; color: var(--navy); }
.section__title em { color: var(--gold-dark); font-style: italic; }
.section__lead { font-size: 1.1rem; color: var(--ink-muted); max-width: 600px; line-height: 1.8; }

.section--navy { background: var(--navy); color: white; position: relative; }
.section--navy .section__eyebrow { color: var(--gold-light); }
.section--navy .section__eyebrow::before { background: var(--gold-light); }
.section--navy .section__title { color: white; }
.section--navy .section__lead { color: rgba(255,255,255,0.65); }
.section--cream { background: var(--cream-warm); }

/* ─── Vertical Timeline Process (v12 style) ── */
.timeline { position: relative; margin-top: 3rem; max-width: 750px; }
.timeline::before { content: ''; position: absolute; left: 2.2rem; top: 2.5rem; bottom: 2.5rem; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--stone), var(--gold)); }

.timeline-step { position: relative; display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.5rem; padding-bottom: 2.5rem; }
.timeline-step:last-child { padding-bottom: 0; }

.timeline-step__dot { width: 4.5rem; height: 4.5rem; border-radius: 50%; background: white; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; z-index: 2; position: relative; transition: border-color var(--duration-fast); }
.timeline-step:hover .timeline-step__dot { border-color: var(--gold); }
.timeline-step__dot span { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--gold-dark); }

.timeline-step__content { background: white; border: 1px solid var(--stone); border-radius: 4px; padding: 1.8rem 2rem; transition: all var(--duration-fast); }
.timeline-step:hover .timeline-step__content { border-color: var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,0.04); }

.timeline-step__time { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; display: inline-block; padding: 0.2rem 0.6rem; background: var(--stone-light); border-radius: 2px; }
.timeline-step__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.timeline-step__text { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; margin-bottom: 0.8rem; }
.timeline-step__tag { display: inline-block; padding: 0.25rem 0.7rem; background: var(--gold-pale); color: var(--gold-dark); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; border-radius: 2px; }

@media (max-width: 600px) {
  .timeline-step { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .timeline-step__dot { width: 3rem; height: 3rem; }
  .timeline-step__dot span { font-size: 1rem; }
  .timeline::before { left: 1.45rem; }
  .timeline-step__content { padding: 1.2rem; }
}

/* ─── Gold Icon (SVG circle with letter) ── */
.gold-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gold-icon span { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: white; }
.gold-icon--sm { width: 2rem; height: 2rem; }
.gold-icon--sm span { font-size: 0.8rem; }

/* ─── Requirements Cards ───────────────── */
.req-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.req-card { background: white; border: 1px solid var(--stone); padding: 2rem; border-left: 3px solid var(--gold); transition: all var(--duration-fast); }
.req-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.req-card__icon { margin-bottom: 1rem; }
.req-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.req-card p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.6; }

.req-hint { margin-top: 2rem; padding: 1.5rem 2rem; background: linear-gradient(135deg, var(--gold-pale), white); border: 1px solid var(--gold); border-radius: 3px; }
.req-hint p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }
.req-hint strong { color: var(--navy); }

@media (max-width: 768px) { .req-grid { grid-template-columns: 1fr; } }

/* ─── Packages ─────────────────────────── */
.packages-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.package-card { background: white; border: 1px solid var(--stone); padding: 2.5rem 2rem; display: flex; flex-direction: column; transition: all var(--duration-fast); }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.package-card--featured { border-color: var(--gold); background: linear-gradient(to bottom, white 0%, var(--gold-pale) 100%); }
.package-card--featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.package-card__badge { display: inline-block; padding: 0.3rem 0.8rem; background: var(--navy); color: var(--gold-light); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; align-self: flex-start; }
.package-card__title { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 0.5rem; }
.package-card__desc { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.package-card__list { list-style: none; margin-bottom: 2rem; flex: 1; }
.package-card__list li { padding: 0.5rem 0; font-size: 0.88rem; color: var(--ink-soft); border-bottom: 1px solid var(--stone-light); display: flex; align-items: flex-start; gap: 0.6rem; }
.package-card__list li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
@media (max-width: 960px) { .packages-grid { grid-template-columns: 1fr; } }

/* ─── Services Mosaic (Gold Icons) ─────── */
.services-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(188, 171, 133, 0.2); border: 1px solid rgba(188, 171, 133, 0.2); margin-top: 3rem; }
.service-tile { background: var(--navy); padding: 2rem 1.5rem; transition: background var(--duration-fast); }
.service-tile:hover { background: var(--navy-light); }
.service-tile__icon { margin-bottom: 1rem; }
.service-tile__title { font-family: var(--font-display); font-size: 1.1rem; color: white; margin-bottom: 0.5rem; }
.service-tile__text { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
@media (max-width: 768px) { .services-mosaic { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .services-mosaic { grid-template-columns: 1fr; } }

/* ─── Berufsfelder Cards ───────────────── */
.berufsfelder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.beruf-card { background: white; border: 1px solid var(--stone); padding: 2rem; transition: all var(--duration-fast); }
.beruf-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.beruf-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.beruf-card p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.6; margin-bottom: 1rem; }
.beruf-card__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.beruf-tag { padding: 0.2rem 0.5rem; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.03em; border-radius: 2px; background: var(--stone-light); color: var(--ink-muted); }
.beruf-tag--level { background: var(--navy); color: white; }
.beruf-tag--type { background: var(--gold-pale); color: var(--gold-dark); }
@media (max-width: 960px) { .berufsfelder-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .berufsfelder-grid { grid-template-columns: 1fr; } }

/* ─── Education Section ────────────────── */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.edu-levels { display: flex; flex-direction: column; gap: 1rem; }
.edu-level { display: flex; align-items: center; gap: 1.5rem; padding: 1.2rem 1.5rem; background: white; border: 1px solid var(--stone); transition: all var(--duration-fast); }
.edu-level:hover { border-color: var(--gold); transform: translateX(4px); }
.edu-level__badge { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); min-width: 2.5rem; }
.edu-level__info h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 0.15rem; }
.edu-level__info p { font-size: 0.8rem; color: var(--ink-muted); }
@media (max-width: 768px) { .edu-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ─── FAQ ──────────────────────────────── */
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-item__q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--navy); text-align: left; transition: color var(--duration-fast); }
.faq-item__q:hover { color: var(--gold-dark); }
.faq-item__q .icon { font-size: 1.5rem; color: var(--gold); transition: transform var(--duration-fast); flex-shrink: 0; }
.faq-item.open .faq-item__q .icon { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease-out); }
.faq-item.open .faq-item__a { max-height: 500px; }
.faq-item__a-inner { padding: 0 0 1.5rem; font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8; max-width: 700px; }

/* ─── Forms ────────────────────────────── */
.form-section { background: var(--navy); padding: clamp(4rem, 8vw, 10rem) 0; position: relative; }
.form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-info { color: white; }
.form-info h2 { color: white; margin-bottom: 1rem; }
.form-info p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.form-benefits { list-style: none; }
.form-benefits li { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.form-benefits li::before { content: '→'; color: var(--gold); font-weight: 700; }
.form-box { background: white; padding: 2.5rem; border-radius: 3px; }
.form-box h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-box .form-sub { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1px solid var(--stone); border-radius: 2px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ink); background: var(--cream);
  transition: border-color var(--duration-fast); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input[type="file"] { padding: 0.5rem; font-size: 0.82rem; }
.form-submit { margin-top: 1.5rem; width: 100%; }

.dsgvo-check { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 1rem; }
.dsgvo-check input[type="checkbox"] { margin-top: 0.25rem; accent-color: var(--navy); }
.dsgvo-check label { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.5; }
.dsgvo-check a { text-decoration: underline; color: var(--navy); }

@media (max-width: 768px) {
  .form-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 1.5rem; }
}

/* ─── Footer ───────────────────────────── */
.footer { background: var(--navy-deep); color: white; padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer__col h4 { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 0.3rem 0; transition: color var(--duration-fast); }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--duration-fast); }
.footer__legal a:hover { color: var(--gold-light); }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__bottom { flex-direction: column; text-align: center; } }

/* ─── Honeypot ─────────────────────────── */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* ─── Reveal Animations ────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: all 0.6s var(--ease-out); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(9) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(10) { transition-delay: 0.72s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(11) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(12) { transition-delay: 0.88s; opacity: 1; transform: translateY(0); }

/* ─── Landing Page Hero ────────────────── */
.landing-hero { background: var(--navy); padding: 8rem 0 4rem; color: white; text-align: center; position: relative; overflow: hidden; }
.landing-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to bottom, transparent, var(--cream)); }
.landing-hero h1 { color: white; margin-bottom: 1rem; }
.landing-hero h1 em { color: var(--gold); }
.landing-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* ─── Wizard ───────────────────────────── */
.wizard { max-width: 680px; margin: 0 auto; }
.wizard-step { display: none; animation: fadeIn 0.4s var(--ease-out); }
.wizard-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wizard-question { text-align: center; margin-bottom: 2rem; }
.wizard-question h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.wizard-question p { color: var(--ink-muted); font-size: 0.95rem; }
.wizard-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wizard-option { padding: 1.5rem; border: 2px solid var(--stone); border-radius: 3px; text-align: center; cursor: pointer; transition: all var(--duration-fast); background: white; }
.wizard-option:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.wizard-option.selected { border-color: var(--navy); background: var(--gold-pale); }
.wizard-option__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.3rem; }
.wizard-option__desc { font-size: 0.78rem; color: var(--ink-muted); }
.wizard-progress { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.wizard-progress__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--stone); transition: all var(--duration-fast); }
.wizard-progress__dot.active { background: var(--navy); width: 24px; border-radius: 4px; }
.wizard-progress__dot.done { background: var(--gold); }

.result-ko, .result-pool, .result-match { text-align: center; padding: 3rem 2rem; border-radius: 3px; }
.result-ko { background: var(--cream-warm); border: 1px solid var(--stone); }
.result-pool { background: var(--gold-pale); border: 1px solid var(--gold); }
.result-match { background: white; border: 2px solid var(--gold); }
.result-ko h3, .result-pool h3, .result-match h3 { color: var(--navy); margin-bottom: 1rem; }
.result-ko p, .result-pool p, .result-match p { color: var(--ink-muted); margin-bottom: 1.5rem; }

/* ─── Legal Pages ──────────────────────── */
.legal-page { padding: 8rem 0 4rem; }
.legal-page h1 { font-size: clamp(2rem, 3vw, 2.8rem); color: var(--navy); margin-bottom: 2rem; }
.legal-content h2, .legal-content h3 { font-size: 1.2rem; color: var(--navy); margin: 2rem 0 0.8rem; }
.legal-content p { color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.8; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--navy); text-decoration: underline; }

/* ─── Cookie Banner ────────────────────── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-deep); color: white; padding: 1rem 2rem; display: flex; justify-content: center; align-items: center; gap: 1.5rem; z-index: 9999; font-size: 0.82rem; }
.cookie-banner.hidden { display: none; }
.cookie-banner button { padding: 0.4rem 1rem; background: var(--gold); color: var(--navy-deep); font-weight: 600; font-size: 0.78rem; border-radius: 2px; }

/* ─── Utilities ────────────────────────── */
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.text-center { text-align: center; }
.hidden { display: none; }
@media print { .nav, .footer, .form-section, .cookie-banner { display: none; } body { background: white; } }
