/* ============================================================
   amann one — Relaunch 2026
   Design-System: Vertrauen, Klarheit, Ruhe
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Farben */
  --bg:        #FAFBFD;
  --surface:   #FFFFFF;
  --ink:       #0C1B2A;
  --ink-soft:  #37485C;
  --muted:     #64748B;
  --navy:      #0C2240;
  --navy-deep: #081A32;
  --blue:      #1D5FD1;
  --blue-dark: #164AA6;
  --blue-soft: #EBF1FC;
  --blue-line: #C9D9F5;
  --gold:      #B7862C;
  --gold-soft: #FBF4E4;
  --line:      #E4E9F0;
  --ok:        #15803D;
  --err:       #B91C1C;

  /* Typografie */
  --disp: "Fraunces", Georgia, serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1180px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(12, 27, 42, 0.05), 0 2px 8px rgba(12, 27, 42, 0.04);
  --shadow-md: 0 2px 6px rgba(12, 27, 42, 0.05), 0 12px 32px rgba(12, 27, 42, 0.08);
  --shadow-lg: 0 4px 12px rgba(12, 27, 42, 0.06), 0 24px 60px rgba(12, 27, 42, 0.12);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.preload *, html.preload *::before, html.preload *::after { transition: none !important; animation: none !important; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { margin: 0; font-family: var(--disp); font-weight: 600; line-height: 1.12; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--blue-soft); color: var(--ink); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--body); font-size: 15.5px; font-weight: 600;
  line-height: 1; white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn .ar { transition: transform 0.2s; }
.btn:hover .ar { transform: translateX(3px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(29, 95, 209, 0.28); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--blue-soft); color: var(--navy); }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }

/* ---------- Kicker / Eyebrow ---------- */
.kick {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
}
.kick .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: none; }
.on-dark .kick { color: #9DBCF0; }
.on-dark .kick .dot { background: #9DBCF0; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 251, 253, 0.85);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.nav.scrolled { background: rgba(255, 255, 255, 0.92); border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  height: 74px;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  font-family: var(--disp); font-size: 23px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
}
.brand b { color: var(--blue); font-weight: 700; }
.brand:hover { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > a, .nav-item > .nav-top {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  transition: background 0.18s, color 0.18s;
}
.nav-links > a:hover, .nav-item > .nav-top:hover { background: var(--blue-soft); color: var(--ink); }
.caret {
  width: 8px; height: 8px; flex: none;
  border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.nav-item.open > .nav-top .caret { transform: rotate(225deg) translateY(-1px); }

.nav-item { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.nav-item.drop-right .drop { left: auto; right: 0; }
.nav-item.open .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: block; padding: 11px 14px; border-radius: var(--r-sm);
  color: var(--ink); transition: background 0.15s;
}
.drop a:hover { background: var(--blue-soft); }
.drop .d-title { display: block; font-size: 15px; font-weight: 600; }
.drop .d-desc { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; line-height: 1.45; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 11px 22px; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-size: 14.5px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.ham, .ham::before, .ham::after {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.ham { position: relative; }
.ham::before, .ham::after { content: ""; position: absolute; left: 0; }
.ham::before { top: -7px; }
.ham::after { top: 7px; }
.nav-open .ham { transform: rotate(45deg); }
.nav-open .ham::before { transform: rotate(-90deg) translateX(-7px); top: 0; }
.nav-open .ham::after { opacity: 0; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 64px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero h1 {
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 600; line-height: 1.04;
  margin: 22px 0 0;
}
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-sub {
  font-size: 18.5px; line-height: 1.65; color: var(--ink-soft);
  margin-top: 22px; max-width: 560px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 0 36px; row-gap: 14px;
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line);
}
.proof-item { min-width: 120px; }
.proof-num { font-family: var(--disp); font-size: 27px; font-weight: 650; color: var(--ink); line-height: 1.1; }
.proof-label { font-size: 13.5px; color: var(--muted); margin-top: 3px; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue-soft);
}
.hero-photo img { width: 100%; height: auto; }
.hero-badge {
  position: absolute; left: -18px; bottom: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .hb-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--ok); flex: none;
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.14);
}
.hero-badge .hb-title { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.hero-badge .hb-sub { font-size: 13px; color: var(--muted); line-height: 1.3; }

/* ---------- Sektionen ---------- */
.sec { padding: 92px 0; }
.sec.wrap { padding-left: 24px; padding-right: 24px; }
.sec-tight { padding: 56px 0; }
.sec-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-top: 16px;
}
.sec-head h2 em { font-style: italic; color: var(--blue); }
.sec-head .lead { font-size: 17.5px; color: var(--ink-soft); margin-top: 18px; line-height: 1.65; }

/* ---------- Wegbegleiter (Logo-Leiste) ---------- */
.clients-bar { padding: 34px 0 10px; }
.clients-label {
  text-align: center; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 22px;
}
.clients-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 40px;
}
.client-name {
  font-family: var(--disp); font-size: 18px; font-weight: 600;
  color: #9AA7B8; white-space: nowrap;
  transition: color 0.2s;
}
.client-name:hover { color: var(--ink-soft); }

/* ---------- Potenzial (4 Karten) ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-line); }
.fcard .fi {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.fcard .fi svg { width: 23px; height: 23px; }
.fcard h3 { font-size: 19.5px; margin-bottom: 10px; }
.fcard p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Arbeitsweise (3 Module) ---------- */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: mod; }
.module {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.module:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.m-num {
  font-family: var(--disp); font-size: 15px; font-weight: 650;
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-soft);
  margin-bottom: 18px;
}
.m-name { font-family: var(--disp); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.m-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
.offer-foot {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--navy);
  color: #E4EBF5;
  border-radius: var(--r-md);
  padding: 26px 32px;
}
.offer-foot .of-label { font-size: 15.5px; line-height: 1.55; }
.offer-foot .of-label b { color: #fff; }

/* ---------- Leistungen & Preise ---------- */
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ivcard {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.ivcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ivcard.feature { border-color: var(--blue); border-width: 1.5px; box-shadow: var(--shadow-md); }
.iv-badge {
  position: absolute; top: -13px; left: 26px;
  background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.iv-badge.gold { background: var(--gold); }
.iv-kicker { font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.iv-name { font-family: var(--disp); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.iv-price { font-family: var(--disp); font-size: 26px; font-weight: 650; color: var(--ink); line-height: 1.15; }
.iv-price .per { font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.iv-price.free { color: var(--ok); }
.iv-approx { display: block; font-family: var(--body); font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 3px; }
.iv-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 14px 0 18px; }
.iv-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; }
.iv-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.iv-list .ck {
  flex: none; width: 19px; height: 19px; margin-top: 1px;
  border-radius: 50%; background: var(--blue-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.iv-list .ck svg { width: 11px; height: 11px; }
.iv-foot { margin-top: auto; }
.iv-foot .btn { width: 100%; justify-content: center; }
.invest-note { max-width: 780px; margin: 40px auto 0; text-align: center; font-size: 15px; color: var(--ink-soft); }
.invest-valid { margin: 10px auto 0; text-align: center; font-size: 13px; color: var(--muted); }

/* ---------- Profilcheck ---------- */
.pcheck { background: var(--navy); color: #DDE6F2; }
.pcheck-grid { display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: center; }
.pcheck h2 { color: #fff; font-size: clamp(30px, 3.6vw, 44px); margin-top: 16px; }
.pcheck h2 em { font-style: italic; color: #8FB4EE; }
.pcheck .lead { font-size: 17px; color: #B9C7DA; margin-top: 18px; max-width: 520px; }
.pcheck-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 20px; }
.pcheck-list li { display: flex; gap: 14px; }
.pcheck-list .ck {
  flex: none; width: 26px; height: 26px; margin-top: 2px;
  border-radius: 50%; background: rgba(143, 180, 238, 0.16); color: #8FB4EE;
  display: inline-flex; align-items: center; justify-content: center;
}
.pcheck-list .ck svg { width: 13px; height: 13px; }
.pl-title { font-weight: 600; color: #fff; font-size: 15.5px; }
.pl-text { font-size: 14.5px; color: #B9C7DA; margin-top: 2px; line-height: 1.55; }

.form-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 34px;
  color: var(--ink);
}
.fc-head { font-family: var(--disp); font-size: 23px; font-weight: 600; }
.fc-sub { font-size: 14px; color: var(--muted); margin: 6px 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px;
  font-family: var(--body); font-size: 15px; color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field input:focus, .field textarea:focus {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(29, 95, 209, 0.12);
}
.field input::placeholder, .field textarea::placeholder { color: #9AA7B8; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.consent { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; margin: 4px 0 20px; }
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent .box {
  flex: none; width: 21px; height: 21px; margin-top: 1px;
  border: 1.5px solid var(--line); border-radius: 6px;
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.consent .box svg { width: 12px; height: 12px; }
.consent input:checked + .box { background: var(--blue); border-color: var(--blue); color: #fff; }
.consent input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(29, 95, 209, 0.2); }
.consent-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.consent-text a { text-decoration: underline; }

.form-submit { width: 100%; justify-content: center; }
.form-status { font-size: 14px; margin-top: 12px; min-height: 0; }
.form-status.err { color: var(--err); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.55; }
.form-note a { text-decoration: underline; color: var(--muted); }

.form-success {
  position: absolute; inset: 0;
  background: var(--surface); border-radius: var(--r-lg);
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.form-card.is-sent .form-success { display: flex; }
.form-success .ps-ring {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.form-success .ps-ring svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--ink-soft); max-width: 320px; }

/* ---------- Persönlich ---------- */
.persona-grid { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.persona-portrait {
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  margin-bottom: 26px; background: var(--blue-soft);
}
.persona-name { font-family: var(--disp); font-size: 26px; font-weight: 600; margin-top: 14px; }
.persona-role { font-size: 15px; color: var(--muted); margin-top: 3px; }
.persona-facts { list-style: none; margin: 22px 0 0; padding: 0; border-top: 1px solid var(--line); }
.persona-facts li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.persona-facts .pf-key { color: var(--muted); }
.persona-facts .pf-val { font-weight: 600; }
.persona-lead {
  font-family: var(--disp); font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 500; line-height: 1.35; letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.persona-body > p:not(.persona-lead) { font-size: 16.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }
.persona-pull {
  margin: 30px 0; padding: 22px 28px;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--disp); font-size: 19.5px; font-style: italic; line-height: 1.5;
  color: var(--ink);
}
.persona-sign { display: flex; flex-direction: column; gap: 3px; margin-top: 28px; }
.persona-sign .sg { font-family: var(--disp); font-size: 24px; font-style: italic; font-weight: 500; }
.persona-sign .sg-note { font-size: 14px; color: var(--muted); }

/* ---------- Referenzen ---------- */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tcard .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.tcard .stars svg { width: 16px; height: 16px; }
.tcard > p {
  font-size: 15.5px; line-height: 1.7; color: var(--ink-soft);
  flex: 1; margin-bottom: 22px;
}
.tmeta { display: flex; align-items: center; gap: 14px; }
.tdot {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 14.5px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}
.twho { font-weight: 600; font-size: 15px; }
.trole { font-size: 13.5px; color: var(--muted); margin-top: 1px; }

/* ---------- Kontakt-Band ---------- */
.contact-band { padding: 40px 0 96px; }
.contact-inner {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(48px, 6vw, 84px);
  text-align: center;
  color: #DDE6F2;
  position: relative; overflow: hidden;
}
.contact-inner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(29, 95, 209, 0.35), transparent 70%),
    radial-gradient(500px 280px at 90% 100%, rgba(29, 95, 209, 0.25), transparent 70%);
  pointer-events: none;
}
.contact-inner > * { position: relative; }
.contact-inner h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); margin-top: 16px; }
.contact-inner h2 em { font-style: italic; color: #8FB4EE; }
.contact-inner .lead { max-width: 620px; margin: 20px auto 0; font-size: 17px; color: #B9C7DA; line-height: 1.65; }
.contact-inner .btn { margin-top: 32px; }
.contact-meta {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px;
  font-size: 15px; color: #B9C7DA;
}
.contact-meta a { color: #fff; font-weight: 500; }
.contact-meta a:hover { color: #8FB4EE; }
.contact-meta .sep { color: rgba(255, 255, 255, 0.3); }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #A9B8CC; }
.footer-top {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px;
  padding: 56px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.brand-mark { font-family: var(--disp); font-size: 24px; font-weight: 600; color: #fff; }
.brand-mark b { color: #8FB4EE; font-weight: 700; }
.footer-tag { max-width: 340px; font-size: 14.5px; line-height: 1.65; margin-top: 14px; color: #8B9CB3; }
.footer-col h4 {
  font-family: var(--body); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: #6E8098;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: #C3CFDE; font-size: 15px; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 24px 0 28px;
  font-size: 13.5px; color: #6E8098;
}
.footer-bottom-right { display: flex; align-items: center; gap: 22px; }
.footer-legal { display: flex; gap: 10px; }
.footer-legal a { color: #A9B8CC; }
.footer-legal a:hover { color: #fff; }
.social-links { display: flex; gap: 14px; }
.social-links a { color: #A9B8CC; display: inline-flex; }
.social-links a:hover { color: #fff; }
.social-links svg { width: 19px; height: 19px; }

/* ---------- Unterseiten (Kontakt / Rechtliches) ---------- */
.page-head { padding: 64px 24px 48px; max-width: var(--wrap); margin: 0 auto; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  margin-bottom: 28px;
}
.back-link:hover { color: var(--ink); }
.page-title { font-size: clamp(36px, 4.6vw, 56px); margin-top: 16px; }
.page-title em { font-style: italic; color: var(--blue); }
.page-lead { font-size: 17.5px; color: var(--ink-soft); margin-top: 18px; max-width: 640px; line-height: 1.65; }

/* Kontakt-Seite */
.contact-main { padding-bottom: 96px; }
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.contact-aside { display: grid; gap: 28px; }
.contact-meta-title {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.detail-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.detail-list li {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px;
}
.detail-list .di {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: var(--blue-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.detail-list .di svg { width: 19px; height: 19px; }
.dl-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dl-value { font-size: 15px; margin-top: 3px; line-height: 1.5; }
.dl-value a { color: var(--ink); font-weight: 500; }
.dl-value a:hover { color: var(--blue); }
.map-frame {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}
.map-frame iframe { display: block; width: 100%; height: 260px; border: 0; }
.map-cap {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 13px 16px; font-size: 13.5px; color: var(--ink-soft);
}
.map-cap a { font-weight: 600; }

/* Rechtstexte */
.legal-main { padding-bottom: 96px; }
.legal { max-width: 780px; }
.legal-block {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 38px 40px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.legal-kicker { margin-bottom: 4px; }
.legal-title { font-size: 27px; margin: 10px 0 18px; }
.legal-sub { font-family: var(--body); font-size: 16.5px; font-weight: 650; letter-spacing: 0; margin: 26px 0 8px; }
.legal-block p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; }
.legal-address {
  font-style: normal; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft);
  white-space: pre-line;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
  padding: 16px 22px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 0 0 8px;
}
.legal-address strong { color: var(--ink); }
.data-row { display: grid; grid-template-columns: 110px 1fr; gap: 8px 18px; margin: 14px 0 0; font-size: 15.5px; }
.data-row dt { color: var(--muted); }
.data-row dd { margin: 0; color: var(--ink-soft); }
.toc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.toc a {
  font-size: 13.5px; font-weight: 500;
  background: var(--blue-soft); color: var(--blue-dark);
  border-radius: 999px; padding: 6px 14px;
}
.toc a:hover { background: var(--blue-line); }
.src-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.src-list li {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 18px;
  font-size: 15px; padding: 12px 16px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
}
.src-list .src-what { color: var(--ink); font-weight: 500; }
.src-list .src-credit { color: var(--muted); }

/* ---------- Ressourcen: Sichtbarkeitsindex ---------- */
.index-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 26px; }
.stat-big-card {
  background: var(--navy); color: #DDE6F2;
  border-radius: var(--r-md);
  padding: 36px 34px;
  display: flex; flex-direction: column; justify-content: center;
}
.stat-big-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: #8FB4EE; }
.stat-big-num { font-family: var(--disp); font-size: clamp(64px, 7vw, 92px); font-weight: 650; color: #fff; line-height: 1; margin: 14px 0 12px; }
.stat-big-num span { font-size: 0.35em; font-weight: 500; color: #8FB4EE; margin-left: 8px; }
.stat-big-note { font-size: 14px; color: #B9C7DA; line-height: 1.6; }
.stat-insight-col { display: grid; gap: 22px; }
.insight-card {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--line);
}
.insight-card.insight-up { border-left-color: var(--ok); }
.insight-card.insight-down { border-left-color: var(--err); }
.insight-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.insight-value { display: block; font-family: var(--disp); font-size: 22px; font-weight: 600; margin: 6px 0 8px; }
.insight-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

.dist-chart {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.dist-chart-label { font-size: 13px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.dist-bar { display: flex; height: 34px; border-radius: 999px; overflow: hidden; }
.dist-seg { display: block; height: 100%; }
.dist-seg.d1, .dist-legend .dot.d1 { background: var(--navy); }
.dist-seg.d2, .dist-legend .dot.d2 { background: var(--blue); }
.dist-seg.d3, .dist-legend .dot.d3 { background: #6E9BE8; }
.dist-seg.d4, .dist-legend .dot.d4 { background: var(--blue-line); }
.dist-seg.d5, .dist-legend .dot.d5 { background: var(--line); }
.dist-legend { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 18px; }
.dist-legend-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.dist-legend-item b { color: var(--ink); }
.dist-legend .dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.anonym-note { max-width: 820px; margin-top: 26px; font-size: 14px; color: var(--muted); line-height: 1.65; }

.banner-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  border-radius: var(--r-md);
  padding: 28px 32px;
}
.banner-card .bc-title { font-family: var(--disp); font-size: 21px; font-weight: 600; margin-bottom: 6px; }
.banner-card p { font-size: 15px; color: var(--ink-soft); max-width: 560px; }

/* ---------- Ressourcen: Tools (URL-Demo, Embed) ---------- */
.url-demo { display: grid; gap: 14px; }
.url-demo > * { min-width: 0; }
.url-card {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.url-card.after { border-color: var(--blue-line); box-shadow: var(--shadow-md); }
.uc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.uc-tag .uc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex: none; }
.url-card.after .uc-tag { color: var(--blue); }
.url-card.after .uc-tag .uc-dot { background: var(--blue); }
.url-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 15px;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 13.5px; color: var(--ink-soft);
  overflow-x: auto; white-space: nowrap;
}
.url-bar .lock { flex: none; display: inline-flex; color: var(--muted); }
.url-bar .lock svg { width: 14px; height: 14px; }
.u-rand { color: var(--err); text-decoration: line-through; text-decoration-thickness: 1px; }
.u-name { color: var(--blue); font-weight: 700; }
.url-arrow { display: flex; justify-content: center; color: var(--blue); }
.url-arrow svg { width: 22px; height: 22px; }

.embed-shell { text-align: center; }
.embed-frame {
  display: flex; justify-content: center;
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(16px, 3vw, 36px);
  overflow-x: auto;
}
.embed-frame iframe { max-width: 100%; border: none; border-radius: var(--r-sm); }
.embed-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 13.5px; color: var(--muted);
}
.embed-note svg { width: 15px; height: 15px; }

/* ---------- Dunkle CTA-Karte (Ressourcen-Abschluss) ---------- */
.cta-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 60px);
  color: #DDE6F2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(560px 280px at 12% 0%, rgba(29, 95, 209, 0.32), transparent 70%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); margin-top: 14px; }
.cta-card h2 em { font-style: italic; color: #8FB4EE; }
.cta-card p { font-size: 15.5px; color: #B9C7DA; line-height: 1.65; margin-bottom: 22px; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
html.motion-done .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .invest-grid { grid-template-columns: 1fr 1fr; }
  .pcheck-grid { grid-template-columns: 1fr; gap: 48px; }
  .persona-grid { grid-template-columns: 320px 1fr; gap: 44px; }
}

@media (max-width: 880px) {
  .index-stats-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; gap: 20px; }
  .hero { padding: 48px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-sub { max-width: none; }
  .hero-visual { max-width: 440px; }
  .hero-badge { left: 12px; }
  .modules { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .persona-aside { max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .sec { padding: 72px 0; }
  .legal-block { padding: 30px 24px; }
  .data-row { grid-template-columns: 1fr; gap: 2px 0; }
  .data-row dt { margin-top: 10px; }
}

@media (max-width: 760px) {
  .nav-inner { height: 66px; gap: 16px; }
  .nav-toggle { display: block; margin-left: 4px; }
  .nav-cta { padding: 10px 16px; font-size: 13.5px; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px 20px;
    max-height: calc(100vh - 66px); overflow-y: auto;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links > a, .nav-item > .nav-top { padding: 13px 12px; border-radius: var(--r-sm); font-size: 16px; }
  .nav-item { position: static; }
  .drop {
    position: static; min-width: 0;
    opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; padding: 0 0 6px 12px;
    display: none;
  }
  .nav-item.open .drop, .nav-item.mob-open .drop { display: block; }
  .field-row { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }
  .invest-grid { grid-template-columns: 1fr; }
  .offer-foot { flex-direction: column; align-items: flex-start; }
  .footer-cols { gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 28px 22px; }
  .contact-inner { text-align: left; }
  .contact-meta { justify-content: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
