/**
 * @copyright 2026 AXISPORT UG
 * @license Proprietär - Alle Rechte vorbehalten
 * @see https://axisport.de
 * @description styles-v6.css
 */
/* ============================================================
   Fairtrade Fonds — Stylesheet v2
   Brand-aligned: Sage-Grün + Anthrazit, Cormorant Garamond + Inter
   ============================================================ */

:root {
  /* Brand — direkt aus Logo abgeleitet */
  --sage:           #7da89b;
  --sage-700:       #5d8b7d;
  --sage-800:       #466b60;
  --sage-100:       #e7efeb;
  --sage-50:        #f3f7f5;

  --ink:            #1f2120;   /* fast schwarz */
  --ink-soft:       #2d3030;
  --graphite:       #4a4d4e;
  --slate:          #6c7270;
  --mist:           #9aa09e;

  --paper:          #faf7f1;   /* warmes Off-White */
  --paper-2:        #f1ede4;   /* sand */
  --line:           #e2ddd1;   /* warme Trennlinie */
  --gold:           #c89b5b;   /* dezenter Akzent */

  /* Semantic */
  --bg:             var(--paper);
  --bg-elev:        #ffffff;
  --bg-soft:        var(--paper-2);
  --bg-inverse:     var(--ink);
  --fg:             var(--ink);
  --fg-2:           var(--graphite);
  --fg-3:           var(--slate);
  --on-dark:        #ffffff;
  --on-dark-2:      rgba(255,255,255,.72);
  --on-dark-3:      rgba(255,255,255,.5);
  --border:         var(--line);
  --accent:         var(--sage-700);
  --accent-hover:   var(--sage-800);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 900px;
  --gutter: 24px;

  /* Type */
  --font-serif: "DM Serif Display", "Times New Roman", serif;
  --font-sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:  ui-monospace, "SF Mono", Menlo, monospace;

  /* Shadows */
  --shadow-xs: 0 1px 1px rgba(31,33,32,.04);
  --shadow-sm: 0 2px 4px rgba(31,33,32,.04), 0 1px 2px rgba(31,33,32,.06);
  --shadow-md: 0 12px 28px -12px rgba(31,33,32,.12), 0 4px 8px -4px rgba(31,33,32,.06);
  --shadow-lg: 0 30px 60px -24px rgba(31,33,32,.22), 0 8px 16px -8px rgba(31,33,32,.08);

  --t-fast: 160ms cubic-bezier(.4,0,.2,1);
  --t-med:  220ms cubic-bezier(.4,0,.2,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--sage); color: var(--ink); }

/* ----- Typography ----- */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
h3, h4 {
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.4vw, 68px); }
h2 { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.08; }
h3 { font-size: clamp(20px, 1.8vw, 24px); font-weight: 600; }
h4 { font-size: clamp(17px, 1.3vw, 19px); font-weight: 600; }

p { margin: 0 0 1em; color: var(--fg-2); text-wrap: pretty; }
.lead { font-size: 19px; color: var(--fg-2); line-height: 1.55; max-width: 60ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-700);
}
.eyebrow.on-dark { color: var(--sage); }
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ----- Section spacing ----- */
section { padding-block: clamp(72px, 10vw, 132px); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head .lead { margin-top: 16px; }
.section-head.center .lead { margin-inline: auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--on-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}
.btn-primary:hover { background: var(--ink-soft); }

.btn-sage {
  background: var(--sage-700);
  color: #fff;
}
.btn-sage:hover { background: var(--sage-800); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(37,211,102,.5);
}
.btn-whatsapp:hover { background: #1faa55; }

.btn-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--fg);
}
.btn-secondary:hover { border-color: var(--fg); }

.btn-secondary.on-dark {
  border-color: rgba(255,255,255,.24);
  color: #fff;
}
.btn-secondary.on-dark:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.5);
}

.btn-ghost {
  padding: 0;
  height: auto;
  color: var(--sage-700);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 2px;
}
.btn-ghost:hover { color: var(--ink); }

.btn-sm { height: 44px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 60px; padding: 0 28px; font-size: 16px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,241,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(250,247,241,.96);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  height: 56px;
}
.brand img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav { position: relative; }
.main-nav .nav-item { position: relative; }
.main-nav .nav-item > a,
.main-nav .nav-item > button {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  border-radius: var(--r-sm);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav .nav-item > button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.image-slot-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.main-nav .nav-item > a:hover,
.main-nav .nav-item > a.active,
.main-nav .nav-item > button:hover,
.main-nav .nav-item > button.active { color: var(--ink); }
.main-nav .nav-item.has-submenu > a::after,
.main-nav .nav-item.has-submenu > button::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
  opacity: 0.5;
  transition: transform var(--t-fast);
}
.main-nav .nav-item.has-submenu:hover > a::after,
.main-nav .nav-item.has-submenu.open > a::after,
.main-nav .nav-item.has-submenu:hover > button::after,
.main-nav .nav-item.has-submenu.open > button::after { transform: rotate(225deg) translate(-2px,-2px); }
.main-nav .nav-item.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 340px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 30;
}
.main-nav .nav-item:hover .submenu,
.main-nav .nav-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .submenu a {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  border-radius: var(--r-sm);
  line-height: 1.35;
}
.main-nav .submenu a:hover {
  background: var(--sage-50);
  color: var(--sage-800);
}
.main-nav .submenu a small {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--fg-3);
  margin-top: 2px;
}
.main-nav .submenu a:hover small { color: var(--sage-700); }

/* Mobile drawer subgroups */
.mobile-drawer .submenu-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-top: 16px;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t-fast);
}
.header-wa:hover { background: #1faa55; }
.header-wa svg { flex: none; }

.header-phone {
  text-align: right;
  font-size: 13px;
  line-height: 1.2;
}
.header-phone .label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
}
.header-phone strong { display: block; color: var(--ink); font-weight: 500; font-size: 15px; margin-top: 2px; font-variant-numeric: tabular-nums; }

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
}
.mobile-toggle span {
  display: block;
  width: 18px; height: 1.4px;
  background: currentColor;
  margin: 4.5px auto;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 60;
  display: none;
  flex-direction: column;
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer .drawer-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.mobile-drawer .drawer-top .close {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  font-size: 22px;
  color: var(--fg);
}
.mobile-drawer nav {
  display: grid;
  gap: 4px;
}
.mobile-drawer nav a {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.2;
}
.mobile-drawer nav > div { display: contents; }
.mobile-drawer .drawer-bottom {
  margin-top: auto;
  padding-top: 32px;
  display: grid;
  gap: 12px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  padding-top: clamp(80px, 9vw, 120px);
  padding-bottom: clamp(80px, 9vw, 120px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(125,168,155,.12), transparent 60%),
    radial-gradient(600px 360px at 0% 100%, rgba(125,168,155,.06), transparent 60%);
  pointer-events: none;
}
.hero .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  margin-top: 24px;
  letter-spacing: -0.018em;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}
.hero p.sub {
  margin-top: 28px;
  font-size: 19px;
  color: var(--on-dark-2);
  max-width: 46ch;
  line-height: 1.55;
}
.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary {
  background: var(--sage-700);
  color: #fff;
}
.hero-ctas .btn-primary:hover { background: var(--sage-800); }

.hero-trust {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 480px;
}
.trust-item .num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
}
.trust-item .num.stars {
  letter-spacing: 1px;
  font-family: var(--font-sans);
  font-size: 18px;
}
.trust-item .lbl {
  font-size: 12.5px;
  color: var(--on-dark-2);
  margin-top: 6px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Hero portrait */
.hero-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,33,32,.35));
  pointer-events: none;
}
.portrait-tag {
  position: absolute;
  left: 24px; bottom: 24px;
  color: #fff;
  z-index: 2;
}
.portrait-tag .name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}
.portrait-tag .role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
}
.hero-badge {
  position: absolute;
  right: -16px; top: 40px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
  font-family: var(--font-serif);
}
.hero-badge .big { font-size: 32px; font-weight: 500; line-height: 1; }
.hero-badge .lbl { font-family: var(--font-sans); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-top: 6px; font-weight: 500; }

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  padding-block: 36px !important;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.trust-bar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-bar .label {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.partner-logo {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  opacity: .7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.partner-logo.italic { font-style: italic; }
.partner-logo .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .5; }

/* ============================================================
   About Ralf
   ============================================================ */
.about { background: var(--bg); }
.about .grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}
.portrait-frame {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.signature-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(31,33,32,.78);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--r-sm);
}
.signature-tag .name { font-family: var(--font-serif); font-size: 19px; font-weight: 500; line-height: 1.1; }
.signature-tag .role { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 6px; }

.about h2 { margin-top: 16px; max-width: 14ch; }
.about .lead { margin-top: 24px; max-width: 52ch; }

.about ul.checks {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  max-width: 56ch;
}
.about ul.checks li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px;
  color: var(--fg);
  line-height: 1.5;
}
.check-icon {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
  display: grid; place-items: center;
  margin-top: 1px;
}
.check-icon svg { width: 13px; height: 13px; }

.about .actions {
  margin-top: 40px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ============================================================
   Services grid
   ============================================================ */
.services { background: var(--bg-soft); }
.services .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  min-height: 360px;
}
.service-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--sage-100);
  color: var(--sage-800);
  display: grid; place-items: center;
  margin-bottom: 28px;
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-bottom: 14px;
  min-height: 2.3em; /* zwei Zeilen reservieren */
  display: flex;
  align-items: flex-start;
}
.service-card .desc {
  font-size: 15.5px;
  color: var(--fg-2);
  margin: 0 0 24px;
  line-height: 1.55;
  min-height: 4.65em; /* drei Zeilen */
}
.service-card .more {
  margin-top: auto;
}

/* ============================================================
   Strategy
   ============================================================ */
.strategy { background: var(--bg); }
.strategy .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.strategy h2 { max-width: 16ch; }
.highlight-pill {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink);
  color: var(--sage);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  padding: 14px 22px 14px 18px;
  border-radius: var(--r-sm);
  margin-top: 28px;
  letter-spacing: 0.005em;
}
.highlight-pill .icon {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--sage-700);
  color: #fff;
  border-radius: 50%;
}

.steps-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
}
.steps-card .label {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
  margin-bottom: 28px;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.step:first-of-type { border-top: 0; padding-top: 0; }
.step:last-of-type { padding-bottom: 0; }
.step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--sage-700);
  color: var(--sage-700);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
}
.step h5 {
  margin: 4px 0 6px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
}
.step p { margin: 0; font-size: 15px; line-height: 1.55; }

/* ============================================================
   Video section
   ============================================================ */
.video-section { background: var(--bg-soft); }
.video-section .grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 64px;
  align-items: center;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-image: url('/img/headers/videos.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.04);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
}
.video-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(125,168,155,.18), transparent 60%);
}
.play-btn {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.play-btn .circle {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--sage);
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform var(--t-med);
  box-shadow: 0 16px 40px -8px rgba(125,168,155,.55);
}
.video-frame:hover .play-btn .circle { transform: scale(1.06); }
.video-meta {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex; gap: 10px; align-items: center;
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
}
.video-meta .pill {
  background: rgba(255,255,255,.12);
  padding: 5px 10px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.16);
  font-variant-numeric: tabular-nums;
}
.video-bullets {
  display: grid;
  gap: 16px;
  margin: 28px 0 36px;
}
.video-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px;
  color: var(--fg);
  line-height: 1.5;
}

/* ============================================================
   Investment
   ============================================================ */
.investment { background: var(--bg); }
.investment .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.return-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.return-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 110% -10%, rgba(125,168,155,.18), transparent 60%);
  pointer-events: none;
}
.return-card h3, .return-card p { position: relative; }
.return-card h3 { color: #fff; margin-bottom: 16px; font-size: 28px; }
.return-card p { color: var(--on-dark-2); font-size: 15.5px; }
.return-bars {
  display: grid;
  gap: 16px;
  margin-top: 36px;
  position: relative;
}
.bar-row { display: grid; grid-template-columns: 56px 1fr 96px; gap: 16px; align-items: center; }
.bar-row .label { font-family: var(--font-serif); font-weight: 500; font-size: 22px; color: var(--sage); }
.bar-row .track { height: 8px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; }
.bar-row .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--sage-700));
  border-radius: 99px;
}
.bar-row .value { font-family: var(--font-serif); font-weight: 500; font-size: 22px; text-align: right; font-variant-numeric: tabular-nums; }
.return-foot {
  position: relative;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
  color: var(--on-dark-3);
}
.invest-ctas {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.invest-cta-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.invest-cta-card:hover { border-color: var(--sage); background: var(--bg-elev); }
.invest-cta-card h4 { margin-bottom: 4px; font-family: var(--font-serif); font-weight: 600; font-size: 19px; }
.invest-cta-card p { margin: 0; font-size: 14.5px; line-height: 1.45; }

/* ============================================================
   KPI bar
   ============================================================ */
.kpi-bar {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(64px, 8vw, 96px) !important;
}
.kpi-bar .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.kpi {
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.kpi:first-child { border-left: 0; padding-left: 0; }
.kpi .num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.2vw, 64px);
  line-height: 1;
  color: var(--sage);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.kpi .lbl {
  font-size: 14px;
  color: var(--on-dark-2);
  letter-spacing: 0.02em;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--bg-soft); }
.testimonials .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testi {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.testi .stars { color: var(--sage-700); font-size: 16px; margin-bottom: 18px; letter-spacing: 2px; }
.testi blockquote {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
  text-wrap: pretty;
  min-height: 5.6em; /* ~4 Zeilen */
}
.testi blockquote::before { content: "„"; }
.testi blockquote::after { content: "\""; }
.testi .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-800);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
}
.testi .who-meta strong { display: block; font-size: 15px; color: var(--ink); font-weight: 500; }
.testi .who-meta span { font-size: 12.5px; color: var(--fg-3); }
.trustpilot-foot {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--fg-2);
}
.trustpilot-foot .stars { color: var(--sage-700); font-size: 20px; letter-spacing: 2px; }
.trustpilot-foot strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.25;
  text-wrap: balance;
}
.faq-icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform var(--t-med); }
.faq-item.open .faq-icon { background: var(--ink); color: var(--sage); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}
.faq-a-inner { padding: 0 0 28px; max-width: 70ch; }
.faq-a p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--fg-2); }
.faq-item.open .faq-a { max-height: 500px; }

/* ============================================================
   Booking — Calendly embed area + WhatsApp/Phone
   ============================================================ */
.booking { background: var(--bg-soft); }
.booking .booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: stretch;
}

.booking-side {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.booking-side h3 { color: #fff; font-size: 30px; max-width: 14ch; }
.booking-side .lead { color: var(--on-dark-2); font-size: 15.5px; }
.booking-features {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.booking-features .row {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--on-dark-2);
}
.booking-features .row svg { width: 18px; height: 18px; color: var(--sage); flex: none; margin-top: 1px; }
.booking-channels {
  display: grid; gap: 10px;
  margin-top: auto;
}
.booking-channels .chan {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: rgba(255,255,255,.92);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.booking-channels .chan:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.booking-channels .chan .chan-ic {
  width: 36px; height: 36px;
  border-radius: var(--r-xs);
  display: grid; place-items: center;
  flex: none;
}
.booking-channels .chan.whatsapp .chan-ic { background: #25D366; color: #fff; }
.booking-channels .chan.phone .chan-ic { background: var(--sage); color: var(--ink); }
.booking-channels .chan .chan-meta strong { display: block; font-weight: 500; color: #fff; font-size: 14.5px; }
.booking-channels .chan .chan-meta span { font-size: 12px; color: var(--on-dark-3); letter-spacing: 0.02em; }

.calendly-embed {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  box-shadow: var(--shadow-sm);
}
.calendly-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.calendly-head .title { display: flex; align-items: center; gap: 12px; }
.calendly-head .cal-badge {
  background: #006bff;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.calendly-head .title strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
}
.calendly-duration {
  display: flex; gap: 4px;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: var(--r-sm);
}
.calendly-duration button {
  background: transparent;
  border: 0;
  padding: 8px 14px;
  border-radius: var(--r-xs);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  cursor: pointer;
}
.calendly-duration button.active {
  background: var(--bg-elev);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.calendly-body {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 28px;
  flex: 1;
}
.cal-cal {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
}
.cal-month {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.cal-nav-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 0;
  display: grid; place-items: center;
  color: var(--fg-2);
}
.cal-nav-btn:hover { background: var(--sage-100); color: var(--sage-800); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-grid .dow { color: var(--fg-3); font-size: 11px; font-weight: 600; text-align: center; padding: 6px 0; letter-spacing: 0.05em; }
.cal-grid .day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: all var(--t-fast);
}
.cal-grid .day.muted { color: var(--mist); cursor: default; opacity: 0.5; }
.cal-grid .day.available:hover { background: var(--sage-100); color: var(--sage-800); }
.cal-grid .day.selected { background: var(--ink); color: var(--sage); }
.cal-grid .day.today { color: var(--sage-700); font-weight: 600; }

.cal-slots-col { display: flex; flex-direction: column; gap: 8px; }
.cal-slots-col .head {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin-bottom: 6px;
}
.slot {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  background: var(--bg-elev);
  color: var(--ink);
  cursor: pointer;
  transition: all var(--t-fast);
  font-variant-numeric: tabular-nums;
}
.slot:hover { border-color: var(--sage); color: var(--sage-800); }
.slot.selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.cal-slots-col .btn { margin-top: 8px; }

.cal-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-3);
  display: flex; gap: 8px; align-items: center;
}

/* ============================================================
   Contact form
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-shell {
  background: var(--bg-soft);
  border-radius: var(--r-2xl);
  padding: 56px;
}
.contact-shell .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-intro h2 { margin-bottom: 16px; max-width: 18ch; }
.contact-intro p { font-size: 16.5px; line-height: 1.55; }
.contact-intro ul.assurances {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.contact-intro ul.assurances li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.45;
}
.contact-intro .alt {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-intro .alt .label {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600; margin-bottom: 6px;
}
.contact-intro .alt .num {
  font-family: var(--font-serif); font-weight: 500; font-size: 26px;
  color: var(--ink); font-variant-numeric: tabular-nums;
  letter-spacing: 0.005em;
}
.contact-intro .alt .hours { font-size: 13.5px; color: var(--fg-2); margin-top: 4px; }

.form-card {
  background: var(--bg-elev);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.progress { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.progress .pip {
  flex: 1; height: 3px;
  background: var(--border);
  border-radius: 99px;
}
.progress .pip.active, .progress .pip.done { background: var(--sage-700); }
.progress-label {
  font-size: 11.5px;
  color: var(--fg-3);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.progress-wrap { margin-bottom: 32px; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.form-step h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-step .sub { color: var(--fg-2); font-size: 14.5px; margin-bottom: 24px; }

.radio-cards { display: grid; gap: 10px; margin-bottom: 0; }
.radio-card {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--bg-elev);
  transition: border-color var(--t-fast), background var(--t-fast);
  position: relative;
}
.topic-grid { display: grid; gap: 8px; }
.topic-grid .radio-card {
  grid-template-columns: 1fr;
  padding: 14px 18px;
}
.topic-grid .radio-card span {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.3;
}
.radio-card:hover { border-color: var(--fg-3); }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card .ic {
  width: 40px; height: 40px;
  border-radius: var(--r-xs);
  background: var(--sage-100);
  color: var(--sage-800);
  display: grid; place-items: center;
}
.radio-card .ic svg { width: 20px; height: 20px; }
.radio-card .ttl { font-weight: 500; font-size: 15.5px; color: var(--ink); }
.radio-card .ttl small { display: block; font-weight: 400; color: var(--fg-3); font-size: 13px; margin-top: 2px; }
.radio-card .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: grid; place-items: center;
  transition: all var(--t-fast);
  color: #fff;
}
.radio-card .check svg { width: 12px; height: 12px; opacity: 0; }
.radio-card.selected {
  border-color: var(--sage-700);
  background: var(--sage-50);
}
.radio-card.selected .check {
  background: var(--sage-700);
  border-color: var(--sage-700);
}
.radio-card.selected .check svg { opacity: 1; }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 0 14px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-elev);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { padding: 12px 14px; height: auto; min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--sage-700);
  box-shadow: 0 0 0 3px var(--sage-100);
}
.field .hint { font-size: 12.5px; color: var(--fg-3); margin-top: 6px; }
.field-checkbox {
  display: flex; gap: 10px; align-items: center; cursor: pointer;
  font-size: 14.5px; color: var(--ink); font-weight: 400;
}
.field-checkbox input { width: 18px; height: 18px; accent-color: var(--sage-700); }

.channel-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.channel-pill {
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  color: var(--fg-2);
  transition: all var(--t-fast);
}
.channel-pill svg { width: 16px; height: 16px; }
.channel-pill:hover { border-color: var(--fg-3); color: var(--ink); }
.channel-pill.selected {
  background: var(--sage-50);
  border-color: var(--sage-700);
  color: var(--sage-800);
}

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px;
  color: var(--fg-2);
  margin: 12px 0 24px;
  line-height: 1.5;
}
.consent input { margin-top: 2px; accent-color: var(--sage-700); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--sage-700); text-decoration: underline; }

.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
  gap: 12px;
}
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success.active { display: block; animation: fadeIn .3s ease; }
.form-success .icon-big {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-800);
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.form-success .icon-big svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 15px; }

.honeypot { position: absolute; left: -9999px; }

/* ============================================================
   Location
   ============================================================ */
.location { background: var(--bg-soft); }
.location .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-info-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.info-row:first-child { border-top: 0; padding-top: 0; }
.info-row:last-child { padding-bottom: 0; }
.info-row .ic {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--sage-100);
  color: var(--sage-800);
  display: grid; place-items: center;
}
.info-row .ic svg { width: 20px; height: 20px; }
.info-row h5 {
  font-family: var(--font-sans);
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
  margin: 0 0 6px;
}
.info-row strong { color: var(--ink); font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; }
.info-row .small { font-size: 14px; color: var(--fg-2); margin-top: 4px; line-height: 1.5; }

.map-placeholder {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, var(--paper-2), var(--bg-soft));
  border: 1px solid var(--border);
  min-height: 360px;
  display: grid; place-items: center;
}
.map-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(transparent 95%, var(--border) 95%) 0 0 / 60px 60px,
    linear-gradient(90deg, transparent 95%, var(--border) 95%) 0 0 / 60px 60px;
  opacity: 0.4;
}
.map-placeholder .pin {
  position: relative;
  display: grid; place-items: center;
  z-index: 2;
}
.map-placeholder .pin .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sage-700);
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}
.map-placeholder .pin .ring {
  position: absolute;
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid var(--sage-700);
  opacity: .4;
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.map-consent {
  position: absolute;
  inset: auto 16px 16px 16px;
  background: rgba(255,255,255,.96);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--fg-2);
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #181a19;
  color: rgba(255,255,255,.7);
  padding-top: 80px;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.site-footer .brand-block { color: #fff; }
.site-footer .brand-block .brand img {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.site-footer p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 36ch; }
.site-footer h5 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
}
.site-footer ul { display: grid; gap: 12px; }
.site-footer a { color: rgba(255,255,255,.65); font-size: 14.5px; transition: color var(--t-fast); }
.site-footer a:hover { color: var(--sage); }
.site-footer .footer-contact a { color: #fff; font-variant-numeric: tabular-nums; }
.site-footer .footer-contact .muted { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer-bar nav { display: flex; gap: 24px; flex-wrap: wrap; }
.made-by { color: rgba(255,255,255,.6); }
.made-by strong { color: #fff; font-weight: 500; }

/* ============================================================
   WhatsApp Chat Widget (FAB + popup with quick replies)
   ============================================================ */
.wa-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  font-family: var(--font-sans);
}
.wa-fab {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: 0;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.5), 0 4px 8px rgba(0,0,0,.12);
  transition: transform var(--t-fast);
  position: relative;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::after {
  content: "";
  position: absolute;
  top: 4px; right: 4px;
  width: 12px; height: 12px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse-dot 2.5s ease-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: .7; }
}
.wa-widget.open .wa-fab::after { display: none; }

.wa-popup {
  position: absolute;
  bottom: 72px; right: 0;
  width: 340px;
  background: var(--bg-elev);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,.28), 0 6px 16px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(.96);
  transform-origin: bottom right;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.wa-widget.open .wa-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wa-head {
  background: #075E54;
  color: #fff;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  position: relative;
}
.wa-head .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid rgba(255,255,255,.18);
}
.wa-head .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.wa-head .meta {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 14px;
}
.wa-head .meta .name { font-weight: 600; color: #fff; }
.wa-head .meta .status {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 6px;
}
.wa-head .meta .status::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25D366;
}
.wa-head .close {
  background: transparent; border: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 18px;
  line-height: 1;
}
.wa-head .close:hover { background: rgba(255,255,255,.12); color: #fff; }

.wa-body {
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.3), transparent 50%);
  padding: 16px 18px;
  min-height: 140px;
  max-height: 200px;
  overflow-y: auto;
}
.wa-bubble {
  background: #fff;
  border-radius: 4px 12px 12px 12px;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.45;
  color: #303030;
  max-width: 88%;
  margin-bottom: 8px;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
}
.wa-bubble .from {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #075E54;
  margin-bottom: 2px;
}
.wa-bubble .time {
  display: block;
  font-size: 10.5px;
  color: #999;
  text-align: right;
  margin-top: 2px;
}

.wa-quick-replies {
  background: var(--bg-elev);
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border);
}
.wa-quick-replies .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin-bottom: 10px;
}
.wa-quick-replies .options {
  display: grid;
  gap: 6px;
}
.wa-quick-reply {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
}
.wa-quick-reply:hover {
  background: var(--sage-50);
  border-color: var(--sage-700);
  color: var(--sage-800);
}
.wa-quick-reply::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .5;
  flex: none;
}

.wa-foot {
  padding: 12px 16px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-3);
  text-align: center;
}
.wa-foot a { color: var(--sage-700); font-weight: 600; }

@media (max-width: 720px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-fab { width: 54px; height: 54px; }
  .wa-fab svg { width: 26px; height: 26px; }
  .wa-popup { width: calc(100vw - 32px); max-width: 340px; }
}

/* Hero video preview card */
.hero-video {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  background-color: #14181a;
  background-size: cover;
  background-position: center 15%;
  color: var(--sage);
  display: block;
  text-decoration: none;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,16,14,.82) 0%, rgba(10,16,14,.25) 55%, transparent 100%);
  pointer-events: none;
}
.hero-video-tex { display: none; }
.hero-video-glyph { display: none; }
.hero-video-poster { display: none; }
.hero-video-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px;
  gap: 16px;
  z-index: 2;
}
.hero-video:hover .hero-video-play { transform: scale(1.08); }
.hero-video-meta { color: #fff; flex: 1; }
.hero-video-meta .pill {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.hero-video-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.18;
  color: #fff;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-video-play {
  flex: none;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  border: 0;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -6px rgba(125,168,155,.6);
  transition: transform var(--t-med);
}
.hero-video:hover .hero-video-play { transform: scale(1.06); }

/* Partner Logos v2 */
.partner-logos .partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-elev);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fg-2);
  opacity: 1;
  font-style: normal;
}
.partner-logos .partner-logo .logo-mark {
  width: 26px;
  height: 26px;
  border-radius: var(--r-xs);
  background: var(--ink);
  color: var(--sage);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}
.partner-logos .partner-logo .logo-word {
  color: var(--ink);
  font-weight: 500;
}

/* Google stars footer */
.trustpilot-foot .google-stars { display: inline-flex; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.blog-card:nth-child(3n + 1) .cover {
  background-image: url('/img/headers/cat-altersvorsorge.jpg');
}
.blog-card:nth-child(3n + 2) .cover {
  background-image: url('/img/headers/cat-fonds.jpg');
}
.blog-card:nth-child(3n) .cover {
  background-image: url('/img/headers/cat-vermoegen.jpg');
  display: flex;
  flex-direction: column;
  display: none;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.blog-card:hover { border-color: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-card .cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  display: none;
  overflow: hidden;
}
.blog-card .cover .art-bg {
  position: absolute; inset: 0;
  background:
  display: none;
    radial-gradient(700px 360px at 80% 10%, rgba(125,168,155,.22), transparent 60%),
    linear-gradient(180deg, #1a2120, #0e1213);
}
.blog-card .cover .art-tex {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 14px, transparent 14px 28px);
}
.blog-card .cover svg {
  position: absolute; inset: 0; margin: auto;
  width: 56%; height: 56%;
  color: var(--sage);
  opacity: .85;
  z-index: 2;
}
.blog-card .body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card .meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card .meta .cat { color: var(--sage-800); }
.blog-card .meta .dot { opacity: .4; }
.blog-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}
.blog-card p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.blog-card .read-more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Article body */
.article-body {
  max-width: 70ch;
  margin-inline: auto;
}
.article-body h2 { margin-top: 56px; margin-bottom: 20px; max-width: 26ch; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 32px; margin-bottom: 12px; font-size: 22px; }
.article-body p { font-size: 17px; line-height: 1.7; margin-bottom: 1.2em; }
.article-body ul, .article-body ol {
  margin: 0 0 1.5em;
  padding-left: 0;
  display: grid; gap: 12px;
}
.article-body ul li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
}
.article-body ul li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage-700);
}
.article-body ol { counter-reset: ai; }
.article-body ol li {
  counter-increment: ai;
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.55;
}
.article-body ol li::before {
  content: counter(ai);
  position: absolute; left: 0; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-800);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 14px;
  display: grid; place-items: center;
}
.article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--sage-700);
  background: var(--bg-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}
.article-meta-bar {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
  font-size: 13px;
  color: var(--fg-3);
}
.article-meta-bar .author { display: flex; gap: 10px; align-items: center; }
.article-meta-bar .author img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover; object-position: center 22%;
}
.article-meta-bar .author strong { color: var(--ink); font-weight: 500; font-size: 14px; }
.article-meta-bar .sep { opacity: 0.4; }

/* --- Artikel: Diagramme/Abbildungen --- */
.article-body .article-figure {
  margin: 40px 0;
  padding: 0;
}
.article-body .article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  box-shadow: var(--shadow-sm);
}
.article-body .article-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-3);
  text-align: center;
  font-style: italic;
}

/* --- Artikel: Tabellen --- */
.article-body .article-table-wrap {
  margin: 36px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
}
.article-body table.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 480px;
}
.article-body table.article-table caption {
  caption-side: bottom;
  padding: 12px 16px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-3);
  font-style: italic;
  text-align: left;
}
.article-body table.article-table th,
.article-body table.article-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.article-body table.article-table thead th {
  background: var(--sage-50);
  color: var(--sage-800);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.article-body table.article-table tbody tr:last-child td { border-bottom: none; }
.article-body table.article-table tbody tr:nth-child(even) td { background: var(--bg-soft); }
.article-body table.article-table td:first-child { font-weight: 500; color: var(--ink); }

@media (max-width: 520px) {
  .article-body .article-figure { margin: 28px 0; }
  .article-body table.article-table { font-size: 14px; }
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.geo-seo {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.geo-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.geo-author { display: flex; gap: 20px; align-items: flex-start; }
.geo-author .avatar {
  flex: none;
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bg-soft);
}
.geo-author .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.geo-author .role-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin-bottom: 4px;
}
.geo-author h3.name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--ink);
}
.geo-author p { font-size: 14.5px; line-height: 1.55; color: var(--fg-2); margin: 0; }

.nap {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.nap-row { display: grid; grid-template-columns: 130px 1fr; gap: 14px; align-items: baseline; }
.nap-row dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin: 0;
}
.nap-row dd { margin: 0; font-size: 14.5px; color: var(--fg); line-height: 1.5; }
.nap-row dd strong { font-weight: 500; }
.nap-row dd a { color: var(--ink); font-weight: 500; text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 3px; transition: text-decoration-color var(--t-fast); }
.nap-row dd a:hover { text-decoration-color: var(--sage-700); }

.geo-meta {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--fg-3);
}
.geo-meta .dot { opacity: .5; }

.geo-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 16px;
}

.geo-areas { display: flex; flex-wrap: wrap; gap: 8px; }
.area-pill {
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.area-pill.primary {
  background: var(--ink);
  color: var(--sage);
  border-color: var(--ink);
}

.geo-signals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
.signal { padding: 4px 0; }
.signal-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}
.signal-lbl {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 500;
}

.geo-kw {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 14px; color: var(--fg-2);
}
.geo-kw li {
  position: relative; padding-left: 14px;
}
.geo-kw li::before {
  content: "·";
  position: absolute; left: 0;
  color: var(--sage-700);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .geo-grid { grid-template-columns: 1fr; }
  .geo-card { padding: 28px 24px; }
  .nap-row { grid-template-columns: 100px 1fr; }
}
@media (max-width: 720px) {
  .geo-author { flex-direction: column; gap: 12px; }
  .geo-author .avatar { width: 64px; height: 64px; }
  .nap-row { grid-template-columns: 1fr; gap: 4px; }
  .geo-signals-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.tweaks-panel {
  position: fixed;
  top: 100px;
  right: 24px;
  width: 320px;
  max-height: calc(100vh - 140px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  z-index: 80;
  overflow: auto;
  display: none;
  font-family: var(--font-sans);
}
.tweaks-panel.open { display: block; }
.tweaks-panel .head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: var(--bg-elev);
  z-index: 2;
}
.tweaks-panel .head h6 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.tweaks-panel .head .x {
  background: transparent; border: 0; color: var(--fg-3); font-size: 22px; line-height: 1; cursor: pointer;
}
.tweaks-panel .body { padding: 18px; }
.tweaks-panel .section { margin-bottom: 20px; }
.tweaks-panel .section:last-child { margin-bottom: 0; }
.tweaks-panel .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 10px;
}
.tweak-pair {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.tweak-pair:hover { border-color: var(--fg-3); }
.tweak-pair.active {
  border-color: var(--sage-700);
  background: var(--sage-50);
}
.tweak-pair .name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.tweak-pair .preview {
  margin-top: 4px;
  display: flex; gap: 8px; align-items: baseline;
}
.tweak-pair .preview .display { font-size: 22px; line-height: 1; color: var(--ink); }
.tweak-pair .preview .body { font-size: 12px; color: var(--fg-2); }

.tweaks-toggle {
  position: fixed;
  bottom: 24px;
  right: 100px;
  background: var(--ink);
  color: #fff;
  border: 0;
  height: 48px;
  padding: 0 18px;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md);
  z-index: 70;
  cursor: pointer;
}
.tweaks-toggle:hover { background: var(--ink-soft); }
.tweaks-toggle svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .tweaks-toggle { right: 80px; bottom: 16px; }
  .tweaks-panel { right: 12px; left: 12px; width: auto; top: 80px; }
}
.cookie-consent {
  position: fixed;
  bottom: 20px; left: 20px;
  max-width: 440px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  z-index: 100;
  font-size: 13.5px;
  color: var(--fg-2);
  transform: translateY(150%);
  animation: cookieIn .5s ease 1s forwards;
}
@keyframes cookieIn {
  to { transform: translateY(0); }
}
.cookie-consent h6 { font-family: var(--font-serif); font-weight: 500; font-size: 20px; color: var(--ink); margin: 0 0 6px; }
.cookie-consent p { margin: 0; font-size: 13.5px; line-height: 1.5; }
.cookie-consent .actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.cookie-consent .actions .btn { height: 38px; padding: 0 14px; font-size: 13px; }
.cookie-consent .close-x {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: 0; color: var(--fg-3); font-size: 22px; line-height: 1;
}

/* ============================================================
   Subpage hero (full-bleed)
   ============================================================ */
.subpage-hero {
  position: relative;
  /* Branded abstract header. Pro Seite ueber --hero-bg ueberschrieben,
     niemals ein Portraitfoto. */
  --hero-bg: url('/img/headers/cat-allgemein.jpg');
  background:
    linear-gradient(180deg, rgba(16, 22, 23, .34) 0%, rgba(16, 22, 23, .46) 55%, rgba(13, 18, 19, .66) 100%),
    var(--hero-bg);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
  padding-top: clamp(116px, 13vw, 188px);
  padding-bottom: clamp(72px, 9vw, 132px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* Fonds-Bereich */
.subpage-hero:has(#hero-fonds)            { --hero-bg: url('/img/headers/fonds.jpg'); }
.subpage-hero:has(#hero-vv)               { --hero-bg: url('/img/headers/vermoegensverwaltung.jpg'); }
.subpage-hero:has(#hero-depotcheck)       { --hero-bg: url('/img/headers/depot-check.jpg'); }
.subpage-hero:has(#hero-ffb)              { --hero-bg: url('/img/headers/ffb-depot.jpg'); }
.subpage-hero:has(#hero-umstrukturierung) { --hero-bg: url('/img/headers/umstrukturierung.jpg'); }
/* Vorsorge-Bereich */
.subpage-hero:has(#hero-vk)               { --hero-bg: url('/img/headers/vorsorgekonzepte.jpg'); }
.subpage-hero:has(#hero-altersvorsorge)   { --hero-bg: url('/img/headers/altersvorsorge.jpg'); }
.subpage-hero:has(#hero-sv-befreiung)     { --hero-bg: url('/img/headers/sv-befreiung.jpg'); }
.subpage-hero:has(#hero-bu)               { --hero-bg: url('/img/headers/bu.jpg'); }
.subpage-hero:has(#hero-versorgungsordnung){ --hero-bg: url('/img/headers/versorgungsordnung.jpg'); }
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 500px at 84% 14%, rgba(125,168,155,.14), transparent 62%),
    radial-gradient(700px 420px at 8% 100%, rgba(125,168,155,.08), transparent 65%);
}
.subpage-hero .container { position: relative; z-index: 3; }

.subpage-hero image-slot {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.subpage-hero image-slot::part(image) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.subpage-hero .hero-img-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(20,24,26,.4) 0%, rgba(20,24,26,.55) 50%, rgba(14,18,19,.85) 100%),
    linear-gradient(90deg, rgba(20,24,26,.4) 0%, transparent 60%);
  pointer-events: none;
}
.subpage-hero .art-bg {
  position: absolute; inset: 0;
  background: transparent;
  z-index: 1;
}
.subpage-hero .art-texture {
  display: none;
}
.subpage-hero .image-slot-placeholder,
.subpage-hero .art-glyph,
.subpage-hero .art-corner,
.subpage-hero [id^="hero-"] {
  display: none !important;
}
.subpage-hero .art-glyph {
  position: absolute;
  top: 50%; right: -4%;
  transform: translateY(-50%);
  width: 56%;
  max-width: 720px;
  aspect-ratio: 1;
  place-items: center;
  z-index: 2;
  opacity: .9;
  pointer-events: none;
}
.subpage-hero .art-glyph svg {
  width: 80%; height: 80%;
  color: var(--sage);
  opacity: .85;
}
.subpage-hero h1 {
  max-width: 22ch;
  margin-top: 20px;
  color: #fff;
}
.subpage-hero h1 em { font-style: italic; color: var(--sage); }
.subpage-hero .lead {
  margin-top: 24px;
  font-size: 19px;
  max-width: 56ch;
  color: rgba(255,255,255,.78);
}
.subpage-hero .ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.subpage-hero .eyebrow.on-dark, .subpage-hero .eyebrow { color: var(--sage); }
.subpage-hero .ctas .btn-primary { background: var(--sage-700); color: #fff; }
.subpage-hero .ctas .btn-primary:hover { background: var(--sage-800); }
.subpage-hero .ctas .btn-secondary {
  border-color: rgba(255,255,255,.22);
  color: #fff;
  background: transparent;
}
.subpage-hero .ctas .btn-secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.45); }
.subpage-hero .art-corner {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 4;
  background: var(--sage);
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
}
.subpage-hero .breadcrumb { color: rgba(255,255,255,.55); }
.subpage-hero .breadcrumb a { color: rgba(255,255,255,.55); }
.subpage-hero .breadcrumb a:hover { color: #fff; }
.subpage-hero .breadcrumb svg { opacity: .5; }

@media (max-width: 720px) {
  .subpage-hero { padding-top: 90px; padding-bottom: 80px; }
  .subpage-hero .art-glyph { right: -30%; width: 100%; opacity: .35; }
  .subpage-hero .art-corner { top: 16px; right: 16px; font-size: 13px; padding: 6px 10px; }
}

.breadcrumb {
  font-size: 13px;
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 8px;
  color: var(--fg-3);
}
.breadcrumb a { color: inherit; transition: color var(--t-fast); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }

.author-stamp {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; gap: 16px; align-items: center;
  max-width: 60ch;
}
.author-stamp .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: var(--bg-soft);
}
.author-stamp .avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-stamp .meta { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.author-stamp .meta strong { color: var(--ink); font-weight: 500; }
.author-stamp .meta .date { color: var(--fg-3); font-size: 12.5px; margin-top: 2px; }

/* Article-like content body */
.subpage-content { background: var(--bg); }
.subpage-content .body {
  max-width: 70ch;
  margin-inline: auto;
}
.subpage-content .body h2 { margin-top: 56px; margin-bottom: 20px; max-width: 22ch; }
.subpage-content .body h2:first-child { margin-top: 0; }
.subpage-content .body h3 { margin-top: 36px; margin-bottom: 12px; font-size: 22px; }
.subpage-content .body p { font-size: 17px; line-height: 1.7; margin-bottom: 1.2em; }
.subpage-content .body ul.bullets {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
}
.subpage-content .body ul.bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; line-height: 1.55;
  color: var(--fg);
}
.subpage-content .body ol.steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 24px;
  margin: 0 0 28px;
  counter-reset: step;
}
.subpage-content .body ol.steps-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-soft);
}
.subpage-content .body ol.steps-list li::before {
  content: counter(step);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sage);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
}
.subpage-content .body ol.steps-list li h4 { margin: 4px 0 4px; font-family: var(--font-serif); font-weight: 500; font-size: 19px; }
.subpage-content .body ol.steps-list li p { font-size: 15px; margin: 0; }

.callout {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex; gap: 16px; align-items: flex-start;
}
.callout .ic {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-800);
  display: grid; place-items: center;
}
.callout strong { color: var(--ink); font-weight: 500; }

.related {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.related .cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.related .card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color var(--t-fast);
}
.related .card:hover { border-color: var(--sage); }
.related .card .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); font-weight: 600; }
.related .card h4 { font-family: var(--font-serif); font-weight: 500; font-size: 19px; color: var(--ink); }
.related .card .arrow-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 14px;
  color: var(--sage-700);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}

.final-cta {
  background: var(--ink);
  color: #fff;
}
.final-cta h2 { color: #fff; max-width: 18ch; margin-inline: auto; text-align: center; }
.final-cta p { color: var(--on-dark-2); text-align: center; max-width: 50ch; margin: 20px auto 36px; font-size: 17px; }
.final-cta .ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.final-cta .ctas .btn-primary { background: var(--sage-700); }
.final-cta .ctas .btn-primary:hover { background: var(--sage-800); }

/* Videos page list */
.video-list {
  display: grid;
  gap: 32px;
}
.video-row {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  align-items: center;
}
.video-row:first-child { border-top: 0; padding-top: 0; }
.video-row .row-frame {
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  overflow: hidden;
  background-color: #1a2120;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}
.video-row .row-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 14, .12) 0%, rgba(12, 16, 14, .52) 100%),
    radial-gradient(circle at 50% 40%, rgba(125,168,155,.14), transparent 60%);
}
.video-row .row-frame .play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.video-row .row-frame .play .circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  display: grid; place-items: center;
}
.video-row .row-frame .meta-pill {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero .inner { grid-template-columns: 1fr; gap: 48px; max-width: 600px; margin-inline: auto; }
  .hero-portrait { aspect-ratio: 4/5; max-width: 480px; margin-inline: auto; }
  .about .grid { grid-template-columns: 1fr; gap: 40px; max-width: 600px; margin-inline: auto; }
  .portrait-frame { max-width: 460px; }
  .strategy .grid { grid-template-columns: 1fr; gap: 40px; }
  .video-section .grid { grid-template-columns: 1fr; gap: 40px; }
  .investment .grid { grid-template-columns: 1fr; gap: 40px; }
  .services .cards { grid-template-columns: 1fr; gap: 16px; }
  .service-card { min-height: auto; }
  .service-card h3 { min-height: auto; }
  .service-card .desc { min-height: auto; }
  .testimonials .grid { grid-template-columns: 1fr; gap: 16px; }
  .testi blockquote { min-height: auto; }
  .kpi-bar .grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .kpi { border-left: 0; padding-left: 0; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .kpi:last-child, .kpi:nth-last-child(2) { border-bottom: 0; padding-bottom: 0; }
  .contact-shell .grid { grid-template-columns: 1fr; gap: 40px; }
  .booking .booking-grid { grid-template-columns: 1fr; }
  .calendly-body { grid-template-columns: 1fr; }
  .location .grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .related .cards { grid-template-columns: 1fr; }
  .video-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding-block: 64px; }
  .section-head { margin-bottom: 40px; }
  .main-nav, .header-phone { display: none; }
  .mobile-toggle { display: grid; place-items: center; color: var(--ink); }
  .header-actions .btn { display: none; }
  .site-header .inner { height: 72px; }
  .brand img { height: 34px; }
  .hero { padding-top: 56px; padding-bottom: 64px; }
  .hero p.sub { font-size: 17px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 24px 32px; max-width: 360px; }
  .hero-trust .trust-item:last-child { grid-column: 1 / -1; }
  .hero-ctas .btn { flex: 1; min-width: 0; }
  .hero-badge { top: 24px; left: -8px; padding: 12px 14px; }
  .hero-badge .big { font-size: 24px; }
  .contact-shell { padding: 28px 22px; }
  .return-card, .form-card { padding: 28px 22px; }
  .contact-info-card, .booking-side, .calendly-embed, .steps-card { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .channel-row { grid-template-columns: repeat(2, 1fr); }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .whatsapp-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 32px; }
  .calendly-head { flex-direction: column; align-items: flex-start; }
  .partner-logos { gap: 20px; }
  .partner-logo { font-size: 18px; }

  .subpage-content .body ol.steps-list li { grid-template-columns: 36px 1fr; gap: 14px; padding: 16px; }
}

/* ============================================================
   Hub-page classes (index.html, vorsorgekonzepte/, fonds/)
   ============================================================ */

/* Trust-bar */
.trust-bar .trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item .trust-val {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
}
.trust-item .trust-lbl {
  font-size: 12.5px;
  color: var(--fg-3);
  margin-top: 6px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Testimonial cards */
.testimonial-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.testimonial-card .stars { color: var(--sage-700); font-size: 16px; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-card blockquote {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
  text-wrap: pretty;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.testi-author strong { font-size: 15px; color: var(--ink); font-weight: 500; }
.testi-author span { font-size: 12.5px; color: var(--fg-3); }

/* Service-card link variant */
.service-card-link { text-decoration: none; color: inherit; cursor: pointer; }
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sage-700);
  margin-top: auto;
  padding-top: 16px;
}
.service-card-link:hover .card-cta { color: var(--sage-800); }

/* Badge pill */
.badge-pill {
  display: inline-block;
  background: var(--sage-100);
  color: var(--sage-800);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .trust-bar .trust-items { gap: 20px; }
  .testimonial-card blockquote { font-size: 16px; }
}
