/* ============================================================
   MULTI-INVEST · Startseite (v2 — modern, borderless)
   ============================================================ */

:root {
  --navy: #142d56;
  --navy-deep: #0e2244;
  --navy-darker: #081632;
  --gold: #f69f00;
  --gold-soft: #d18800;
  --cream: #f5f1e8;
  --paper: #ffffff;
  --bg-soft: #f8f6f1;
  --ink: #0a1e2d;
  --ink-muted: #5a6b78;
  --ink-faint: #8a98a4;

  --gutter: clamp(22px, 4.5vw, 64px);
  --container: calc(1350px + 2 * var(--gutter));

  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-card: 0 1px 2px rgba(20,60,87,0.04), 0 30px 60px -30px rgba(20,60,87,0.18);
  --shadow-soft: 0 20px 40px -20px rgba(20,60,87,0.12);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

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

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  transform: rotate(-50deg);
  transform-origin: center;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  border: 0;
}
.btn .arrow {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 28px; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 32px -8px rgba(246, 159, 0, 0.5);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px -8px rgba(246, 159, 0, 0.6);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION (glassy over hero, solid on scroll)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(20, 60, 87, 0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}
/* Top highlight + bottom shadow line, mimicking glass refraction */
.nav::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(20, 45, 86, 0.06),
    0 8px 32px -12px rgba(20, 45, 86, 0.18),
    0 1px 2px rgba(20, 45, 86, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 0;
}
.nav.scrolled::before { opacity: 1; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo img {
  height: 38px;
  width: auto;
  /* On dark hero, force white-ish logo via filter */
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}
.nav.scrolled .nav-logo img { filter: none; }
.nav-logo .logo-tag {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  max-width: 200px;
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 16px;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.nav.scrolled .nav-logo .logo-tag {
  color: var(--ink-muted);
  border-left-color: rgba(20,60,87,0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav.scrolled .nav-links a.active { color: var(--navy); }

/* Dropdown menu (Produkte) — refined white panel */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links .has-dropdown .caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
  opacity: 0.6;
}
.nav-links .has-dropdown:hover .caret,
.nav-links .has-dropdown:focus-within .caret {
  transform: rotate(225deg) translate(-2px, -2px);
}

/* Hover bridge */
.nav-links .has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -28px;
  width: 360px;
  height: 14px;
  pointer-events: none;
}
.nav-links .has-dropdown:hover::after,
.nav-links .has-dropdown:focus-within::after {
  pointer-events: auto;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -28px;
  min-width: 320px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(20, 45, 86, 0.04),
    0 2px 4px rgba(20, 45, 86, 0.04),
    0 24px 48px -16px rgba(20, 45, 86, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 5;
}

.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown li {
  list-style: none;
  margin: 0 8px;
}

.nav-dropdown a {
  display: block;
  padding: 12px 18px;
  color: var(--navy) !important;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.35;
  white-space: normal;
  position: relative;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--gold-soft) !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.nav-burger { display: none; }

/* Mobile-only drawer extras: hidden on desktop, shown inside mobile drawer */
.nav-mobile-only { display: none; }

/* ============================================================
   HERO — Frankfurt skyline backdrop
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
}
/* Dark gradient overlay for text legibility */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,22,50,0.55) 0%, rgba(8,22,50,0.2) 40%, rgba(8,22,50,0.85) 100%),
    linear-gradient(95deg, rgba(8,22,50,0.85) 0%, rgba(8,22,50,0.5) 45%, rgba(8,22,50,0.2) 75%, rgba(8,22,50,0.4) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vw, 100px) var(--gutter) 0;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Any other .container directly inside .hero (e.g. the KPI strip) must also
   span full width — otherwise margin:0 auto + flex-column parent centers it. */
.hero > .container { width: 100%; }

.hero-content {
  max-width: none;
}

.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 32px;
}

.hero h1 {
  font-weight: 200;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  text-wrap: balance;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
}
.hero h1 .br { display: block; }

.hero-sub {
  font-size: clamp(15.5px, 1.2vw, 18.5px);
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: none;
  font-weight: 300;
  margin: 0 0 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 80px;
}

/* KPI bar — at bottom of hero, horizontal pairs */
.hero-kpis {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 36px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.kpi {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 32px;
  position: relative;
}
.kpi + .kpi {
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.kpi-num {
  font-family: var(--font);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.kpi-count {
  position: relative;
  display: inline-block;
  text-align: left;
}
/* Ghost holds the final width so layout is stable; live number overlays it */
.kpi-count .kc-ghost {
  visibility: hidden;
  display: inline-block;
}
.kpi-count .kc-live {
  position: absolute;
  inset: 0;
  display: inline-block;
  text-align: left;
}
.kpi-num .plus {
  font-size: 0.42em;
  font-weight: 400;
  color: var(--gold);
  margin-left: 4px;
  letter-spacing: 0;
}
.kpi-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.25;
}
.kpi-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.kpi-sub {
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.55);
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold));
}

/* ============================================================
   INTRO BAND (sub-hero claim with big year)
   ============================================================ */
.intro {
  background: var(--paper);
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.intro-year {
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 200;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--navy);
  position: relative;
  display: inline-block;
}
.intro-year .slash {
  display: inline-block;
  color: var(--gold);
  transform: translateY(-6px);
  margin: 0 -4px 0 2px;
}
.intro-year-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 24px;
}

.intro-text .eyebrow { margin-bottom: 24px; }
.intro-text h2 {
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 24px;
  text-wrap: balance;
}
.intro-text h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}
.intro-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0;
  max-width: 600px;
}

/* ============================================================
   PRODUCTS — borderless, hover lifts only
   ============================================================ */
.products {
  background: var(--bg-soft);
  padding: clamp(90px, 12vw, 160px) 0;
}

.section-head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.section-head .heading-block .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-weight: 400;
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}
.section-head .lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 500px;
  margin: 0;
}

/* Borderless product grid — 2 col big-tile layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  background: var(--paper);
}
.product {
  background: var(--paper);
  padding: 56px 48px 52px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  border-radius: 12px;
  transition: background 0.4s ease;
  cursor: pointer;
}
.product:hover { background: var(--cream); }

.product-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-top: 6px;
}
.product-body { display: flex; flex-direction: column; gap: 18px; }
.product-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-icon svg { width: 100%; height: 100%; }
.product h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.product p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
  font-weight: 400;
  max-width: 480px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 12px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.product-link:hover { color: var(--gold); gap: 20px; }
.product-link .arrow-r {
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
}
.product-link .arrow-r::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   TESTIMONIALS — editorial featured layout
   ============================================================ */
.testimonials {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(90px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
/* Soft gold glow accent */
.testimonials::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,159,0,0.12), transparent 70%);
  pointer-events: none;
}

.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head h2 em { color: var(--gold); }
.testimonials .section-head .lead { color: rgba(255,255,255,0.65); }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.testimonial-featured {
  background: rgba(255,255,255,0.04);
  padding: 60px 56px;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-featured .quote-glyph {
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 0.6;
  color: var(--gold);
  height: 50px;
  margin-bottom: 24px;
  font-weight: 400;
}
.testimonial-featured blockquote {
  font-weight: 200;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 40px;
  font-style: normal;
  text-wrap: pretty;
}
.testimonial-secondary-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-mini {
  padding: 28px 28px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease;
}
.testimonial-mini:hover { background: rgba(255,255,255,0.06); }
.testimonial-mini p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-weight: 300;
  position: relative;
  padding-left: 16px;
}
.testimonial-mini p::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: var(--gold);
  opacity: 0.6;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.author-role {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}
.testimonial-featured .author-avatar {
  width: 48px; height: 48px; font-size: 14px;
}

/* ============================================================
   TESTIMONIALS — VARIANT SWITCHING
   ============================================================ */
.testimonials.v-a, .testimonials.v-b, .testimonials.v-c { display: none; }
body[data-testimonial-variant="a"] .testimonials.v-a { display: block; }
body[data-testimonial-variant="b"] .testimonials.v-b { display: block; }
body[data-testimonial-variant="c"] .testimonials.v-c { display: block; }

/* ---- Variant B: Three Pillars ---- */
.testimonials.v-b {
  background: var(--paper);
  color: var(--ink);
}
.testimonials.v-b::before { display: none; }
.testimonials.v-b .section-head h2 { color: var(--navy); }
.testimonials.v-b .section-head h2 em { color: var(--gold); }
.testimonials.v-b .section-head .lead { color: var(--ink-muted); }

.v-b .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.v-b .pillar {
  position: relative;
  padding: 56px 40px 44px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.v-b .pillar:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(14, 34, 68, 0.18);
}
.v-b .pillar-rule {
  position: absolute;
  top: 0; left: 40px;
  width: 56px;
  height: 2px;
  background: var(--navy);
}
.v-b .pillar-stars {
  display: flex;
  gap: 4px;
}
.v-b .pillar-stars span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.v-b .pillar blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.v-b .pillar-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 45, 86, 0.1);
}
.v-b .pillar-author .author-avatar { display: none; }
.v-b .pillar-author .author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v-b .pillar-author .author-name {
  color: var(--navy);
  font-weight: 500;
  font-size: 14.5px;
}
.v-b .pillar-author .author-role {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

/* ---- Variant C: Spotlight Carousel ---- */
.v-c .spotlight-head { margin-bottom: 72px; }
.v-c .spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.v-c .spotlight-stage {
  position: relative;
  min-height: 260px;
  padding: 0 60px;
}
.v-c .spotlight-quote-glyph {
  position: absolute;
  top: -60px; left: 0;
  font-family: Georgia, serif;
  font-size: 200px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
}
.v-c .spotlight-slide {
  position: absolute;
  inset: 0;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.v-c .spotlight-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.v-c .spotlight-slide blockquote {
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.45;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: #fff;
  text-wrap: balance;
  max-width: 980px;
}
.v-c .spotlight-author {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.v-c .spotlight-author::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-4px);
}
.v-c .spotlight-name {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.v-c .spotlight-role {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v-c .spotlight-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.v-c .thumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  background: none;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
  font-family: inherit;
}
.v-c .thumb:last-child { border-right: 0; }
.v-c .thumb:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.02); }
.v-c .thumb.active { color: #fff; }
.v-c .thumb-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.v-c .thumb.active .thumb-avatar {
  background: var(--gold);
  color: var(--navy);
}
.v-c .thumb-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.v-c .thumb-name {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.v-c .thumb-role {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.v-c .thumb-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.05s linear;
}
.v-c .thumb:not(.active) .thumb-progress { width: 0 !important; }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: rgba(14, 34, 68, 0.96);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px 20px;
  min-width: 320px;
  font-family: var(--font);
}
.tweaks-panel[hidden] { display: block !important; }
.tweaks-panel .tw-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tweaks-panel .tw-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.tweaks-panel .tw-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.tweaks-panel .tw-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.tweaks-panel .tw-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.tweaks-panel .tw-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 4px;
}
.tweaks-panel .tw-radio button {
  flex: 1 1 calc(33.333% - 6px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border-radius: 4px;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}
.tweaks-panel .tw-radio button strong {
  font-size: 14px;
  font-weight: 600;
}
.tweaks-panel .tw-radio button span {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tweaks-panel .tw-radio button:hover { color: #fff; }
.tweaks-panel .tw-radio button.active {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   VALUES — Warum Multi-Invest
   ============================================================ */
.values {
  background: var(--paper);
  padding: clamp(90px, 12vw, 160px) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 56px);
}
.value {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.value::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 8px;
}
.value-num {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.value h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.value p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   AWARDS — Auszeichnungen & Presse
   ============================================================ */
.awards.aw-a, .awards.aw-b, .awards.aw-c, .awards.aw-d { display: none; }
body[data-awards-variant="a"] .awards.aw-a { display: block; }
body[data-awards-variant="b"] .awards.aw-b { display: block; }
body[data-awards-variant="c"] .awards.aw-c { display: block; }
body[data-awards-variant="d"] .awards.aw-d { display: block; }

.awards {
  background: var(--bg-soft);
  padding: clamp(90px, 12vw, 140px) 0;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.award {
  margin: 0;
  background: var(--paper);
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.award:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(14, 34, 68, 0.18);
}
.award img {
  height: 150px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.award figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 45, 86, 0.08);
  width: 100%;
}
.award-title {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.award-meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---- Awards Variant B: Editorial Showcase ---- */
.awards.aw-b {
  background: var(--paper);
}
.awards-b-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 56px;
  margin-bottom: clamp(60px, 7vw, 96px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(20, 45, 86, 0.1);
}
.awards-b-head .eyebrow {
  margin-bottom: 24px;
}
.awards-b-head h2 {
  font-size: clamp(28px, 2.9vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.awards-b-head h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}
.awards-b-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.award-b {
  margin: 0;
  display: grid;
  grid-template-rows: 143px auto;
  gap: 28px;
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(20, 45, 86, 0.08);
}
.award-b:first-child { padding-left: 0; }
.award-b:last-child {
  border-right: 0;
  padding-right: 0;
}
.award-b-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-b-logo img {
  max-height: 121px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.award-b:hover .award-b-logo img {
  transform: scale(1.05);
}
.award-b figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.award-b-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.award-b-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.award-b-meta {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 180px;
}

/* ---- Awards Variant C: Dark Showcase ---- */
.awards.aw-c {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.awards.aw-c::before {
  content: "";
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(246,159,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.aw-c-head {
  max-width: 760px;
  margin: 0 auto clamp(60px, 7vw, 96px);
  text-align: center;
  position: relative;
  z-index: 1;
}
.aw-c-head .eyebrow {
  margin-bottom: 24px;
}
.aw-c-head .eyebrow::before { display: none; }
.aw-c-head h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
}
.aw-c-head h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}
.aw-c-head .lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin: 0;
}
.aw-c-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.aw-c-card {
  margin: 0;
  position: relative;
  padding: 48px 24px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.aw-c-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(246,159,0,0.4);
  transform: translateY(-4px);
}
.aw-c-rank {
  position: absolute;
  top: 16px; left: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.aw-c-logo {
  height: 110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.aw-c-logo img {
  max-height: 100px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.aw-c-card:hover .aw-c-logo img {
  filter: none;
  opacity: 1;
}
.aw-c-card figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.aw-c-title {
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
}
.aw-c-meta {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.aw-c-year {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}

/* ---- Awards Variant D: Hero-Listing ---- */
.awards.aw-d {
  background: var(--paper);
}
.aw-d-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.aw-d-intro {
  position: sticky;
  top: 120px;
}
.aw-d-intro .eyebrow {
  margin-bottom: 28px;
}
.aw-d-intro h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 28px;
}
.aw-d-intro h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}
.aw-d-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
  font-weight: 300;
  margin: 0 0 48px;
  max-width: 380px;
}
.aw-d-stat {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(20, 45, 86, 0.12);
}
.aw-d-stat-num {
  font-size: 64px;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.aw-d-stat-num .plus {
  color: var(--gold);
  font-size: 0.55em;
  margin-left: 2px;
  vertical-align: super;
}
.aw-d-stat-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.5;
}
.aw-d-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aw-d-item {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(20, 45, 86, 0.1);
  transition: padding-left 0.3s ease;
  position: relative;
}
.aw-d-item:first-child {
  padding-top: 0;
}
.aw-d-item:last-child {
  border-bottom: 0;
}
.aw-d-item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
  transform: translateY(-50%);
}
.aw-d-item:hover { padding-left: 28px; }
.aw-d-item:hover::before { width: 16px; }

.aw-d-year {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.aw-d-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aw-d-title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy);
  line-height: 1.2;
}
.aw-d-meta {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
  font-weight: 300;
}
.aw-d-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.aw-d-logo img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.aw-d-item:hover .aw-d-logo img {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================================
   PARTNER STRIP
   ============================================================ */
.partner-strip {
  background: var(--paper);
  padding: 56px 0;
}
.partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-inner .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.partner-inner .partner-name {
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.partner-inner .partner-name strong { font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 90px 0 0;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand img { height: 40px; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; max-width: 360px; color: rgba(255,255,255,0.6); margin: 0 0 28px; }
.footer-address {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  font-style: normal;
}
.footer-address .strong { color: #fff; font-weight: 600; }
.footer-col h4 {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }

/* Highlighted access links (Vermittlerbereich, Portal) */
.footer-col a.footer-link-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-col a.footer-link-highlight::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-col a.footer-link-highlight:hover {
  color: var(--gold);
}
.footer-col a.footer-link-highlight:hover::before {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(246, 159, 0, 0.18);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .partner-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom .partner-line::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--gold);
}

/* Footer credit (right side of the bottom bar) */
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}
.footer-credit a {
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-credit a:hover {
  color: var(--gold);
  border-bottom-color: rgba(246, 159, 0, 0.4);
}

/* ============================================================
   RESPONSIVE
   Breakpoints (mobile-first reading order, max-width queries):
   1180  — nav tag drops, big award grids tighten
   1024  — split layouts collapse to one column
    880  — footer collapses, hero KPIs 2-col
    720  — mobile drawer activates, full single-column
    560  — finest tuning for phones
   ============================================================ */

@media (max-width: 1180px) {
  .nav-logo .logo-tag { display: none; }
  .nav-links { gap: 26px; }
  .nav-links a { font-size: 13px; }

  /* Big logo strips → tighter */
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .awards-b-strip { grid-template-columns: repeat(3, 1fr); }
  .aw-c-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .product-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .scroll-cue { display: none; }

  /* Values grid 4 → 2 */
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  /* Pillars 3 → 2 (then 1 below) */
  .v-b .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  /* Award listing variants collapse 2-col layout */
  .aw-d-grid { grid-template-columns: 1fr; gap: 48px; }
  .aw-d-intro { position: static; }
  .awards-b-head { grid-template-columns: 1fr; gap: 24px; align-items: start; padding-bottom: 24px; }
  /* Spotlight thumbs 4 → 2 */
  .v-c .spotlight-thumbs { grid-template-columns: repeat(2, 1fr); }
  .v-c .thumb:nth-child(2n) { border-right: 0; }
  .v-c .thumb:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .v-c .spotlight-stage { padding: 0; min-height: 220px; }
  .v-c .spotlight-quote-glyph { top: -40px; font-size: 140px; }
  .v-c .spotlight-slide { padding: 0; }
  /* Hero h1 a tick smaller so it doesn't dominate */
  .hero h1 { font-size: clamp(40px, 7vw, 72px); }
}

@media (max-width: 880px) {
  .hero-kpis { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .kpi { padding-right: 16px; }
  .kpi:nth-child(2n+1) { padding-left: 0; border-left: 0; }
  /* Footer: brand on top full-width, then 3 cols */
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 520px; }
  /* Awards 5-col strips → 2 cols */
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .aw-c-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-b-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .award-b {
    padding: 0 20px;
    border-right: 1px solid rgba(20, 45, 86, 0.08);
  }
  .award-b:nth-child(2n) { border-right: 0; padding-right: 0; }
  .award-b:nth-child(2n+1) { padding-left: 0; }
  /* aw-d list item: stack the logo column under text on tablets */
  .aw-d-item { grid-template-columns: 80px 1fr; gap: 24px; }
  .aw-d-logo { display: none; }
  /* Contact card padding tighter */
  .contact-card { padding: 36px 32px 30px; }
  .contact-card::before { left: 32px; }
}

@media (max-width: 720px) {
  /* Nav becomes mobile drawer */
  .nav { padding: 18px 0 10px; }
  .nav.scrolled { padding: 14px 0 8px; }
  .nav-inner { height: 76px; gap: 12px; }
  .nav-logo img { height: 36px; }
  .nav-cta { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 102;
    position: relative;
  }
  .nav-burger span {
    width: 24px; height: 1.5px;
    background: #fff;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .nav.scrolled .nav-burger span { background: var(--navy); }

  /* ============================================================
     MOBILE DRAWER — clean white, editorial type, gold accents
     Produkte sub-menu is ALWAYS visible (no toggle needed)
     ============================================================ */
  .nav-links {
    display: flex;
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - 104px);
    max-height: calc(100dvh - 104px);
    background: var(--paper);
    color: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 10px var(--gutter) 20px;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: none;
    z-index: 101;
    border-top: 1px solid rgba(20, 45, 86, 0.06);
    box-shadow: 0 24px 40px -24px rgba(20, 45, 86, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    /* Closing: snap shut instantly so descendants can't catch stray clicks */
    transition: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav.mobile-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    /* Opening: smooth fade-in */
    transition:
      opacity 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  /* Backdrop — dims page content below the nav while drawer is open */
  .nav-backdrop {
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 22, 50, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    transition: opacity 0.28s ease, visibility 0s 0.28s;
  }
  .nav.mobile-open ~ .nav-backdrop,
  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease, visibility 0s 0s;
  }
  /* Nav bar matches drawer when open */
  .nav.mobile-open {
    background: var(--paper) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(20, 45, 86, 0.06) !important;
    z-index: 110 !important;
  }
  .nav.mobile-open::before { opacity: 0 !important; }
  .nav.mobile-open .nav-logo img {
    filter: none !important;
  }
  .nav.mobile-open .nav-burger span {
    background: var(--navy);
    height: 2px;
  }
  .nav.mobile-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.mobile-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Items */
  .nav-links li { width: 100%; position: relative; z-index: 1; }

  /* Top-level links (Start / Über uns / Formulare / Kontakt) — large editorial */
  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    color: var(--navy) !important;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(20, 45, 86, 0.08);
    transition: color 0.2s ease;
  }
  .nav-links > li > a::after { display: none; }
  .nav-links > li > a:hover,
  .nav-links > li > a:active {
    color: var(--gold) !important;
  }
  .nav-links > li > a.active {
    color: var(--gold) !important;
  }
  /* Subtle right-pointing chevron */
  .nav-links > li > a::before {
    content: "";
    order: 2;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid rgba(20, 45, 86, 0.30);
    border-right: 1.5px solid rgba(20, 45, 86, 0.30);
    transform: rotate(45deg);
    margin-left: 16px;
    flex-shrink: 0;
    transition: border-color 0.2s ease, transform 0.25s ease;
  }
  .nav-links > li > a:hover::before,
  .nav-links > li > a.active::before {
    border-color: var(--gold);
    transform: rotate(45deg) translate(2px, -2px);
  }

  /* Produkte block — turn the parent <a> into a section eyebrow label */
  .nav-links .has-dropdown { display: block; }
  .nav-links .has-dropdown > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px;
    padding: 16px 0 6px !important;
    color: var(--gold) !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase;
    border-bottom: 0 !important;
    pointer-events: none;
  }
  .nav-links .has-dropdown > a::before {
    content: "";
    order: -1;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border: 0;
    transform: rotate(-50deg);
    margin: 0;
  }
  .nav-links .has-dropdown .caret { display: none; }

  /* Dropdown items — shown only when drawer is open */
  .nav-dropdown {
    position: static;
    display: block;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 6px;
    transform: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    counter-reset: prodCounter;
  }
  /* Make dropdown interactive only while drawer is open
     (otherwise descendant <a> tags catch clicks over the hero) */
  .nav.mobile-open .nav-dropdown {
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown li {
    margin: 0;
    counter-increment: prodCounter;
  }
  .nav-dropdown a {
    display: flex !important;
    align-items: center;
    gap: 16px;
    padding: 9px 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--navy) !important;
    border-bottom: 1px solid rgba(20, 45, 86, 0.07);
    border-radius: 0;
    transition: color 0.2s ease, padding-left 0.25s ease;
  }
  .nav-dropdown a::before {
    content: counter(prodCounter, decimal-leading-zero);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-weight: 600;
    width: 28px;
    flex-shrink: 0;
  }
  .nav-dropdown a:hover {
    background: transparent;
    color: var(--gold) !important;
    padding-left: 4px !important;
  }
  .nav-dropdown a.active {
    color: var(--gold) !important;
  }

  /* ---- Mobile drawer extras (Portal CTA + contact block) ---- */
  .nav-mobile-only { display: block; width: 100%; }

  .nav-mobile-only.nav-mobile-spacer {
    display: none;
  }

  .nav-mobile-only.nav-mobile-cta {
    margin-top: 16px;
  }
  .nav-mobile-only.nav-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 22px !important;
    background: var(--gold);
    color: var(--navy) !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase;
    border-radius: 999px;
    border-bottom: 0 !important;
    box-shadow: 0 14px 32px -10px rgba(246, 159, 0, 0.40);
    transition: background 0.25s ease, transform 0.2s ease;
  }
  .nav-mobile-only.nav-mobile-cta a::before { display: none; }
  .nav-mobile-only.nav-mobile-cta a::after { display: none; }
  .nav-mobile-only.nav-mobile-cta a:hover,
  .nav-mobile-only.nav-mobile-cta a:active {
    background: var(--gold-soft);
    color: var(--navy) !important;
    transform: translateY(1px);
  }

  .nav-mobile-only.nav-mobile-contact {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(20, 45, 86, 0.10);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .nav-mobile-only.nav-mobile-contact a {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 4px 0 !important;
    border-bottom: 0 !important;
    color: var(--navy) !important;
    line-height: 1.3;
  }
  .nav-mobile-only.nav-mobile-contact a::before,
  .nav-mobile-only.nav-mobile-contact a::after { display: none; }
  .nav-mobile-only.nav-mobile-contact .nmc-label {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .nav-mobile-only.nav-mobile-contact .nmc-val {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.005em;
  }

  /* Page layout adjustments */
  .hero { min-height: auto; padding-top: 110px; }
  .hero-inner { padding: 60px var(--gutter) 30px; }
  .hero-actions { margin-bottom: 56px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-kpis {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }
  .kpi { padding: 0; gap: 18px; }
  .kpi + .kpi { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid rgba(255,255,255,0.12); }

  .product { grid-template-columns: 1fr; gap: 20px; padding: 40px 28px; }
  .product-num { padding-top: 0; }
  .testimonial-featured { padding: 40px 28px; }
  .testimonial-featured blockquote { font-size: clamp(20px, 4vw, 26px); }
  .testimonial-mini { padding: 24px; }
  .v-b .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .v-b .pillar { padding: 40px 28px 32px; }
  .v-b .pillar-rule { left: 28px; }

  .partner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Intro section — year too big for narrow screens */
  .intro-year { font-size: clamp(96px, 26vw, 180px); }

  /* Award grids final collapse */
  .awards-grid { grid-template-columns: 1fr; gap: 16px; }
  .award { padding: 28px 24px 22px; }
  .award img { height: 120px; }
  .aw-c-grid { grid-template-columns: 1fr; gap: 16px; }
  .awards-b-strip {
    /* Mobile carousel: horizontal scroll-snap */
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0 !important;
    margin: 0 calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 8px;
    scroll-padding-left: var(--gutter);
    scroll-padding-right: var(--gutter);
  }
  .awards-b-strip::-webkit-scrollbar { display: none; }
  .award-b {
    flex: 0 0 78%;
    max-width: 320px;
    min-width: 240px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 0 18px !important;
    margin: 0;
    border-right: 1px solid rgba(20, 45, 86, 0.08) !important;
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    text-align: left;
  }
  .award-b:first-child { padding-left: 0 !important; }
  .award-b:last-child {
    border-right: 0 !important;
    padding-right: 0 !important;
  }

  /* Carousel dot indicators (injected by JS) */
  .awards-b-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
  }
  .awards-b-dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    padding: 0;
    background: rgba(20, 45, 86, 0.18);
    border: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  }
  .awards-b-dots button[aria-current="true"] {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
  }

  /* aw-d list item — fully stack, hide logo */
  .aw-d-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }
  .aw-d-title { font-size: 19px; }
  .aw-d-item:hover { padding-left: 0; }
  .aw-d-item:hover::before { width: 0; }

  /* Spotlight: stack thumbs single column */
  .v-c .spotlight-thumbs { grid-template-columns: 1fr; }
  .v-c .thumb { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .v-c .thumb:last-child { border-bottom: 0; }
  .v-c .spotlight-quote-glyph { font-size: 100px; top: -30px; }

  /* Tweaks panel — keep usable on small screens */
  .tweaks-panel {
    bottom: 16px;
    right: 16px;
    left: 16px;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(36px, 9vw, 56px); }
  .hero-sub { font-size: 15.5px; }
  .product { padding: 32px 22px; }
  .testimonial-featured { padding: 32px 22px; }
  .award b, .award-title { text-align: center; }
  .partner-inner .partner-name { font-size: 18px; }
}

/* ============================================================
   WCAG 2.1 AA — Kontrast-Anpassung (Audit-Befund A2)
   ------------------------------------------------------------
   Nur Faint-Grau wird global angehoben (3,1:1 → 4,7:1).
   Das Markengold bleibt unverändert; die strengere
   Gold-Anhebung steht den Besuchern über das
   Barrierefreiheits-Widget ("Hoher Kontrast") zur Verfügung.
   ============================================================ */
:root {
  --ink-faint: #6b7782;
  /* Gold als Text-Farbe: #f69f00 = 2,4:1 auf Wei\u00df (FAIL).
     #b87000 = 4,6:1 (AA pass). Fl\u00e4chen-Gold (Buttons, Icons,
     Akzent-Streifen) bleibt --gold; nur Text greift auf --gold-text zu. */
  --gold-text: #b87000;
}

/* Auf den Legal-Seiten (Barrierefreiheits-Erkl\u00e4rung, Audit, Impressum,
   Datenschutz, Disclaimer) ist Text-Gold an mehreren Stellen prominent
   und muss zwingend AA-konform sein. */
body.page-legal .eyebrow,
body.page-legal .legal-toc a::before,
body.page-legal .ls-head h2 em,
body.page-legal .legal-section h3 em,
body.page-legal .finding-title em,
body.page-legal .finding-id,
body.page-legal .finding-body h4,
body.page-legal .audit-meta-cell .label,
body.page-legal .roadmap-phase .ph-num,
body.page-legal .barrier-list .b-ref,
body.page-legal .a11y-panel-head h2 {
  color: var(--gold-text);
}
