:root {
  --ink: #0b1020;
  --ink-soft: #171d32;
  --paper: #f6f7f2;
  --white: #ffffff;
  --muted: #5f6678;
  --line: rgba(11, 16, 32, 0.12);
  --lime: #c8ff4d;
  --lime-dark: #9de013;
  --violet: #806bff;
  --blue: #4f73ff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(11, 16, 32, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }
::selection { background: var(--lime); color: var(--ink); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 16px; border-radius: 10px; background: var(--lime); font-weight: 800; }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 80px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(11, 16, 32, .88); border-bottom-color: rgba(255,255,255,.1); backdrop-filter: blur(18px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 820; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: var(--lime); color: var(--ink); transform: rotate(-7deg); box-shadow: 0 6px 20px rgba(200,255,77,.16); }
.brand-mark span { transform: rotate(7deg); font-size: 17px; font-weight: 900; }
.brand-accent { color: var(--lime); }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; }
.main-nav > a:not(.button) { color: rgba(255,255,255,.72); transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--white); }
.language-switcher { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.04); }
.language-switcher a { display: grid; place-items: center; min-width: 27px; height: 25px; border-radius: 5px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 850; letter-spacing: .05em; transition: color .2s, background .2s; }
.language-switcher a:hover { color: var(--white); }
.language-switcher a[aria-current="page"] { color: var(--ink); background: var(--lime); }
.menu-toggle { display: none; border: 0; background: none; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px 0; background: currentColor; transition: .2s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 780; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 12px 32px rgba(200,255,77,.18); }
.button-primary:hover { background: #d6ff77; box-shadow: 0 16px 42px rgba(200,255,77,.24); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.button-small { min-height: 42px; padding: 0 17px; border-radius: 10px; }

.hero { position: relative; min-height: 820px; padding: 154px 0 100px; color: var(--white); background: var(--ink); overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.hero-glow { position: absolute; z-index: -1; width: 500px; height: 500px; border-radius: 50%; filter: blur(100px); opacity: .2; }
.hero-glow-one { right: 2%; top: 7%; background: var(--violet); }
.hero-glow-two { left: -15%; bottom: -20%; background: var(--blue); opacity: .12; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.045); font-size: 12px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.status-dot { position: relative; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200,255,77,.1); }
.hero h1 { max-width: 700px; margin-bottom: 25px; font-size: clamp(48px, 5.7vw, 78px); line-height: .99; letter-spacing: -.065em; }
html[lang="de"] .hero h1 { font-size: clamp(46px, 5vw, 68px); }
.text-gradient { color: transparent; background: linear-gradient(100deg, var(--lime) 10%, #8bffc7 55%, #9caeff); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.68); font-size: 20px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 35px 0 0; padding: 26px 0 0; border-top: 1px solid rgba(255,255,255,.1); list-style: none; color: rgba(255,255,255,.62); font-size: 13px; }
.hero-trust span { margin-right: 6px; color: var(--lime); font-weight: 900; }

.hero-visual { position: relative; min-height: 515px; display: grid; place-items: center; }
.visual-grid { position: absolute; inset: 6%; border-radius: 50%; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 35px 35px; mask-image: radial-gradient(circle, black, transparent 66%); }
.orbit { position: absolute; border: 1px solid rgba(200,255,77,.16); border-radius: 50%; animation: rotate 20s linear infinite; }
.orbit::before { content: ""; position: absolute; top: 22%; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px rgba(200,255,77,.8); }
.orbit-one { width: 450px; height: 450px; }
.orbit-two { width: 345px; height: 345px; animation-direction: reverse; animation-duration: 15s; }
.orbit-two::before { background: var(--violet); box-shadow: 0 0 18px rgba(128,107,255,.8); }
@keyframes rotate { to { transform: rotate(360deg); } }
.result-card { position: relative; z-index: 2; width: min(390px, 82%); padding: 26px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055)); box-shadow: 0 40px 90px rgba(0,0,0,.35); backdrop-filter: blur(22px); transform: rotate(-2deg); }
.result-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: 13px; font-weight: 700; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; color: var(--lime); background: rgba(200,255,77,.09); }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.result-score { display: grid; grid-template-columns: 1fr auto; padding: 23px 0 15px; align-items: end; }
.score-label { grid-column: 1 / -1; color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.result-score strong { margin-top: 3px; font-size: 36px; line-height: 1.1; letter-spacing: -.04em; }
.score-change { padding-bottom: 4px; color: var(--lime); font-size: 12px; font-weight: 700; }
.mini-chart { display: flex; align-items: end; gap: 7px; height: 100px; padding: 15px 0 5px; }
.mini-chart span { flex: 1; height: var(--h); min-height: 10px; border-radius: 4px 4px 2px 2px; background: linear-gradient(to top, rgba(200,255,77,.28), var(--lime)); opacity: .9; animation: bars .8s both cubic-bezier(.2,.8,.2,1); }
@keyframes bars { from { height: 4%; opacity: 0; } }
.result-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 17px; }
.result-metrics div { padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.07); }
.result-metrics span { display: block; color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; }
.result-metrics strong { color: var(--lime); font-size: 18px; }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; min-width: 150px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(18,25,46,.88); box-shadow: 0 18px 45px rgba(0,0,0,.28); backdrop-filter: blur(15px); font-size: 13px; font-weight: 750; animation: float 4s ease-in-out infinite; }
.float-card small { display: block; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.float-icon { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 9px; color: var(--ink); background: var(--lime); font-size: 10px; font-weight: 900; }
.float-card-one { top: 12%; left: -2%; }
.float-card-two { right: -4%; bottom: 14%; animation-delay: -2s; }
.float-card-two .float-icon { color: var(--white); background: var(--violet); }
@keyframes float { 50% { transform: translateY(-9px); } }

.outcome-strip { position: relative; z-index: 3; margin-top: -45px; }
.outcome-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.outcome-intro, .outcome-card { min-height: 235px; padding: 35px; }
.outcome-intro { display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--blue); }
.outcome-intro h2 { margin: 8px 0 0; font-size: 27px; line-height: 1.2; letter-spacing: -.04em; }
.section-kicker { color: var(--blue); font-size: 11px; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.outcome-intro .section-kicker { color: rgba(255,255,255,.68); }
.outcome-card { position: relative; border-right: 1px solid var(--line); }
.outcome-card:last-child { border: 0; }
.outcome-number { position: absolute; top: 24px; right: 24px; color: #a3a8b3; font-size: 10px; font-weight: 800; }
.outcome-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 23px; border-radius: 10px; background: #eef1ea; font-size: 18px; font-weight: 800; }
.outcome-card h3 { margin-bottom: 8px; font-size: 18px; }
.outcome-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.section { padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; margin-bottom: 75px; }
.section-heading h2, .areas-copy h2, .fit-panel h2, .faq-heading h2, .contact-copy h2 { margin: 10px 0 0; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.05; letter-spacing: -.055em; }
.section-heading > p { max-width: 460px; margin: 0; color: var(--muted); font-size: 17px; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.timeline::before { content: ""; position: absolute; top: 25px; left: 25px; right: 25px; height: 1px; background: var(--line); }
.timeline-step { position: relative; }
.step-marker { position: relative; z-index: 1; display: grid; place-items: center; width: 51px; height: 51px; margin-bottom: 31px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); }
.step-marker span { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; color: var(--white); background: var(--ink); font-size: 12px; font-weight: 800; }
.timeline-step:last-child .step-marker span { color: var(--ink); background: var(--lime); }
.step-meta { margin-bottom: 10px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.timeline h3 { margin-bottom: 10px; font-size: 21px; letter-spacing: -.025em; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; }

.areas-section { position: relative; color: var(--white); background: var(--ink-soft); overflow: hidden; }
.areas-section::before { content: "AI"; position: absolute; right: -4vw; bottom: -14vw; color: rgba(255,255,255,.018); font-size: 38vw; font-weight: 900; line-height: 1; letter-spacing: -.1em; }
.areas-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: start; }
.areas-copy { position: sticky; top: 130px; }
.section-kicker-light { color: var(--lime); }
.areas-copy h2 { margin-bottom: 26px; }
.areas-copy p { max-width: 450px; color: rgba(255,255,255,.58); font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 16px; padding-bottom: 6px; border-bottom: 1px solid rgba(200,255,77,.35); color: var(--lime); font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.area-card { min-height: 255px; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.04); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.area-card:hover { transform: translateY(-4px); border-color: rgba(200,255,77,.28); background: rgba(255,255,255,.075); }
.area-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 53px; }
.area-tag { padding: 6px 9px; border-radius: 999px; color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.area-arrow { color: var(--lime); }
.area-card h3 { margin-bottom: 10px; font-size: 21px; }
.area-card p { margin: 0; color: rgba(255,255,255,.52); font-size: 14px; }

.compliance-section { padding-bottom: 35px; }
.compliance-shell { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 75px; padding: 66px; border-radius: 28px; color: var(--white); background: radial-gradient(circle at 20% 110%, rgba(79,115,255,.42), transparent 42%), linear-gradient(135deg, #11182d, #171d3c 72%, #28205d); box-shadow: 0 32px 90px rgba(11,16,32,.18); overflow: hidden; }
.compliance-shell::before { content: ""; position: absolute; top: -120px; left: 31%; width: 330px; height: 330px; border: 1px solid rgba(200,255,77,.1); border-radius: 50%; box-shadow: 0 0 0 55px rgba(200,255,77,.018), 0 0 0 110px rgba(200,255,77,.012); }
.compliance-copy, .compliance-docs { position: relative; }
.compliance-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.62); background: rgba(255,255,255,.05); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.compliance-badge span { color: var(--lime); font-size: 8px; }
.compliance-copy > .section-kicker { display: block; }
.compliance-copy h2 { margin: 11px 0 23px; font-size: clamp(38px, 4vw, 55px); line-height: 1.03; letter-spacing: -.055em; }
.compliance-copy > p { max-width: 500px; color: rgba(255,255,255,.62); font-size: 16px; }
.compliance-docs { padding: 29px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.08); box-shadow: 0 28px 60px rgba(0,0,0,.2); backdrop-filter: blur(18px); }
.docs-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.docs-header span:not(.docs-status) { display: block; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.docs-header strong { display: block; margin-top: 3px; font-size: 20px; }
.docs-status { display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 999px; color: var(--lime); background: rgba(200,255,77,.09); font-size: 9px; font-weight: 750; white-space: nowrap; }
.docs-status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.docs-list { margin: 0; padding: 8px 0 0; list-style: none; }
.docs-list li { display: grid; grid-template-columns: 31px 1fr; gap: 12px; align-items: start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.doc-check { display: grid; place-items: center; width: 27px; height: 27px; margin-top: 2px; border-radius: 8px; color: var(--ink); background: var(--lime); font-size: 12px; font-weight: 900; }
.docs-list strong { display: block; font-size: 13px; }
.docs-list small { display: block; margin-top: 2px; color: rgba(255,255,255,.47); font-size: 11px; line-height: 1.45; }
.docs-note { margin: 17px 0 0; color: rgba(255,255,255,.38); font-size: 9px; line-height: 1.5; }

.fit-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; align-items: start; }
.fit-panel h2 { margin-bottom: 24px; }
.fit-panel p { color: var(--muted); font-size: 17px; }
.fit-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.fit-list li { display: grid; grid-template-columns: 45px 1fr; gap: 22px; align-items: center; min-height: 108px; border-bottom: 1px solid var(--line); }
.fit-list span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--white); color: var(--blue); font-size: 10px; font-weight: 850; }
.fit-list p { margin: 0; font-size: 18px; font-weight: 690; line-height: 1.4; letter-spacing: -.01em; }

.faq-section { padding-top: 50px; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; }
.faq-heading h2 { margin-bottom: 22px; }
.faq-heading p { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 25px 0; border: 0; background: transparent; text-align: left; font-size: 17px; font-weight: 730; cursor: pointer; }
.faq-item button i { position: relative; flex: 0 0 auto; width: 24px; height: 24px; margin-left: 20px; border-radius: 50%; background: var(--white); }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 11px; left: 7px; width: 10px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { padding: 0 50px 24px 0; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 14px; }

.contact-section { position: relative; padding: 120px 0; color: var(--white); background: var(--blue); overflow: hidden; }
.contact-section::before { content: ""; position: absolute; left: -20%; bottom: -80%; width: 780px; height: 780px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.contact-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: center; }
.contact-copy h2 { margin-bottom: 25px; }
.contact-copy > p { max-width: 490px; color: rgba(255,255,255,.7); font-size: 18px; }
.contact-points { margin: 32px 0; }
.contact-points div { display: flex; align-items: center; gap: 14px; margin: 13px 0; }
.contact-points span { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; font-size: 9px; font-weight: 800; }
.contact-points p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }
.contact-email { display: inline-block; margin-top: 8px; border-bottom: 1px solid rgba(255,255,255,.45); font-weight: 750; }
.contact-form { padding: 36px; border-radius: 22px; color: var(--ink); background: var(--white); box-shadow: 0 35px 80px rgba(21,38,120,.28); }
.form-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 27px; font-size: 20px; font-weight: 820; }
.form-time { padding: 6px 9px; border-radius: 999px; color: var(--muted); background: #f2f3ef; font-size: 10px; font-weight: 750; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label:not(.checkbox-label):not(.honeypot) { display: block; margin-bottom: 15px; color: #3e4557; font-size: 12px; font-weight: 750; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #dfe2e8; border-radius: 10px; outline: 0; color: var(--ink); background: #fafbf8; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { min-height: 112px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,115,255,.11); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a2a6af; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; margin: 3px 0 20px; color: var(--muted); font-size: 11px; line-height: 1.45; cursor: pointer; }
.checkbox-label input { margin-top: 2px; accent-color: var(--blue); }
.checkbox-label a { text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; }
.button-submit { width: 100%; background: var(--ink); color: var(--white); box-shadow: none; }
.button-submit:hover { background: var(--ink-soft); box-shadow: none; }
.button-submit[disabled] { opacity: .65; cursor: wait; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

.site-footer { padding: 46px 0 26px; color: var(--white); background: #080c17; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-top p { margin: 0; color: rgba(255,255,255,.45); font-size: 14px; }
.footer-top nav { display: flex; gap: 24px; color: rgba(255,255,255,.62); font-size: 13px; }
.footer-top nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: rgba(255,255,255,.35); font-size: 11px; }

.privacy-page { min-height: 100vh; padding: 130px 0 80px; background: var(--paper); }
.privacy-page .brand { color: var(--ink); }
.privacy-card { max-width: 820px; margin: auto; padding: 55px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.privacy-card h1 { font-size: clamp(38px, 6vw, 58px); line-height: 1; letter-spacing: -.055em; }
.privacy-card h2 { margin-top: 35px; font-size: 21px; }
.privacy-card p, .privacy-card li { color: var(--muted); }
.back-link { display: inline-block; margin-bottom: 28px; color: var(--blue); font-weight: 750; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 1020px) {
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { width: min(600px, 100%); margin: 0 auto; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .outcome-intro { min-height: 190px; }
  .outcome-card { min-height: 210px; }
  .outcome-card:nth-child(2) { border-bottom: 1px solid var(--line); }
  .timeline { grid-template-columns: 1fr 1fr; gap: 50px 35px; }
  .timeline::before { display: none; }
  .areas-grid, .fit-grid, .faq-grid, .contact-grid { gap: 60px; }
  .compliance-shell { gap: 45px; padding: 48px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 680px); }
  .site-header { height: 70px; }
  .menu-toggle { display: block; color: var(--white); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 70px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 25px 24px; background: rgba(11,16,32,.98); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s; }
  .main-nav.open { transform: none; visibility: visible; }
  .main-nav > a:not(.button) { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: var(--white); font-size: 18px; }
  .language-switcher { align-self: flex-start; margin-top: 20px; }
  .language-switcher a { min-width: 38px; height: 33px; font-size: 11px; }
  .main-nav .button { margin-top: 22px; }
  .section { padding: 95px 0; }
  .section-heading, .areas-grid, .fit-grid, .faq-grid, .contact-grid, .compliance-shell { grid-template-columns: 1fr; }
  .section-heading { gap: 25px; margin-bottom: 55px; }
  .areas-copy { position: relative; top: auto; }
  .compliance-shell { gap: 38px; }
  .compliance-badge { margin-bottom: 24px; }
  .faq-section { padding-top: 20px; }
}

@media (max-width: 590px) {
  .container { width: min(100% - 28px, 520px); }
  .hero { padding: 125px 0 80px; }
  .hero h1 { font-size: clamp(43px, 13vw, 60px); }
  html[lang="de"] .hero h1 { font-size: clamp(40px, 11.5vw, 52px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { display: grid; }
  .hero-visual { min-height: 420px; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 270px; height: 270px; }
  .result-card { width: 88%; padding: 21px; }
  .float-card { min-width: 130px; padding: 10px; }
  .float-card-one { top: 4%; left: 0; }
  .float-card-two { right: -1%; bottom: 6%; }
  .outcome-strip { margin-top: -28px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-intro, .outcome-card { min-height: auto; padding: 29px; }
  .outcome-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .outcome-icon { margin-bottom: 15px; }
  .section-heading h2, .areas-copy h2, .fit-panel h2, .faq-heading h2, .contact-copy h2 { font-size: 38px; }
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .step-marker { margin-bottom: 20px; }
  .areas-list { grid-template-columns: 1fr; }
  .area-card { min-height: 220px; }
  .compliance-section { padding-top: 75px; }
  .compliance-shell { padding: 32px 20px; border-radius: 22px; }
  .compliance-copy h2 { font-size: 38px; }
  .compliance-docs { padding: 22px 17px; }
  .docs-header { align-items: flex-start; }
  .docs-status { margin-top: 2px; }
  .fit-grid, .faq-grid, .contact-grid { gap: 45px; }
  .fit-list p { font-size: 16px; }
  .contact-section { padding: 90px 0; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top nav { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .privacy-card { padding: 35px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
