/* ============================================================
   Global Compass AG — globalcompass.ch
   Design nach Kunden-Mockup · Trifox
   ============================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/caveat-latin.woff2') format('woff2');
}

:root {
  --navy: #101f4e;
  --navy-dark: #0b163a;
  --navy-soft: #3a4a7a;
  --ink: #1c2440;
  --body: #5c637a;
  --muted: #8a90a5;
  --red: #d8403c;
  --red-soft: #fdeeed;
  --green: #2e9e6b;
  --gold: #e9a63b;
  --cream: #fbfaf7;
  --cream-deep: #f4f1ea;
  --card: #ffffff;
  --line: #e7e3d9;
  --line-light: #efece5;
  --radius: 8px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(16, 31, 78, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(16, 31, 78, 0.14);
  --shadow-lg: 0 24px 60px -20px rgba(16, 31, 78, 0.22);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0; font-weight: 650; line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; }
p { margin: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 15.5px; font-weight: 560;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { flex: none; transition: transform .18s ease; }
.btn:hover svg.arrow { transform: translateX(3px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 8px 20px -8px rgba(16,31,78,.45); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(16,31,78,.5); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,0.92); border-bottom-color: var(--line-light); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav > a, .nav-item > a {
  color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 480;
  transition: color .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.main-nav > a:hover, .nav-item > a:hover { color: var(--navy); }
.nav-cta { display: none; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a svg { transition: transform .2s ease; }
.nav-item:hover > a svg, .nav-item:focus-within > a svg { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: -18px;
  min-width: 270px;
  background: #fff; border: 1px solid var(--line-light); border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: none;
}
.nav-drop::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-drop a {
  display: block; padding: 10px 14px; border-radius: 6px;
  color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 480;
  transition: background .12s ease, color .12s ease;
}
.nav-drop a:hover { background: var(--cream); color: var(--navy); }
.nav-drop .drop-all { border-top: 1px solid var(--line-light); margin-top: 6px; padding-top: 12px; font-weight: 570; color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang { font-size: 14px; font-weight: 520; color: var(--body); display: inline-flex; align-items: center; gap: 4px; }
.btn-header { padding: 11px 22px; font-size: 14.5px; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .25s ease; }

/* ---------- Hero (Bild volle Breite bis zum rechten Rand) ---------- */
.hero { padding-top: 80px; overflow: hidden; background: var(--cream); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: stretch;
}
.hero-copy {
  max-width: calc(var(--container) / 2);
  justify-self: end;
  width: 100%;
  padding: 76px 40px 64px 24px;
  align-self: center;
}
.hero-ctas .btn { padding: 13px 22px; }
.eyebrow {
  font-size: 12.5px; font-weight: 620; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.hero h1 { font-size: clamp(36px, 3.6vw, 52px); font-weight: 680; }
.hero-lead { margin: 24px 0 32px; font-size: 17.5px; color: var(--body); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.social-proof { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid var(--cream);
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 620; color: #fff;
}
.avatar:first-child { margin-left: 0; }
.proof-text { line-height: 1.35; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.proof-text small { display: block; color: var(--body); font-size: 13.5px; font-weight: 480; }

.finma-badge {
  display: flex; align-items: center; gap: 8px;
  margin-top: 22px;
  font-size: 13px; color: var(--body);
}
.finma-badge svg { color: var(--green); flex: none; }
.finma-badge a { color: var(--navy); font-weight: 570; text-decoration: none; }
.finma-badge a:hover { text-decoration: underline; }

.hero-visual { position: relative; min-height: 560px; }
.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-card {
  position: absolute; right: 36px; top: 50%; transform: translateY(-50%);
  width: 300px;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  z-index: 5; /* immer unter dem Header (z-index 100) */
}
.hero-card-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 22px;
}
.hero-card-item + .hero-card-item { border-top: 1px solid var(--line-light); }
.hero-card-item .hc-icon {
  flex: none; width: 34px; height: 34px; border-radius: 9px;
  background: #f2f4fa; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.hero-card-item strong { display: block; font-size: 14px; font-weight: 620; color: var(--navy); line-height: 1.3; }
.hero-card-item span { font-size: 12px; color: var(--body); line-height: 1.4; display: block; margin-top: 2px; }

/* ---------- Leistungen: redaktionelle Zeilen ---------- */
.services {
  background: #fff;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 96px 0;
}
.services-layout {
  display: grid; grid-template-columns: 0.85fr 1.3fr; gap: 72px;
  align-items: start;
}
.services-intro { position: sticky; top: 120px; }
.services-intro h2 { font-size: clamp(26px, 2.8vw, 34px); }
.services-intro p { margin-top: 16px; color: var(--body); font-size: 16px; }
.services-intro .btn { margin-top: 28px; }

.service-rows { display: flex; flex-direction: column; }
.service-row {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 22px;
  align-items: center;
  padding: 26px 4px;
  border-top: 1px solid var(--line-light);
  text-decoration: none;
  transition: background .15s ease, padding .2s ease;
}
.service-row:last-child { border-bottom: 1px solid var(--line-light); }
.service-row:hover { background: var(--cream); padding-left: 14px; padding-right: 8px; }
.service-ico {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--cream-deep); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, color .18s ease;
}
.service-row:hover .service-ico { background: var(--navy); color: #fff; }
.service-row h3 { font-size: 18.5px; transition: color .15s ease; }
.service-row p { font-size: 14px; color: var(--body); margin-top: 5px; line-height: 1.55; }
.service-row .row-arrow {
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}
.service-row:hover .row-arrow { transform: translateX(4px); color: var(--navy); }

/* ---------- Stats-Band ---------- */
.stats { background: var(--navy); color: #fff; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { border-left: 1px solid rgba(255,255,255,0.15); padding-left: 26px; }
.stat strong {
  display: block; font-size: clamp(32px, 3.4vw, 44px); font-weight: 680;
  letter-spacing: -0.02em; line-height: 1.1; color: #fff;
}
.stat span { display: block; margin-top: 8px; font-size: 14px; color: #aeb6d4; line-height: 1.5; }

/* ---------- Unterseiten: Page-Hero ---------- */
.page-hero {
  padding-top: 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--line-light);
}
.page-hero .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.page-hero .hero-copy { padding: 64px 48px 56px 24px; }
.page-hero h1 { font-size: clamp(32px, 3.2vw, 44px); font-weight: 680; letter-spacing: -0.02em; color: var(--navy); line-height: 1.12; }
.page-hero .hero-lead { margin: 20px 0 28px; }
.page-hero .hero-visual { min-height: 420px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-bottom: 22px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb svg { opacity: .5; }

/* ---------- Split-Sektionen (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-content .eyebrow { margin-bottom: 14px; }
.split-content h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 18px; }
.split-content p { color: var(--body); font-size: 15.5px; margin-bottom: 14px; }

/* Checkliste */
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); font-weight: 480; }
.check-list li svg { flex: none; margin-top: 3px; color: var(--green); }
.check-list li small { display: block; font-weight: 400; color: var(--body); font-size: 13.5px; margin-top: 2px; }

/* Nummerierte Mini-Schritte */
.mini-steps { display: grid; gap: 0; margin-top: 8px; }
.mini-step {
  display: grid; grid-template-columns: 44px 1fr; gap: 20px;
  padding: 22px 0; border-top: 1px solid var(--line-light);
}
.mini-step:last-child { border-bottom: 1px solid var(--line-light); }
.mini-step .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 620;
}
.mini-step h3 { font-size: 16.5px; margin-bottom: 6px; }
.mini-step p { font-size: 14px; color: var(--body); }

/* CTA-Band (navy) */
.cta-band { background: var(--navy); padding: 72px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); }
.cta-band p { color: #aeb6d4; margin-top: 10px; font-size: 15.5px; max-width: 54ch; }
.cta-band .btn-light {
  background: #fff; color: var(--navy);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.4);
}
.cta-band .btn-light:hover { transform: translateY(-1px); }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-list details {
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 0 24px;
}
.faq-list summary {
  cursor: pointer; list-style: none;
  padding: 20px 0; font-weight: 570; font-size: 15.5px; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; font-size: 22px; font-weight: 400; color: var(--muted);
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 20px; color: var(--body); font-size: 14.5px; max-width: 65ch; }

/* Weitere Leistungen (Querverweise) */
.more-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.more-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 22px;
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  text-decoration: none; color: var(--navy); font-weight: 570; font-size: 15px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.more-link:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.more-link svg { flex: none; color: var(--muted); }
.more-link:hover svg { color: var(--navy); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 36px 24px; background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius); }
.team-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 640; color: #fff;
}
.team-card h3 { font-size: 17px; }
.team-card span { display: block; margin-top: 5px; font-size: 13.5px; color: var(--body); }

/* Kontakt-Karten */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-list { display: grid; gap: 10px; }
.contact-block {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px; background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
}
.contact-block .hc-icon { flex: none; width: 40px; height: 40px; border-radius: 8px; background: var(--cream-deep); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.contact-block strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.contact-block a, .contact-block p { color: var(--body); text-decoration: none; font-size: 14.5px; line-height: 1.6; }
.contact-block a:hover { color: var(--navy); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 38px); }
.section-head p { margin-top: 14px; color: var(--body); font-size: 17px; }

/* ---------- Warum / Probleme (redaktionelle Zeilen) ---------- */
.problem-rows {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px;
  max-width: 1040px; margin: 0 auto;
}
.problem-row {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line-light);
  align-items: start;
}
.problem-icon {
  width: 42px; height: 42px; border-radius: 9px;
  background: var(--red-soft); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.problem-row h3 { font-size: 16.5px; margin-bottom: 7px; }
.problem-row p { font-size: 14px; color: var(--body); }
.problem-row .card-solution { margin-top: 10px; font-weight: 570; color: var(--navy); font-size: 14px; }

/* ---------- Prozess ---------- */
.process { background: #ffffff; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 44px; left: 8%; right: 8%;
  border-top: 2px dashed var(--line);
}
.process-step { text-align: center; position: relative; padding: 0 8px; }
.process-circle {
  width: 88px; height: 88px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: var(--navy);
  position: relative; z-index: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.process-step:hover .process-circle { transform: scale(1.06); border-color: var(--navy); box-shadow: var(--shadow-md); }
.process-step h3 { font-size: 15.5px; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--body); }

/* ---------- Vergleich ---------- */
.compare-wrap {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 40px;
  align-items: center;
  position: relative;
}
.compare-intro h2 { font-size: clamp(26px, 2.8vw, 34px); margin-bottom: 22px; }
.compare-intro p { color: var(--body); font-size: 15px; margin-bottom: 16px; }
.compare-intro p strong { color: var(--ink); }

.compare-col { position: relative; }
.compare-card {
  background: #fff; border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
}
.compare-card.negative { opacity: .95; }
.compare-card h3 { font-size: 17px; }
.compare-card .compare-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.big-cost { font-size: 30px; font-weight: 700; color: var(--red); margin: 14px 0 20px; letter-spacing: -0.02em; }
.compare-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.compare-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--body); }
.compare-list li svg { flex: none; margin-top: 2px; }
.compare-list.pros li { color: var(--ink); font-weight: 480; }

.compare-card.positive {
  border: 1.5px solid var(--navy);
  box-shadow: var(--shadow-lg);
}
.compare-card.positive .card-logo { height: 34px; width: auto; }
.compare-card.positive h3 { margin: 14px 0 20px; font-size: 19px; }
.compare-card .btn { margin-top: 24px; width: 100%; justify-content: center; }

.compare-note {
  position: absolute; right: 34px; top: 40px;
  font-family: 'Caveat', cursive; font-size: 22px; line-height: 1.15;
  color: var(--navy); transform: rotate(-6deg);
  text-align: center; width: 150px;
}
.compare-note svg { margin-top: 6px; }

/* ---------- Netzwerk ---------- */
.partners { text-align: center; }
.partner-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 24px 56px; margin-top: 8px;
}
.partner {
  font-size: 21px; font-weight: 660; color: #9aa0b2;
  letter-spacing: -0.01em;
  filter: grayscale(1); opacity: .75;
  transition: opacity .2s ease, color .2s ease;
  user-select: none;
}
.partner:hover { opacity: 1; color: var(--navy-soft); }
.partner.serif { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 500; }

/* ---------- CTA ---------- */
.cta-wrap {
  background: #fff; border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 0.85fr 1.3fr;
  overflow: hidden;
}
.cta-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-content { padding: 56px 60px; }
.cta-content h2 { font-size: clamp(26px, 2.8vw, 34px); margin-bottom: 16px; }
.cta-content > p { color: var(--body); font-size: 16px; max-width: 52ch; }
.cta-features { display: flex; flex-wrap: wrap; gap: 28px 40px; margin: 32px 0 36px; }
.cta-feature { display: flex; gap: 12px; align-items: flex-start; }
.cta-feature svg { flex: none; color: var(--navy); margin-top: 2px; }
.cta-feature strong { display: block; font-size: 14.5px; font-weight: 620; color: var(--navy); line-height: 1.3; }
.cta-feature span { font-size: 13px; color: var(--body); }

/* ---------- Footer ---------- */
.site-footer {
  background: #fff; border-top: 1px solid var(--line-light);
  padding: 56px 0 40px; margin-top: 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 0.8fr; gap: 40px;
  align-items: start;
}
.footer-grid img { height: 36px; width: auto; }
.footer-col p, .footer-col a {
  font-size: 14px; color: var(--body); text-decoration: none; line-height: 1.8;
}
.footer-col a { display: block; transition: color .15s ease; }
.footer-col a:hover { color: var(--navy); }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 620; margin-bottom: 12px; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--muted);
}

/* ---------- Unterseiten (Impressum / Datenschutz) ---------- */
.legal-page { padding: 150px 0 80px; max-width: 760px; }
.legal-page h1 { font-size: 36px; margin-bottom: 32px; }
.legal-page h2 { font-size: 20px; margin: 36px 0 12px; }
.legal-page p, .legal-page li { color: var(--body); font-size: 15px; }
.legal-page a { color: var(--navy); }

/* ---------- Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-intro { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .more-services { grid-template-columns: 1fr; }
  .hero-card { right: 20px; width: 280px; }
  .compare-wrap { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
  .compare-note { display: none; }
}

@media (max-width: 900px) {
  .hero-grid, .page-hero .hero-grid { grid-template-columns: 1fr; }
  .hero-copy, .page-hero .hero-copy { max-width: none; justify-self: stretch; padding: 48px 24px 40px; }
  .hero-visual, .page-hero .hero-visual { min-height: 0; }
  .hero-photo { position: static; height: 340px; }
  .problem-rows { grid-template-columns: 1fr; gap: 0; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .nav-item .nav-drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 6px 0 0 14px; min-width: 0;
  }
  .nav-item > a svg { display: none; }
  .hero-card {
    /* relative statt static: sonst malt das Foto über den Kartenhintergrund */
    position: relative; top: auto; right: auto; transform: none; width: auto;
    margin: -48px 24px 32px; display: grid; grid-template-columns: 1fr 1fr; padding: 8px;
  }
  .hero-card-item + .hero-card-item { border-top: 0; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 8px; }
  .process-grid::before { display: none; }
  .cta-wrap { grid-template-columns: 1fr; }
  .cta-image img { aspect-ratio: 16 / 9; }
  .cta-content { padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* backdrop-filter würde das fixe Fullscreen-Menü im Header einsperren */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
  .site-header.scrolled { background: #fff; }

  /* Fullscreen-Menü */
  .main-nav {
    position: fixed; inset: 0; z-index: 99;
    background: var(--cream);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 110px 30px 40px; gap: 6px;
    overflow-y: auto;
    opacity: 0; visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav > a, .nav-item > a {
    font-size: 27px; font-weight: 620; color: var(--navy);
    letter-spacing: -0.02em; padding: 8px 0;
  }
  .main-nav > * {
    opacity: 0; transform: translateY(22px);
    transition: opacity .4s ease, transform .4s ease;
  }
  .main-nav.open > * { opacity: 1; transform: none; }
  .main-nav.open > *:nth-child(1) { transition-delay: .08s; }
  .main-nav.open > *:nth-child(2) { transition-delay: .14s; }
  .main-nav.open > *:nth-child(3) { transition-delay: .2s; }
  .main-nav.open > *:nth-child(4) { transition-delay: .26s; }
  .main-nav.open > *:nth-child(5) { transition-delay: .32s; }
  .main-nav.open > *:nth-child(6) { transition-delay: .38s; }
  .nav-drop a { font-size: 16px; padding: 7px 0; }
  .nav-drop .drop-all { border-top: 0; margin-top: 2px; padding-top: 7px; }
  .nav-cta {
    display: inline-flex !important; align-items: center; gap: 10px;
    margin-top: 22px;
    background: var(--navy); color: #fff !important;
    padding: 15px 26px !important; border-radius: 6px;
    font-size: 17px !important; font-weight: 570;
  }
  .nav-toggle { display: block; position: relative; z-index: 101; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .lang { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  /* Lange Button-Texte dürfen umbrechen statt überzulaufen */
  .btn { white-space: normal; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .cta-content .btn, .cta-band .btn { width: 100%; justify-content: center; }
  .services { padding: 56px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { grid-template-columns: 1fr; margin: -32px 16px 24px; }
  .btn-header { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-row { grid-template-columns: 46px 1fr auto; gap: 16px; }
}
