/* ============================================================
   VYCE — Digitale Freezone-Plattform VAE
   Designsystem v0.1 (statischer Prototyp, später Next.js)
   ============================================================ */

:root {
  --navy: #0a1f33;
  --navy-2: #10304d;
  --navy-3: #16436b;
  --gold: #c9a45c;
  --gold-dark: #a9843f;
  --sand: #f6f1e7;
  --ink: #1c2733;
  --ink-soft: #4a5a6a;
  --line: #e4e0d6;
  --white: #ffffff;
  --green: #1e7f5c;
  --red: #b23a3a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 31, 51, 0.10);
  --shadow-soft: 0 4px 14px rgba(10, 31, 51, 0.07);
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--navy-3); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 750; }
h3 { font-size: 1.22rem; font-weight: 700; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.86rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: baseline; gap: 8px; text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo .word {
  font-size: 1.45rem; font-weight: 850; letter-spacing: 0.06em; color: var(--navy);
}
.logo .word span { color: var(--gold); }
.logo .tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.main-nav a:hover { color: var(--navy-3); text-decoration: none; }
.main-nav .nav-cta {
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 999px;
  transition: background 0.15s ease;
}
.main-nav .nav-cta:hover { background: var(--navy-3); color: #fff; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--navy); cursor: pointer; }

/* Sprach- & Währungs-Umschalter */
.switches { display: flex; align-items: center; gap: 10px; }
.pill-switch {
  display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px;
  overflow: hidden; background: #fff;
}
.pill-switch button, .pill-switch a {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font); font-size: 0.78rem; font-weight: 700;
  padding: 6px 11px; color: var(--ink-soft); text-decoration: none; line-height: 1;
  display: inline-flex; align-items: center;
}
.pill-switch .active { background: var(--navy); color: #fff; }
.pill-switch button:hover:not(.active), .pill-switch a:hover:not(.active) { color: var(--navy); text-decoration: none; }
@media (max-width: 880px) {
  .main-nav .switches { margin-top: 4px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 18px 24px 24px; gap: 16px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: #fff; padding: 84px 0 96px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -180px; top: -180px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,92,0.22), transparent 65%);
}
.hero .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead { color: rgba(255,255,255,0.82); margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
}

/* Preisbeispiel-Karte im Hero */
.price-card {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px 26px 22px;
}
.price-card h3 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.price-card .pc-sub { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }
.price-card ul { list-style: none; margin: 0 0 14px; }
.price-card li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 0.93rem;
}
.price-card li:last-child { border-bottom: none; }
.price-card .sum {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 2px solid var(--navy); padding-top: 12px; margin-top: 4px;
}
.price-card .sum strong { font-size: 1.5rem; color: var(--navy); }
.price-card .renewal {
  background: var(--sand); border-radius: 10px; padding: 10px 14px; margin-top: 14px;
  font-size: 0.88rem; display: flex; justify-content: space-between;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: none; text-align: center; transition: transform 0.12s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #d6b26c; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-3); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

/* ---------- Sektionen ---------- */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .muted { color: rgba(255,255,255,0.72); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Karten-Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-soft);
}
.card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--sand); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Prozess-Timeline ---------- */
.timeline { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.timeline li { counter-increment: step; position: relative; padding-top: 58px; }
.timeline li::before {
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.timeline li::after {
  content: ""; position: absolute; top: 21px; left: 52px; right: -8px; height: 2px;
  background: var(--line);
}
.timeline li:last-child::after { display: none; }
.timeline.steps-3 { grid-template-columns: repeat(3, 1fr); }
.timeline h3 { font-size: 1rem; margin-bottom: 4px; }
.timeline p { font-size: 0.87rem; color: var(--ink-soft); }
.section-navy .timeline p { color: rgba(255,255,255,0.72); }
.section-navy .timeline li::after { background: rgba(255,255,255,0.18); }
@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; gap: 26px; }
  .timeline li { padding-top: 0; padding-left: 60px; }
  .timeline li::after { display: none; }
}

/* ---------- Paketkarten ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 1060px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft); position: relative;
}
.pkg.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); }
.pkg .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px;
  white-space: nowrap;
}
.pkg h3 { margin-bottom: 2px; }
.pkg .pkg-for { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; min-height: 2.4em; }
.pkg .pkg-price { font-size: 1.65rem; font-weight: 800; color: var(--navy); }
.pkg .pkg-price .cur { font-size: 0.9rem; font-weight: 700; color: var(--ink-soft); margin-right: 4px; }
.pkg .pkg-price-note { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 6px; }
.pkg .pkg-renewal {
  font-size: 0.83rem; background: var(--sand); border-radius: 8px;
  padding: 7px 10px; margin: 10px 0 16px;
}
.pkg ul { list-style: none; margin-bottom: 22px; flex: 1; }
.pkg li { padding: 6px 0 6px 26px; position: relative; font-size: 0.92rem; }
.pkg li::before { content: "✓"; position: absolute; left: 2px; color: var(--green); font-weight: 800; }
.pkg li.no::before { content: "—"; color: var(--ink-soft); }
.pkg .btn { width: 100%; }

/* ---------- Vergleichstabellen ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
table.cmp { width: 100%; border-collapse: collapse; background: #fff; font-size: 0.94rem; min-width: 640px; }
table.cmp th, table.cmp td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.cmp thead th { background: var(--navy); color: #fff; font-weight: 700; }
table.cmp tbody tr:nth-child(even) { background: #fafaf7; }
table.cmp td.good { color: var(--green); font-weight: 650; }
table.cmp td.bad { color: var(--red); }
table.cmp .rowhead { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 0; margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 22px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-dark); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 22px 18px; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Rezensionen ---------- */
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.review-card .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card blockquote { font-size: 0.97rem; color: var(--ink); margin: 0 0 16px; flex: 1; }
.review-card blockquote::before { content: "„"; color: var(--gold-dark); font-size: 1.4rem; font-weight: 800; margin-right: 2px; }
.review-card .r-meta { display: flex; align-items: center; gap: 12px; border-top: 1px dashed var(--line); padding-top: 14px; }
.review-card .r-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--navy); color: var(--gold); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
  overflow: hidden;
}
.review-card .r-avatar img { width: 100%; height: 100%; display: block; }
.review-card .r-name { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.review-card .r-context { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Trust / Notice ---------- */
.notice {
  background: var(--sand); border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0; padding: 16px 20px; font-size: 0.92rem; color: var(--ink-soft);
}
.notice strong { color: var(--ink); }
.notice + .notice { margin-top: 12px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; align-items: center; }
.trust-strip .t-item { text-align: center; }
.trust-strip .t-num { font-size: 1.7rem; font-weight: 800; color: var(--navy); }
.trust-strip .t-label { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Rechner ---------- */
.calc-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: start; }
@media (max-width: 880px) { .calc-layout { grid-template-columns: 1fr; } }

.calc-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 18px; box-shadow: var(--shadow-soft); }
.calc-step h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.calc-step h3 .n {
  width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff;
  font-size: 0.9rem; display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.opt-row { display: flex; flex-wrap: wrap; gap: 10px; }
.opt {
  border: 2px solid var(--line); border-radius: 12px; padding: 12px 18px;
  cursor: pointer; font-weight: 600; font-size: 0.95rem; background: #fff;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.opt:hover { border-color: var(--navy-3); }
.opt.active { border-color: var(--navy); background: var(--navy); color: #fff; }
.opt .opt-sub { display: block; font-size: 0.78rem; font-weight: 500; opacity: 0.75; }

.check-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.check-row:last-child { border-bottom: none; }
.check-row input { margin-top: 5px; width: 17px; height: 17px; accent-color: var(--navy); flex: none; }
.check-row .cr-label { font-weight: 650; font-size: 0.95rem; }
.check-row .cr-sub { font-size: 0.83rem; color: var(--ink-soft); }
.check-row .cr-price { margin-left: auto; font-weight: 700; font-size: 0.9rem; white-space: nowrap; color: var(--navy); }

.calc-result {
  position: sticky; top: 90px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow);
}
.calc-result h3 { color: #fff; margin-bottom: 4px; }
.calc-result .cr-zone { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.sum-block { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 16px 18px; margin-bottom: 14px; }
.sum-block .sb-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; }
.sum-block .sb-value { font-size: 1.9rem; font-weight: 800; }
.sum-block .sb-eur { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.sum-block .sb-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

.calc-result details { margin: 6px 0 16px; }
.calc-result summary { cursor: pointer; font-size: 0.9rem; font-weight: 650; color: var(--gold); }
.calc-result .items { list-style: none; margin-top: 10px; }
.calc-result .items li { display: flex; justify-content: space-between; gap: 14px; font-size: 0.87rem; padding: 5px 0; border-bottom: 1px dashed rgba(255,255,255,0.15); }
.calc-result .items li span:last-child { white-space: nowrap; }
.calc-result .disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 14px; }
.calc-result .btn { width: 100%; margin-top: 8px; }

/* ---------- Lead-Formular ---------- */
.lead-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
}
.lead-form .lf-step { margin-bottom: 24px; }
.lead-form .lf-label {
  display: block; font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 10px;
}
.lead-form .lf-label .optional { font-weight: 500; color: var(--ink-soft); font-size: 0.82rem; }
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--line); border-radius: 12px;
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  transition: border-color 0.12s ease; background: #fff;
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--navy);
}
.lead-form textarea { min-height: 96px; resize: vertical; }
.lead-form .lf-error { color: var(--red); font-size: 0.83rem; margin-top: 6px; display: none; }
.lead-form .btn { width: 100%; }
.lf-microcopy { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; }

.lf-success {
  display: none; background: #f0f7f3; border: 1px solid #bcd9cb; border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.lf-success h3 { color: var(--green); margin-bottom: 10px; }
.lf-success .summary {
  text-align: left; background: #fff; border: 1px dashed var(--line); border-radius: 10px;
  padding: 14px 18px; margin: 16px 0; font-size: 0.9rem; white-space: pre-line;
}

/* CTA-Microcopy unter Buttons */
.cta-micro { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 12px; }
section:not(.hero):not(.cta-band):not(.section-navy) .cta-micro { color: var(--ink-soft); }

/* Founder-Kasten */
.founder-box {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--sand); border-radius: var(--radius); padding: 22px 24px; margin-top: 22px;
}
.founder-box .f-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex: none;
  background: var(--navy); color: var(--gold); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.founder-box .f-name { font-weight: 800; color: var(--navy); }
.founder-box .f-role { font-size: 0.83rem; color: var(--ink-soft); margin-bottom: 6px; }
.founder-box p { font-size: 0.92rem; color: var(--ink-soft); }

/* Risk-Reversal */
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .risk-grid { grid-template-columns: 1fr; } }
.risk-item {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 22px;
}
.risk-item h3 { font-size: 1.02rem; margin-bottom: 8px; }
.risk-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   Designsystem v2 „Golden Hour Ledger" — Motion, Trust, Slider
   ============================================================ */

/* Elevation-Stufen */
:root {
  --elev-1: 0 4px 14px rgba(10, 31, 51, 0.07);
  --elev-2: 0 12px 28px rgba(10, 31, 51, 0.13);
  --elev-3: 0 28px 56px rgba(10, 31, 51, 0.18);
}

/* Scroll-Reveal (JS setzt .reveal + .in; Stagger via --d) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease var(--d, 0s), transform 0.5s ease var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* Hover-Choreografie */
.card, .pkg, .review-card, .risk-item { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.card:hover, .pkg:hover, .review-card:hover { transform: translateY(-2px); box-shadow: var(--elev-2); }
.btn { transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease; }
.btn-gold:hover { box-shadow: 0 6px 22px rgba(201, 164, 92, 0.45); }
.btn:active { transform: translateY(0px) scale(0.99); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Dubai-Skyline-Signatur (Linienkunst) */
.skyline {
  position: absolute; bottom: -2px; left: 0; right: 0;
  pointer-events: none; opacity: 0.4; z-index: 0;
}
.skyline svg { display: block; width: 100%; height: auto; }
.skyline path, .skyline ellipse {
  fill: none; stroke: var(--gold); stroke-width: 1.6;
  stroke-linejoin: round; stroke-linecap: round;
}
.skyline .draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: skyline-draw 1.4s ease-out 0.2s forwards; }
@keyframes skyline-draw { to { stroke-dashoffset: 0; } }
.hero .container { position: relative; z-index: 1; }

/* Trust-Leiste */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); padding: 16px 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 34px; }
.trust-bar .tb-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 650; color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.trust-bar .tb-item .tb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.trust-bar .tb-item.placeholder { opacity: 0.55; font-style: italic; font-weight: 500; }

/* Testimonial-Slider */
.t-slider { position: relative; }
.t-viewport { overflow: hidden; }
.t-track { display: flex; gap: 20px; transition: transform 0.45s ease; will-change: transform; }
.t-track .review-card { flex: 0 0 calc((100% - 40px) / 3); }
@media (max-width: 980px) { .t-track .review-card { flex-basis: calc((100% - 20px) / 2); } }
@media (max-width: 640px) { .t-track .review-card { flex-basis: 100%; } }
.t-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 26px; }
.t-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--navy); background: #fff; color: var(--navy);
  font-size: 1.2rem; cursor: pointer; line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}
.t-arrow:hover { background: var(--navy); color: #fff; }
.t-arrow:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; background: var(--line); cursor: pointer; transition: background 0.15s ease, transform 0.15s ease; }
.t-dot.active { background: var(--gold); transform: scale(1.25); }

/* Prozesslinie: zeichnet sich beim Reveal */
.timeline li::after { transform: scaleX(0); transform-origin: left; transition: transform 0.7s ease 0.3s; }
.timeline.in li::after { transform: scaleX(1); }

/* Zahlen tabellarisch ausrichten */
.money, .price-card li span:last-child, .pkg-price, table.cmp td, .sum-block .sb-value { font-variant-numeric: tabular-nums; }

/* Reduced Motion: alles sofort, nichts bewegt sich */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .skyline .draw { animation: none; stroke-dashoffset: 0; }
  .t-track { transition: none; }
  .timeline li::after { transform: scaleX(1); transition: none; }
  .card, .pkg, .review-card, .btn, .risk-item { transition: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 56px 0 32px; font-size: 0.92rem; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 880px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--gold); text-decoration: none; }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.site-footer .logo .word { color: #fff; }

/* ---------- CTA-Band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); color: #fff; text-align: center; padding: 64px 0; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto 28px; }

/* ---------- Prose (Recht, Ratgeber) ---------- */
.prose { max-width: 780px; }
.prose h2 { margin: 36px 0 12px; }
.prose h3 { margin: 26px 0 10px; }
.prose p, .prose ul, .prose ol { margin-bottom: 14px; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose strong { color: var(--ink); }

/* Seitentitel-Band */
.page-hero { background: var(--navy); color: #fff; padding: 56px 0 48px; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 10px; }
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 720px; }

/* ==== Foto-Assets (Golden-Hour-Fotografie, v9) ==== */
.price-card ul li span:last-child { white-space: nowrap; }
.figure-photo { margin: 0 0 22px; }
.figure-photo img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
.figure-photo.on-navy img { border: 1px solid rgba(201, 164, 92, 0.3); }
.figure-photo.on-light img { border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg picture, .hero-bg img { display: block; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: 70% 32%; border-radius: 0; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(92deg, rgba(10,31,51,0.97) 0%, rgba(10,31,51,0.9) 40%, rgba(10,31,51,0.6) 78%, rgba(10,31,51,0.45) 100%),
    linear-gradient(180deg, rgba(10,31,51,0.3) 0%, rgba(10,31,51,0.42) 55%, rgba(10,31,51,0.94) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .hero-bg::after {
  background:
    linear-gradient(92deg, rgba(10,31,51,0.96) 0%, rgba(10,31,51,0.88) 45%, rgba(10,31,51,0.66) 100%),
    linear-gradient(180deg, rgba(10,31,51,0.35) 0%, rgba(10,31,51,0.85) 100%);
}
@media (max-width: 900px) {
  .hero-bg::after { background: linear-gradient(180deg, rgba(10,31,51,0.94) 0%, rgba(10,31,51,0.88) 60%, rgba(10,31,51,0.96) 100%); }
}

/* ============================================================
   Kinematik v10 — Bewegtbild-Wirkung ohne Videodateien
   Ken Burns (langsame Kamerafahrt) + Golden-Hour-Lichtwanderung.
   Nur transform/opacity → GPU, kein Layout-Shift, 0 KB Transfer.
   ============================================================ */

/* ---- Scroll-Bühne: gibt dem Hero-Video Strecke zum Ablaufen ----
   Die Sektion ist höher als der Bildschirm; ihr Inhalt bleibt sichtbar
   („sticky"), während man durch die Strecke scrollt. So läuft die
   Kamerafahrt über mehrere Bildschirmhöhen ab statt in 0,5 Sekunden.
   Ohne Video (Mobile, reduced-motion) fällt alles auf normale Höhe zurück. */
.hero-stage { padding: 0; height: 230vh; }
.hero-sticky {
  position: sticky; top: 0;
  min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 84px 0;
}
.hero-stage .hero-bg { position: absolute; inset: 0; }
@media (max-width: 900px) {
  .hero-stage { height: auto; }
  .hero-sticky { position: static; min-height: 0; padding: 56px 0 64px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage { height: auto; }
  .hero-sticky { position: static; min-height: 0; }
}

/* Scroll-Video: liegt über dem Standbild, wird erst sichtbar,
   wenn es wirklich geladen ist (sonst bleibt das Foto stehen) */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% 45%;
  opacity: 0; transition: opacity 0.6s ease;
  z-index: 1; pointer-events: none;
}
.hero-bg.video-bereit .hero-video { opacity: 1; }
/* Standbild bleibt darunter als Sofort-Anzeige und Fallback */
.hero-bg.video-bereit picture { opacity: 0; transition: opacity 0.6s ease; }
.hero-bg::after { z-index: 2; } /* Farbverlauf immer über Video und Bild */

/* Ken Burns: sehr langsame Kamerafahrt über das Hero-Foto.
   40 s Zyklus, Endlos-Alternate — bewusst so langsam, dass die
   Bewegung spürbar, aber nie ablenkend ist. */
.hero-bg img {
  transform-origin: 65% 40%;
  will-change: transform;
  animation: kenburns 44s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(-1.2%, -1.4%, 0); }
}
/* Untergeordnete Seiten-Heroes: kürzerer Weg, gleicher Charakter */
.page-hero .hero-bg img {
  transform-origin: 60% 45%;
  animation-duration: 52s;
}

/* Golden-Hour-Sweep: ein sehr weiches Lichtband wandert über das
   Hero — simuliert Sonnenstand-Wechsel zur goldenen Stunde. */
.hero::before,
.page-hero::before {
  content: "";
  position: absolute; inset: -20% -10%;
  z-index: 0; pointer-events: none;
  background: radial-gradient(45% 55% at 50% 50%, rgba(201, 164, 92, 0.16) 0%, rgba(201, 164, 92, 0.06) 45%, transparent 72%);
  will-change: transform, opacity;
  animation: gold-sweep 26s ease-in-out infinite alternate;
}
@keyframes gold-sweep {
  from { transform: translate3d(-14%, 6%, 0) scale(1); opacity: 0.75; }
  to   { transform: translate3d(16%, -8%, 0) scale(1.18); opacity: 1; }
}

/* Skyline-Signatur: atmet nach dem Zeichnen sanft weiter */
.skyline { animation: skyline-breathe 14s ease-in-out 2s infinite alternate; }
@keyframes skyline-breathe {
  from { opacity: 0.34; }
  to   { opacity: 0.5; }
}

/* Leistungs-Gegenüberstellung (Transparenz-Sektion, ohne Beträge) */
.ig-checklist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  max-width: 940px; margin: 0 auto 18px;
}
@media (max-width: 780px) { .ig-checklist { grid-template-columns: 1fr; } }
.ig-col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 22px; box-shadow: var(--elev-1);
}
.ig-col h3 { margin-bottom: 14px; font-size: 1.08rem; }
.ig-col ul { list-style: none; }
.ig-col li {
  position: relative; padding: 9px 0 9px 30px;
  border-bottom: 1px dashed var(--line); font-size: 0.94rem; color: var(--ink-soft);
}
.ig-col li:last-child { border-bottom: none; }
.ig-col li::before {
  content: "✓"; position: absolute; left: 2px; top: 8px;
  color: var(--green); font-weight: 800;
}
/* Rechte Spalte: was NICHT passiert — bewusst anderes Zeichen und Akzent */
.ig-col-accent { background: var(--navy); border-color: var(--navy); }
.ig-col-accent h3 { color: var(--gold); }
.ig-col-accent li { color: rgba(255,255,255,0.82); border-bottom-color: rgba(255,255,255,0.14); }
.ig-col-accent li::before { content: "✕"; color: var(--gold); font-weight: 700; }

/* Kostenwahrheit-Infografik (IG1) — Balken wachsen im Viewport */
.ig-bars { display: grid; gap: 22px; max-width: 860px; margin: 0 auto; }
.ig-row { display: grid; grid-template-columns: 190px 1fr auto; gap: 18px; align-items: center; }
@media (max-width: 720px) {
  .ig-row { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .ig-row .ig-label { grid-column: 1 / -1; }
}
.ig-label { font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.ig-label span { display: block; font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); }
.ig-bar { position: relative; height: 46px; background: #f2efe8; border-radius: 8px; overflow: hidden; }
.ig-seg {
  position: absolute; top: 0; bottom: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s cubic-bezier(.22,.7,.3,1) var(--sd, 0s);
}
.ig-bars.in .ig-seg { transform: scaleX(1); }
.ig-seg-1 { background: var(--navy-3); }
.ig-seg-2 { background: var(--navy-2); }
.ig-seg-3 { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.ig-seg-r { background: linear-gradient(90deg, var(--navy-3), var(--navy-2)); }
/* Summe steht als eigene Spalte neben dem Balken — nie darüber */
.ig-total {
  font-size: 1.02rem; font-weight: 800; color: var(--navy);
  white-space: nowrap; font-variant-numeric: tabular-nums;
  opacity: 0; transition: opacity 0.4s ease 0.85s;
  justify-self: end;
}
.ig-bars.in .ig-total { opacity: 1; }
.ig-legend { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin-top: 6px; }
.ig-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--ink-soft); }
.ig-legend i { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.ig-note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; margin-top: 6px; }

/* Reduced Motion: jede Kamerafahrt und jedes Licht steht still */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img,
  .hero::before,
  .page-hero::before,
  .skyline { animation: none !important; }
  .hero-bg img { transform: scale(1.04); }
  .ig-seg { transition: none; transform: scaleX(1); }
}

/* Einwilligung und Bot-Falle im Anfrageformular */
.lf-consent { border-bottom: none; margin-top: 4px; align-items: flex-start; }
.lf-consent .cr-sub { line-height: 1.5; }
.lf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lf-success #lf-referenz { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; color: var(--navy); }
