/*
Theme Name: ImmoAdmin Daul
Theme URI: https://immoadmin-daul.de
Author: ImmoAdmin Daul
Author URI: https://immoadmin-daul.de
Description: Reine WEG-Verwaltung mit KI — KI-gestützte Hausverwaltung für Eigentümergemeinschaften.
Version: 1.0.0
License: GPL v2 or later
Text Domain: immoadmin-daul
*/
/* ============================================================
   ImmoAdmin Daul — Webseite
   Tokens follow design system: petrol #225c73, gold #FACF39,
   lavender #dde7fd, sky #adc5fa, petrol-light #2e7b9a.
   Fonts: system stack (Helvetica/Arial) per CLAUDE.md.
   ============================================================ */

:root {
  --petrol: #225c73;
  --petrol-2: #2e7b9a;
  --petrol-d: #1a4759;
  --gold: #FACF39;
  --gold-2: #f5b53a;
  --gold-3: #fde36b;
  --lavender: #dde7fd;
  --sky: #adc5fa;
  --row-alt: #f3f7fb;
  --line: #cfd8e3;
  --text: #1a1a1a;
  --mute: #5b6470;
  --white: #ffffff;
  --grad-petrol: linear-gradient(135deg, #225c73 0%, #2e7b9a 60%, #3a91b3 100%);
  --grad-gold: linear-gradient(135deg, #f5b53a 0%, #FACF39 50%, #fde36b 100%);
  --shadow-soft: 0 1px 2px rgba(34,92,115,.04), 0 8px 24px rgba(34,92,115,.06);
  --shadow-lift: 0 1px 2px rgba(34,92,115,.06), 0 18px 48px rgba(34,92,115,.12);

  --font: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
  --container: 1640px;
  --gutter: clamp(20px, 4vw, 80px);
  --section-y: clamp(64px, 9vw, 120px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  /* +10% globally — friendlier for older readers (was 17px) */
  font-size: 18.7px;
  line-height: 1.58;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 600px) {
  body { font-size: 17.6px; line-height: 1.55; }
}
img { max-width: 100%; display: block; }
a { color: var(--petrol); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ===== Type ============================================================ */
h1, h2, h3, h4 { font-weight: 700; color: var(--petrol); margin: 0; line-height: 1.12; letter-spacing: -0.015em; }
h1 { font-size: clamp(38px, 5.9vw, 70px); }
h2 { font-size: clamp(31px, 4.2vw, 51px); }
h3 { font-size: clamp(22px, 2.2vw, 29px); }
h4 { font-size: clamp(18px, 1.7vw, 22px); }
p { margin: 0; }
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--petrol-2);
  position: relative;
  padding-left: 44px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 32px; height: 3px; background: var(--gold); transform: translateY(-50%);
}
.lead { font-size: clamp(20px, 1.75vw, 24px); color: var(--text); line-height: 1.55; }
.mute { color: var(--mute); }

/* ===== Buttons ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 17.6px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--petrol); color: #fff; box-shadow: 0 6px 18px rgba(34,92,115,.25); }
.btn-primary:hover { background: var(--petrol-d); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(34,92,115,.3); }
.btn-ghost { background: #fff; color: var(--petrol); border: 1.5px solid var(--petrol); }
.btn-ghost:hover { background: var(--petrol); color: #fff; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--petrol); box-shadow: 0 6px 18px rgba(250,207,57,.4); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-sm { padding: 12px 20px; font-size: 15.4px; }
.btn-lg { padding: 20px 34px; font-size: 18.7px; }

/* ===== Nav ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--gutter); max-width: var(--container); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--petrol); font-size: 18px; }
.brand img { height: 38px; width: auto; border-radius: 5px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-links a:hover { text-decoration: none; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--petrol); margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; }
@media (max-width: 960px) {
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .nav-burger { display: block; }
  .nav-mobile {
    position: fixed; inset: 64px 0 0 0;
    background: #fff; padding: 32px var(--gutter);
    flex-direction: column; gap: 18px;
    z-index: 99; border-top: 1px solid var(--line);
    overflow-y: auto;
  }
  .nav-mobile.open { display: flex; animation: navSlide .3s ease; }
  @keyframes navSlide {
    from { transform: translateY(-12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .nav-mobile a { font-size: 22px; color: var(--petrol); font-weight: 600; padding: 8px 0; border-bottom: 1px solid var(--line); }
}

/* ===== Hero ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 0;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--grad-petrol);
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(250,207,57,.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(173,197,250,.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 72%;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 70% center;
  transform: scale(var(--hero-scale, 1.02));
  transition: transform .12s linear;
}
.hero-bg-image::before {
  /* fade from solid petrol on left to fully visible image on right */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(34,92,115,1) 0%,
    rgba(34,92,115,.95) 18%,
    rgba(34,92,115,.55) 38%,
    rgba(34,92,115,.18) 60%,
    rgba(34,92,115,0) 100%);
  z-index: 1; pointer-events: none;
}
.hero-bg-image::after {
  /* soft top + bottom edge fade so image floats */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(34,92,115,.4) 0%, transparent 14%,
    transparent 80%, rgba(34,92,115,.55) 100%);
  z-index: 1; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container); margin: 0 auto;
  padding: 40px var(--gutter) 80px;
  display: grid; grid-template-columns: minmax(460px, 1fr) minmax(0, 1.1fr); gap: 40px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(250,207,57,.35);
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(1.6); }
}
.hero h1 { color: #fff; }
.hero h1 .gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { color: rgba(255,255,255,.85); font-size: clamp(17px, 1.5vw, 21px); margin-top: 22px; max-width: 620px; line-height: 1.5; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-nominee {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(250,207,57,.25);
  padding: 8px 14px 8px 8px; border-radius: 999px;
  max-width: 100%;
}
.hero-nominee .nominee-badge {
  background: var(--grad-gold);
  color: var(--petrol);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  white-space: nowrap;
}
.hero-cta .btn-primary { background: var(--gold); color: var(--petrol); }
.hero-cta .btn-primary:hover { background: var(--gold-3); }
.hero-cta .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }

.hero-stats {
  display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap;
}
.hero-stats .stat { color: rgba(255,255,255,.85); font-size: 13px; }
.hero-stats .stat strong { display: block; color: var(--gold); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; line-height: 1.1; margin-bottom: 4px; }

.hero-visual {
  position: relative; aspect-ratio: 1.68 / 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-frame {
  position: relative; width: 100%; height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  isolation: isolate;
}
.hero-img-frame img {
  position: absolute; inset: -4% -1% -4% -1%;
  width: 102%; height: 108%; object-fit: cover;
  object-position: 50% center;
  will-change: transform;
  transform: scale(var(--hero-scale, 1.02)) translateY(var(--hero-shift, 0px));
  transition: transform .12s linear;
}
.hero-img-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(34,92,115,.45) 100%);
}
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: #fff; color: var(--petrol);
  padding: 14px 18px; border-radius: 12px;
  box-shadow: var(--shadow-lift);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .badge-num { font-size: 28px; font-weight: 700; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.hero-badge.tr { left: auto; right: -22px; bottom: auto; top: -18px; }

.scroll-hint {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 24px; color: rgba(255,255,255,.55); font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .arrow-down {
  width: 1px; height: 28px; background: rgba(255,255,255,.55);
  position: relative; animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 900px) {
  .hero { padding-top: 100px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 50px; }
  .hero-bg-image { width: 100%; height: 55%; top: auto; bottom: 0; opacity: .55; }
  .hero-bg-image::before {
    background: linear-gradient(180deg,
      rgba(34,92,115,1) 0%, rgba(34,92,115,.85) 30%, rgba(34,92,115,.4) 100%);
  }
  .hero-stats { gap: 22px; }
}
@media (max-width: 600px) {
  .hero-bg-image { height: 45%; opacity: .35; }
}

/* ===== Section base ==================================================== */
section { padding: var(--section-y) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lead { margin-top: 18px; }
section.tinted { background: var(--row-alt); }
section.dark { background: var(--grad-petrol); color: #fff; }
section.dark h2 { color: #fff; }
section.dark .lead { color: rgba(255,255,255,.85); }
section.dark .eyebrow { color: var(--gold); }
section.dark .eyebrow::before { background: var(--gold); }
section.dark .mute { color: rgba(255,255,255,.7); }

/* ===== Marquee ========================================================= */
.marquee {
  border-block: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 14px; }
.marquee-track span::before { content: "•"; color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Role-reversal split ============================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 40px;
}
.split-card {
  border-radius: 14px; padding: 36px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative; overflow: hidden;
}
.split-card.before {
  background: linear-gradient(180deg, #fff 0%, var(--row-alt) 100%);
}
.split-card.after {
  background: var(--grad-petrol);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lift);
}
.split-card .tag {
  display: inline-block; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 20px;
}
.split-card.before .tag { background: var(--lavender); color: var(--petrol); }
.split-card.after .tag { background: var(--gold); color: var(--petrol); }
.split-card h3 { color: inherit; margin-bottom: 14px; }
.split-card.after h3 { color: #fff; }
.split-card ul { list-style: none; padding: 0; margin: 22px 0 0; }
.split-card li {
  font-size: 15px;
  padding: 12px 0 12px 28px;
  position: relative;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: flex-start; gap: 14px;
}
.split-card.after li { border-top-color: rgba(255,255,255,.12); }
.split-card li:first-child { border-top: none; }
.split-card li::before {
  content: "";
  flex: 0 0 14px;
  width: 14px; height: 2px; background: var(--mute);
  margin-left: -28px;
  margin-top: 0.7em;
}
.split-card.after li::before { background: var(--gold); }

@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* ===== Stat grid ======================================================= */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 40px;
}
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.stat-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 32px;
  background: var(--gold);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: transparent; }
.stat-num {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700; color: var(--petrol);
  line-height: 1.05; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-num .unit { font-size: 0.55em; color: var(--mute); margin-left: 4px; font-weight: 600; }
.stat-label { font-size: 13px; color: var(--mute); line-height: 1.4; }

@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Cases =========================================================== */
.cases {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px;
}
.case {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.case-head {
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--row-alt);
}
.case-tag { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--petrol-2); margin-bottom: 8px; }
.case-head h3 { font-size: clamp(20px, 1.7vw, 24px); margin-bottom: 6px; }
.case-head p { font-size: 14px; color: var(--mute); }
.case-body { padding: 28px 30px; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.case-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); }
.case-row:first-child { border-top: none; padding-top: 0; }
.case-row .k { font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute); font-weight: 700; }
.case-row .v { font-size: 15px; color: var(--text); }
.case-row .v strong { color: var(--petrol); }
.case-result {
  margin-top: auto;
  background: var(--grad-petrol);
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 14px;
  border-left: 4px solid var(--gold);
}
.case-result .num { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 28px; font-weight: 700; line-height: 1; }
.case-result .lab { font-size: 13px; line-height: 1.4; }

@media (max-width: 800px) { .cases { grid-template-columns: 1fr; } }

/* ===== Comparison table ================================================ */
.compare-wrap { margin-top: 40px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
table.compare { width: 100%; border-collapse: collapse; font-size: 15px; }
table.compare th, table.compare td { padding: 18px 22px; text-align: left; vertical-align: top; }
table.compare thead th {
  background: var(--petrol); color: #fff; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em;
}
table.compare thead th:nth-child(3) { color: var(--gold); }
table.compare tbody tr { border-top: 1px solid var(--line); transition: background .2s ease; }
table.compare tbody tr:hover { background: var(--row-alt); }
table.compare td.task { font-weight: 600; color: var(--petrol); }
table.compare td.classic { color: var(--mute); text-decoration: line-through; text-decoration-thickness: 1px; }
table.compare td.iad { color: var(--petrol); font-weight: 700; position: relative; padding-left: 38px; }
table.compare td.iad::before {
  content: "↓"; position: absolute; left: 14px; top: 18px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--gold);
  color: var(--petrol); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}

@media (max-width: 800px) {
  table.compare th, table.compare td { padding: 12px 14px; font-size: 13px; }
  table.compare td.iad { padding-left: 30px; }
  table.compare td.iad::before { left: 8px; top: 12px; }
}

/* ===== Tracks (Beiräte / Verwaltungen) ================================ */
.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.track {
  border-radius: 16px;
  padding: 40px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 440px;
}
.track-beirat {
  background: linear-gradient(180deg, #fff 0%, var(--lavender) 100%);
  border: 1px solid var(--line);
}
.track-verwaltung {
  background: var(--grad-petrol);
  color: #fff;
}
.track .track-tag {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--petrol-2); margin-bottom: 14px;
}
.track-verwaltung .track-tag { color: var(--gold); }
.track h3 { font-size: clamp(24px, 2.2vw, 32px); margin-bottom: 16px; }
.track-verwaltung h3 { color: #fff; }
.track p { font-size: 16px; line-height: 1.55; max-width: 480px; }
.track-verwaltung p { color: rgba(255,255,255,.85); }
.track-list { list-style: none; padding: 0; margin: 24px 0; flex: 1; }
.track-list li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; display: flex; align-items: flex-start; gap: 14px; }
.track-list li::before {
  content: "";
  flex: 0 0 14px;
  width: 14px; height: 2px; background: var(--gold);
  margin-left: -28px;
  margin-top: 0.7em;
}
.track-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.track-verwaltung .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.track-verwaltung .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.track-price {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255,255,255,.1);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  border-radius: 4px;
}
.track-price strong { color: var(--gold); }

@media (max-width: 900px) { .tracks { grid-template-columns: 1fr; } .track { padding: 32px; min-height: 0; } }

/* ===== About (Ariel) =================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
  margin-top: 40px;
}
.about-photo {
  position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after {
  content: ""; position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: var(--grad-gold);
  border-radius: 16px; z-index: -1;
}
.about-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lavender); color: var(--petrol);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.cred {
  padding: 16px; border-radius: 10px; background: var(--row-alt);
  border-left: 3px solid var(--gold);
}
.cred .cred-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute); margin-bottom: 4px; }
.cred .cred-val { font-weight: 700; color: var(--petrol); font-size: 15px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 380px; }
}

/* ===== Local SEO ======================================================= */
.local {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.local-img { background-size: cover; background-position: center; min-height: 360px; }
.local-text { padding: 48px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
.local-text h3 { margin-bottom: 14px; }
.local-text .chips { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; padding: 6px 12px; background: var(--lavender); color: var(--petrol);
  border-radius: 999px; font-weight: 500;
}

@media (max-width: 800px) { .local { grid-template-columns: 1fr; } .local-img { min-height: 220px; } .local-text { padding: 32px; } }

/* ===== FAQ ============================================================= */
.faq { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.faq-item summary {
  cursor: pointer; padding: 22px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-weight: 600; color: var(--petrol); font-size: clamp(16px, 1.4vw, 19px);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 28px; font-weight: 300; color: var(--petrol);
  transition: transform .3s ease;
  flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 22px; color: var(--text); font-size: 16px; line-height: 1.6; max-width: 760px; }

/* ===== Erstgespräch / Buchung ========================================== */
.booking {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  border-radius: 16px; overflow: hidden;
  background: var(--grad-petrol); color: #fff;
  margin-top: 40px;
  box-shadow: var(--shadow-lift);
}
.booking-text { padding: 56px; }
.booking-text h3 { color: #fff; margin-bottom: 14px; }
.booking-text p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.booking-list { list-style: none; padding: 0; margin: 24px 0; }
.booking-list li {
  padding: 12px 0 12px 32px; position: relative;
  font-size: 18px; color: rgba(255,255,255,.92);
  display: flex; align-items: flex-start; gap: 12px;
}
.booking-list li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--gold);
  color: var(--petrol); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  margin-left: -30px;
  margin-top: 0.15em;
}
.booking-form {
  background: #fff; padding: 56px; color: var(--text);
}
.booking-form h4 { color: var(--petrol); margin-bottom: 20px; font-size: 26px; }
.booking-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.booking-form label { font-size: 15px; font-weight: 600; color: var(--petrol); }
.booking-form input, .booking-form select, .booking-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px; padding: 12px 14px;
  font: inherit; font-size: 15px;
  background: #fff; color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(34,92,115,.12);
}
.booking-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form .btn { margin-top: 12px; width: 100%; justify-content: center; }
.booking-form .small { font-size: 15.5px; color: var(--mute); margin-top: 14px; line-height: 1.5; }

@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; }
  .booking-text, .booking-form { padding: 36px; }
  .booking-form .field-row { grid-template-columns: 1fr; }
}

/* ===== Trust strip ===================================================== */
.trust {
  display: flex; gap: 40px; justify-content: center; align-items: center; flex-wrap: wrap;
  margin-top: 40px;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 16px 24px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.trust-item img { height: 48px; width: auto; }
.trust-item .t-text { font-size: 13px; color: var(--mute); line-height: 1.3; }
.trust-item .t-text strong { color: var(--petrol); display: block; font-size: 15px; }

/* ===== Footer ========================================================== */
footer {
  background: #0e2c39; color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand img { height: 56px; margin-bottom: 16px; border-radius: 6px; }
.foot-brand p { line-height: 1.6; }
footer h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 16px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 4px 0; }
footer a { color: rgba(255,255,255,.7); }
footer a:hover { color: var(--gold); text-decoration: none; }
.foot-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.45);
}

@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .foot-grid { grid-template-columns: 1fr; } }

/* ===== Reveal animations =============================================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Counter animation =============================================== */
[data-counter] { font-variant-numeric: tabular-nums; }

/* ===== Scroll progress bar ============================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 60%, var(--petrol-2) 100%);
  z-index: 200;
  transition: width .08s linear;
  box-shadow: 0 0 18px rgba(250,207,57,.5);
}

/* ===== Animated section divider (organic blob/wave) =================== */
.section-divider {
  height: 1px; position: relative; overflow: visible;
  background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
}
.section-divider::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(250,207,57,.18), 0 0 0 10px rgba(250,207,57,.08);
}

/* ===== Quick Poll widget =============================================== */
.poll {
  background: #fff;
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.poll::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(250,207,57,.08) 0%, transparent 50%);
  pointer-events: none;
}
.poll-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--petrol-2); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.poll-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: pulse 2.4s infinite;
}
.poll h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 8px; line-height: 1.2; }
.poll-sub { color: var(--mute); font-size: 15px; margin-bottom: 24px; }
.poll-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px;
  position: relative;
}
.poll-option {
  position: relative; overflow: hidden;
  text-align: left;
  padding: 18px 22px;
  border-radius: 12px;
  background: var(--row-alt);
  border: 1.5px solid transparent;
  font: inherit; font-size: 15px; font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  display: flex; align-items: center; gap: 14px;
}
.poll-option:hover { border-color: var(--petrol-2); transform: translateY(-2px); background: #fff; }
.poll-option .pi {
  flex: 0 0 36px; height: 36px; border-radius: 10px;
  background: var(--lavender); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.poll-option.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fff8e1 100%);
}
.poll-option .pct {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: var(--petrol);
  opacity: 0; transition: opacity .35s ease;
  font-variant-numeric: tabular-nums;
}
.poll-option .bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(250,207,57,.15) 0%, rgba(250,207,57,.06) 100%);
  width: 0%; transition: width 0.8s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 0;
}
.poll-option > * { position: relative; z-index: 1; }
.poll.voted .pct { opacity: 1; }
.poll.voted .poll-option { cursor: default; }
.poll.voted .poll-option:hover { transform: none; border-color: transparent; background: var(--row-alt); }
.poll.voted .poll-option.selected { border-color: var(--gold); background: linear-gradient(180deg, #fff 0%, #fff8e1 100%); }
.poll-thanks {
  margin-top: 20px; padding: 14px 18px;
  background: var(--lavender); color: var(--petrol);
  border-radius: 10px; font-size: 14px;
  display: none;
  border-left: 3px solid var(--gold);
}
.poll.voted .poll-thanks { display: block; animation: fadeUp .5s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.poll-meta {
  margin-top: 14px; font-size: 14px; color: var(--mute);
  display: flex; align-items: center; gap: 8px;
}
.poll-meta .live { width: 6px; height: 6px; background: #2a9d4f; border-radius: 50%; animation: pulse 2s infinite; }

/* Custom-text input that opens after "Etwas anderes" */
.poll-custom {
  display: none; margin-top: 14px;
}
.poll-custom.open { display: flex; gap: 8px; animation: fadeUp .35s ease; }
.poll-custom input {
  flex: 1; padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px; font: inherit; font-size: 15px;
  background: #fff;
}
.poll-custom input:focus { outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(34,92,115,.12); }

/* ===== Team grid ======================================================= */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 40px;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.team-photo {
  aspect-ratio: 4/5;
  background: var(--lavender);
  position: relative; overflow: hidden;
}
.team-photo img.pos-ingo {
  object-position: 50% 28%;
  transform: scale(.92);
  transform-origin: center 35%;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-petrol);
  color: rgba(255,255,255,.4);
  font-size: 64px; font-weight: 700;
  letter-spacing: -0.02em;
}
.team-photo .role-pill {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  color: var(--petrol);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
  backdrop-filter: blur(8px);
}
.team-info { padding: 18px 20px 22px; }
.team-info h4 { color: var(--petrol); font-size: 18px; margin: 0 0 4px; font-weight: 700; }
.team-info .team-role { color: var(--mute); font-size: 13px; }

.team-promise {
  margin-top: 32px; padding: 24px 28px;
  background: var(--grad-petrol); color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.team-promise .num {
  font-size: 56px; font-weight: 700; line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.team-promise .txt { flex: 1; min-width: 240px; font-size: 16px; line-height: 1.5; }
.team-promise .txt strong { display: block; color: var(--gold); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }

@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Magnetic / glow buttons ========================================= */
.btn-magnet { position: relative; }
.btn-magnet::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(250,207,57,.5);
  transition: box-shadow .35s ease;
  pointer-events: none;
}
.btn-magnet:hover::after { box-shadow: 0 0 0 8px rgba(250,207,57,0); }

/* ===== Floating noise / grain on hero (optional polish) ================ */
.hero {
  background-attachment: fixed;
}
@media (max-width: 900px) { .hero { background-attachment: scroll; } }

/* ===== Tilt cards ====================================================== */
.tilt { transition: transform .25s ease; transform-style: preserve-3d; will-change: transform; }

/* ===== WEG-only Focus section ========================================= */
.focus {
  background: linear-gradient(180deg, #fff 0%, var(--row-alt) 100%);
  position: relative; overflow: hidden;
}
.focus::before {
  content: ""; position: absolute;
  top: -100px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(250,207,57,.12) 0%, transparent 65%);
  pointer-events: none;
}
.focus-grid {
  display: grid; grid-template-columns: 0.4fr 1.6fr; gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}
.focus-eyebrow-col { padding-top: 18px; border-right: 1px solid var(--line); }
.focus-eyebrow-col .eyebrow { display: inline-block; }
.focus-eyebrow-col .gold { color: var(--petrol-2); }

.focus-h {
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--petrol);
}
.focus-strike {
  position: relative;
  display: inline-block;
  color: var(--mute);
  font-style: italic;
  font-weight: 500;
}
.focus-strike span {
  position: relative;
  display: inline-block;
}
.focus-strike span::after {
  content: "";
  position: absolute; left: -4%; right: -4%;
  top: 50%;
  height: 4px; background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1) 0.2s;
}
.focus.in-view .focus-strike span::after { transform: scaleX(1); }
.focus-mark {
  background: linear-gradient(180deg, transparent 60%, rgba(250,207,57,.45) 60%);
  padding: 0 6px;
}

.focus-explain {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
  position: relative;
}
.focus-text { padding-top: 8px; }
.focus-text .lead { font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.focus-text strong { color: var(--petrol); background: linear-gradient(180deg, transparent 65%, rgba(250,207,57,.35) 65%); padding: 0 2px; }

.focus-grid-out {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.focus-out-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.focus-out-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.focus-out-card strong { color: var(--mute); font-size: 16px; font-weight: 600; }
.focus-out-card span { font-size: 13px; color: var(--mute); line-height: 1.5; }
.focus-out-x {
  width: 28px; height: 28px; border-radius: 50%;
  background: #f3f3f3; color: #b6b6b6;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  margin-bottom: 6px;
}
.focus-out-card.focus-yes {
  background: var(--grad-petrol); color: #fff;
  border-color: transparent;
  position: relative;
}
.focus-out-card.focus-yes::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(250,207,57,.2) 0%, transparent 65%);
  pointer-events: none;
}
.focus-out-card.focus-yes > * { position: relative; z-index: 1; }
.focus-out-card.focus-yes strong { color: #fff; font-size: 18px; font-weight: 700; }
.focus-out-card.focus-yes span { color: rgba(255,255,255,.85); font-size: 14px; }
.focus-out-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .focus-grid { grid-template-columns: 1fr; gap: 20px; }
  .focus-eyebrow-col { border-right: none; padding-top: 0; }
  .focus-explain { grid-template-columns: 1fr; gap: 30px; }
  .focus-grid-out { grid-template-columns: 1fr; }
}

/* ===== Direct line to Ariel (booking section) ========================== */
.direct-line {
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.direct-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.direct-head strong {
  color: #fff; font-size: 19px; letter-spacing: 0.01em;
}
.direct-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46,204,113,.5);
  animation: directPulse 2s infinite;
}
@keyframes directPulse {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,.5); }
  70% { box-shadow: 0 0 0 12px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.direct-sub {
  font-size: 16.5px; color: rgba(255,255,255,.82);
  margin-bottom: 22px;
}
.direct-cta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.direct-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.direct-btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(250,207,57,.12) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.direct-btn:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.1);
  border-color: rgba(250,207,57,.35);
}
.direct-btn:hover::before { opacity: 1; }
.direct-btn > * { position: relative; z-index: 1; }
.direct-icon {
  flex: 0 0 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
}
.direct-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.direct-label { font-size: 15px; color: rgba(255,255,255,.7); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.direct-value { font-size: 22px; color: #fff; font-weight: 700; letter-spacing: 0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.direct-arrow { color: var(--gold); font-size: 22px; transition: transform .25s ease; }
.direct-btn:hover .direct-arrow { transform: translateX(4px); }

@media (max-width: 700px) {
  .direct-cta-row { grid-template-columns: 1fr; }
}

/* ===== GLOBAL GOLD CURSOR — soft yellow glow on white sections ======== */
.gold-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 360px; height: 360px;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(250,207,57,.18) 0%, rgba(250,207,57,.09) 35%, rgba(250,207,57,.03) 60%, transparent 78%);
  filter: blur(20px);
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translate3d(var(--cx, -1000px), var(--cy, -1000px), 0) translate(-50%, -50%);
  transition: opacity .35s ease;
  will-change: transform, opacity;
}
.gold-cursor.is-active { opacity: .55; }
@media (hover: none), (max-width: 900px) {
  .gold-cursor { display: none; }
}

/* ===== DSGVO BANNER (Arbeitsweise) ===================================== */
.dsgvo-banner {
  position: relative;
  margin: 28px auto 40px;
  max-width: 1080px;
  padding: 28px 32px;
  background:
    linear-gradient(135deg, rgba(34,92,115,.04) 0%, rgba(46,123,154,.06) 100%),
    #fff;
  border: 1.5px solid rgba(34,92,115,.18);
  border-left: 5px solid var(--petrol);
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px 28px;
  align-items: start;
  box-shadow: 0 4px 18px rgba(34,92,115,.06);
}
.dsgvo-banner::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: 14px; pointer-events: none;
  background: linear-gradient(135deg, rgba(34,92,115,.08), transparent 30%);
  z-index: 0;
}
.dsgvo-shield {
  grid-row: 1 / span 2;
  width: 64px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  color: var(--petrol);
  flex-shrink: 0;
}
.dsgvo-text { position: relative; z-index: 1; }
.dsgvo-eyebrow {
  display: inline-block;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--petrol);
  background: linear-gradient(95deg, rgba(34,92,115,.08), rgba(34,92,115,.04));
  border: 1px solid rgba(34,92,115,.18);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.dsgvo-text h3 {
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.25;
  color: var(--petrol);
  margin-bottom: 10px;
}
.dsgvo-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
.dsgvo-text strong { color: var(--petrol); }
.dsgvo-pills {
  grid-column: 2;
  list-style: none;
  margin: 4px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
  position: relative; z-index: 1;
}
.dsgvo-pills li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--row-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  color: var(--petrol);
}
.dsgvo-pills .dpill-icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(34,92,115,.2);
}
@media (max-width: 720px) {
  .dsgvo-banner {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }
  .dsgvo-shield { grid-row: auto; }
  .dsgvo-pills { grid-column: auto; }
}

/* ===== IVD MEMBERSHIP DETAIL ===== */
.ivd-detail { padding-bottom: var(--section-y); }
.ivd-card {
  background: linear-gradient(180deg, #fff 0%, var(--row-alt) 100%);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 44px 44px 40px;
  box-shadow: 0 6px 28px rgba(34,92,115,.06);
}
.ivd-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.ivd-logo-wrap {
  flex-shrink: 0;
  width: 120px; height: 120px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(34,92,115,.06);
}
.ivd-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.ivd-head-text h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  color: var(--petrol);
  margin: 8px 0 12px;
}
.ivd-head-text .lead { margin: 0; font-size: 17px; }
.ivd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 28px;
}
.ivd-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ivd-item:hover {
  transform: translateY(-3px);
  border-color: rgba(250,207,57,.5);
  box-shadow: 0 12px 28px rgba(34,92,115,.08);
}
.ivd-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 100%);
  color: var(--gold);
  border-radius: 10px;
  font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
}
.ivd-item h4 {
  font-size: 17px;
  color: var(--petrol);
  margin: 0 0 8px;
  line-height: 1.3;
}
.ivd-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
@media (max-width: 900px) {
  .ivd-card { padding: 30px 24px 28px; }
  .ivd-head { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .ivd-logo-wrap { margin: 0 auto; width: 100px; height: 100px; }
  .ivd-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .ivd-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== HAUSMEISTER PRICES + BILLING + BOARD ============================ */
.hm-prices {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 1100px;
  margin: 32px auto 56px;
}
.hm-price-card {
  background: linear-gradient(180deg, #fff 0%, var(--row-alt) 100%);
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 26px 26px 24px;
  box-shadow: 0 6px 22px rgba(34,92,115,.06);
}
.hm-price-tag {
  display: inline-block;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--petrol);
  background: rgba(250,207,57,.18);
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 14px;
}
.hm-price-num {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 10px;
}
.hm-price-num .num {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 800;
  color: var(--petrol);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(95deg, #c98a1d 0%, var(--gold) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hm-price-num .unit {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 600;
}
.hm-price-desc {
  font-size: 14.5px; line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.hm-price-desc strong { color: var(--petrol); }
.hm-price-plus {
  font-size: 38px; font-weight: 300;
  color: var(--petrol);
  opacity: .5;
  text-align: center;
}

.hm-billing {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  margin: 40px 0 50px;
}
.hm-bill-text h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  color: var(--petrol);
  margin: 10px 0 16px;
}
.hm-bill-text p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 18px;
}
.hm-bill-text strong { color: var(--petrol); }
.hm-bill-bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.hm-bill-bullets li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  font-size: 15px; line-height: 1.5;
  color: var(--text);
}
.hm-tick {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: var(--petrol);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  margin-top: 1px;
}
.hm-bill-bullets strong { color: var(--petrol); }

/* The board */
.hm-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(34,92,115,.18);
}
.hm-board-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(180deg, var(--petrol-d) 0%, var(--petrol) 100%);
  color: #fff;
}
.hm-board-logo {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hm-board-logo img { width: 26px; height: 26px; object-fit: contain; }
.hm-board-titles strong {
  display: block;
  font-size: 14px; font-weight: 700;
  margin-bottom: 2px;
}
.hm-board-titles span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.hm-board-clock { text-align: right; }
.hm-board-time {
  display: block;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 22px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hm-board-date {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  letter-spacing: .04em;
}

.hm-board-checkin {
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(250,207,57,.08) 0%, rgba(250,207,57,.02) 100%);
  border-bottom: 1px solid var(--line);
}
.hm-checkin-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 10px;
}
.hm-checkin-row {
  display: flex; align-items: center; gap: 16px;
}
.hm-nfc {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hm-nfc-icon { color: var(--gold); font-size: 22px; }
.hm-nfc-wave {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(250,207,57,.5);
  animation: hmWave 2s ease-out infinite;
}
.hm-nfc-wave.d2 { animation-delay: 1s; }
@keyframes hmWave {
  from { transform: scale(.8); opacity: .8; }
  to   { transform: scale(1.6); opacity: 0; }
}
.hm-checkin-info strong {
  display: block;
  font-size: 14.5px;
  color: var(--petrol);
  margin-bottom: 2px;
}
.hm-checkin-info span {
  font-size: 14.5px;
  color: var(--text-2);
}

.hm-board-list { padding: 16px 18px 4px; }
.hm-board-list-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 12px;
}
.hm-stamp-mini {
  background: var(--gold);
  color: var(--petrol);
  padding: 3px 8px; border-radius: 999px;
  font-size: 11.5px; letter-spacing: 0.1em;
}
.hm-entry {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.hm-entry:first-of-type { border-top: none; }
.hm-entry-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14.5px; font-weight: 700;
}
.hm-entry-info strong {
  display: block;
  font-size: 13.5px;
  color: var(--petrol);
  margin-bottom: 1px;
}
.hm-entry-info span {
  display: block;
  font-size: 14px;
  color: var(--text-2);
}
.hm-entry-info em {
  font-style: normal;
  font-weight: 700;
  color: var(--petrol);
}
.hm-entry-state {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.hm-entry-state.running {
  background: rgba(40,200,64,.12);
  color: #1a8a35;
  display: inline-flex; align-items: center; gap: 6px;
}
.hm-entry-state.done {
  background: var(--row-alt);
  color: var(--text-2);
}
.hm-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #28c840;
  animation: hmDotPulse 1.4s infinite;
}
@keyframes hmDotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .25; }
}

.hm-board-foot {
  padding: 12px 18px 14px;
  background: var(--row-alt);
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
}

@media (max-width: 1024px) {
  .hm-prices { grid-template-columns: 1fr; }
  .hm-price-plus { transform: rotate(90deg); }
  .hm-billing { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== TOOLSTACK ======================================================= */
.ts {
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(34,92,115,.06) 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--row-alt) 100%);
  border-top: 1px solid var(--line);
}
.ts-head { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.ts-head h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.15; color: var(--petrol); margin: 12px 0 16px; }

.ts-voice {
  max-width: 980px; margin: 0 auto 50px;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 100%);
  border-radius: 16px;
  padding: 24px 28px;
  color: #fff;
  box-shadow: 0 18px 44px rgba(34,92,115,.18);
  position: relative;
  overflow: hidden;
}
.ts-voice::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 90% 0%, rgba(250,207,57,.18) 0%, transparent 60%);
  pointer-events: none;
}
.ts-voice-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ts-mic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(250,207,57,.22);
  border: 1.5px solid var(--gold);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ts-mic-icon { font-size: 24px; }
.ts-mic-wave {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(250,207,57,.55);
  animation: tsWave 2s ease-out infinite;
}
.ts-mic-wave.d2 { animation-delay: 1s; }
@keyframes tsWave {
  from { transform: scale(.85); opacity: .9; }
  to   { transform: scale(1.7); opacity: 0; }
}
.ts-voice-label {
  display: block;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.ts-voice-text strong {
  font-size: 16px; line-height: 1.5; font-weight: 500;
  color: rgba(255,255,255,.95);
}
.ts-voice-status {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #c4f0c8;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.ts-pulse-dot {
  width: 8px; height: 8px; background: #28c840; border-radius: 50%;
  animation: tsDot 1.4s infinite;
}
@keyframes tsDot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.ts-voice-trail {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
  position: relative; z-index: 1;
}
.ts-trail-step {
  font-size: 14px; font-weight: 600;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  padding: 5px 12px; border-radius: 999px;
}

.ts-groups {
  display: grid; gap: 28px;
  margin-bottom: 40px;
}
.ts-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
}
.ts-group-title {
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--petrol-2);
  margin-bottom: 16px;
}
.ts-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
}
.ts-tool {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px 8px;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
  text-align: center;
}
.ts-tool:hover {
  background: var(--row-alt);
  transform: translateY(-2px);
}
.ts-tool img {
  width: 48px; height: 48px; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(34,92,115,.15));
}
.ts-tool span {
  font-size: 13.5px; font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.ts-tool-wide { grid-column: span 2; }

.ts-foot {
  margin-top: 30px;
  padding: 22px 28px;
  background: rgba(250,207,57,.1);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}
.ts-foot strong { color: var(--petrol); }

@media (max-width: 760px) {
  .ts-voice-bar { grid-template-columns: 1fr; text-align: center; }
  .ts-voice-status { justify-self: center; }
  .ts-tool-wide { grid-column: span 1; }
}

/* ===== ALMA MATER (HfWU) =============================================== */
.alma-row {
  margin-top: 28px;
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid #0a2762;
  border-radius: 10px;
}
.alma-logo {
  height: 56px; width: auto; flex-shrink: 0;
  object-fit: contain;
}
.alma-text strong {
  display: block;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--petrol-2); margin-bottom: 4px;
}
.alma-text span {
  font-size: 13.5px; line-height: 1.5; color: var(--text);
}
.foot-edu {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.foot-edu img {
  height: 38px; width: auto;
  background: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.foot-edu span {
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .alma-row { flex-direction: column; align-items: flex-start; }
}

/* ===== CASAVI PORTAL =================================================== */
.cv {
  background:
    radial-gradient(900px 500px at 8% 100%, rgba(34,92,115,.06) 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--row-alt) 100%);
}
.cv-head { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.cv-head h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.15; color: var(--petrol); margin: 12px 0 16px; }
.cv-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.cv-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cv-feat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.cv-feat:hover {
  transform: translateY(-2px);
  border-color: rgba(250,207,57,.5);
  box-shadow: 0 12px 28px rgba(34,92,115,.08);
}
.cv-feat-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 100%);
  color: var(--gold);
  border-radius: 10px;
  font-size: 18px;
}
.cv-feat h4 {
  font-size: 15.5px;
  color: var(--petrol);
  margin: 0 0 4px;
  line-height: 1.25;
}
.cv-feat p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

/* Phone mock */
.cv-phone-wrap {
  display: flex;
  justify-content: center;
}
.cv-phone {
  position: relative;
  width: 320px;
  border-radius: 38px;
  background: #1a1a1c;
  padding: 12px;
  box-shadow:
    0 36px 80px rgba(34,92,115,.28),
    0 8px 22px rgba(0,0,0,.18),
    inset 0 0 0 1.5px rgba(255,255,255,.08);
}
.cv-phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.cv-phone-screen {
  background: #f6f4ef;
  border-radius: 28px;
  overflow: hidden;
  height: 620px;
  display: flex; flex-direction: column;
}
.cv-screen-status {
  display: flex; justify-content: space-between;
  padding: 14px 22px 6px;
  font-size: 13px; font-weight: 700;
  color: var(--petrol);
}
.cv-status-icons { letter-spacing: .15em; opacity: .55; }

.cv-app-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 16px 14px;
  border-bottom: 1px solid rgba(34,92,115,.08);
}
.cv-app-logo {
  width: 36px; height: 36px;
  background: var(--petrol);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.cv-app-logo img { width: 22px; height: 22px; object-fit: contain; }
.cv-app-titles strong {
  display: block;
  font-size: 13.5px;
  color: var(--petrol);
  line-height: 1.2;
}
.cv-app-titles span {
  display: block;
  font-size: 13.5px;
  color: var(--text-2);
}
.cv-app-bell {
  position: relative;
  font-size: 18px;
}
.cv-bell-dot {
  position: absolute;
  top: -2px; right: -3px;
  width: 8px; height: 8px;
  background: #ff5b5b;
  border: 2px solid #f6f4ef;
  border-radius: 50%;
}

.cv-app-card {
  margin: 12px 14px;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
}
.cv-mini-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  display: block;
}
.cv-saldo {
  display: flex; justify-content: space-between; align-items: center;
}
.cv-saldo strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.cv-saldo span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.cv-saldo-pill {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.cv-saldo-pill.ok {
  background: rgba(255,255,255,.18);
  color: #c4f0c8;
}

.cv-app-section { padding: 4px 14px 8px; }
.cv-section-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 12px 4px 8px;
}
.cv-app-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(34,92,115,.08);
  border-radius: 10px;
  margin-bottom: 6px;
}
.cv-row-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.cv-row-text strong {
  display: block;
  font-size: 14.5px;
  color: var(--petrol);
  line-height: 1.2;
}
.cv-row-text span {
  display: block;
  font-size: 10.5px;
  color: var(--text-2);
  margin-top: 1px;
}
.cv-row-state {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(34,92,115,.08);
  color: var(--petrol);
}
.cv-row-state.new   { background: rgba(250,207,57,.25); color: #8a6815; }
.cv-row-state.vote  { background: rgba(40,200,64,.18); color: #1a8a35; }

.cv-hm-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  font-size: 13.5px;
  background: #fff;
  border: 1px solid rgba(34,92,115,.08);
  border-radius: 8px;
  margin-bottom: 4px;
}
.cv-hm-day {
  font-weight: 700;
  color: var(--text-2);
  font-size: 10.5px;
  letter-spacing: 0.06em;
}
.cv-hm-task {
  color: var(--petrol);
  font-weight: 500;
}
.cv-hm-time {
  font-weight: 700;
  color: var(--petrol);
  display: inline-flex; align-items: center; gap: 5px;
}
.cv-hm-row.active {
  background: linear-gradient(180deg, rgba(250,207,57,.16) 0%, rgba(250,207,57,.06) 100%);
  border-color: rgba(250,207,57,.45);
}
.cv-hm-row.active .cv-hm-day { color: var(--petrol); }
.cv-pulse {
  width: 6px; height: 6px;
  background: #28c840;
  border-radius: 50%;
  animation: hmDotPulse 1.4s infinite;
}

.cv-app-tabbar {
  margin-top: auto;
  display: flex;
  border-top: 1px solid rgba(34,92,115,.1);
  padding: 8px 6px 10px;
  background: #fff;
}
.cv-tab {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 16px;
  color: var(--text-2);
}
.cv-tab small {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.cv-tab.active {
  color: var(--petrol);
}

.cv-foot {
  margin-top: 50px;
  padding: 22px 28px;
  background: rgba(34,92,115,.05);
  border-left: 4px solid var(--petrol);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}
.cv-foot strong { color: var(--petrol); }

@media (max-width: 1024px) {
  .cv-grid { grid-template-columns: 1fr; gap: 40px; }
  .cv-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cv-features { grid-template-columns: 1fr; }
  .cv-phone { width: 280px; }
  .cv-phone-screen { height: 560px; }
}

/* ===== HYBRID ETV ===================================================== */
.hetv {
  background:
    radial-gradient(1100px 600px at 92% 0%, rgba(250,207,57,.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--row-alt) 0%, #fff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hetv-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hetv-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  color: var(--petrol);
  margin: 12px 0 18px;
}
.hetv-text .lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 28px;
}
.hetv-bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.hetv-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  font-size: 15.5px; line-height: 1.55;
  color: var(--text);
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .25s ease, transform .25s ease;
}
.hetv-bullets li:hover {
  border-color: rgba(250,207,57,.55);
  transform: translateX(2px);
}
.hetv-bullets strong { color: var(--petrol); }
.hetv-tick {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-3) 100%);
  color: var(--petrol);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hetv-cta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* mock */
.hetv-visual {
  position: relative;
}
.hetv-mock {
  background: linear-gradient(180deg, #1a4759 0%, #225c73 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(34,92,115,.28);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.hetv-mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14.5px;
}
.hetv-dot { width: 9px; height: 9px; border-radius: 50%; }
.hetv-dot.red    { background: #ff5f57; }
.hetv-dot.amber  { background: #febc2e; }
.hetv-dot.green  { background: #28c840; }
.hetv-mock-title {
  margin-left: 8px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.hetv-live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,80,80,.18);
  border: 1px solid rgba(255,120,120,.4);
  color: #ffb1b1;
  padding: 3px 9px; border-radius: 6px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em;
}
.hetv-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff5b5b;
  animation: hetvPulse 1.4s infinite;
}
@keyframes hetvPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,91,91,.7); }
  50%      { box-shadow: 0 0 0 6px rgba(255,91,91,0); }
}

.hetv-mock-stage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  padding: 14px;
}
.hetv-tile {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  overflow: hidden;
}
.hetv-tile.big { aspect-ratio: 16/10; }
.hetv-tile-label {
  position: absolute; top: 8px; left: 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.35);
  padding: 4px 8px; border-radius: 4px;
  z-index: 2;
}
.hetv-tile-meta {
  position: absolute; bottom: 8px; left: 10px;
  font-size: 13px; color: rgba(255,255,255,.7);
  z-index: 2;
}
.hetv-tile-svg { width: 100%; height: 100%; display: block; }

.hetv-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hetv-tile.sm {
  aspect-ratio: 1/1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px;
}
.hetv-tile.sm.speaking {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(250,207,57,.4), inset 0 0 0 1px rgba(250,207,57,.5);
}
.hetv-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  color: rgba(255,255,255,.95);
}
.hetv-tile-name {
  font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.92);
  text-align: center; line-height: 1.25;
}
.hetv-tile-name span {
  display: block;
  font-size: 11.5px; font-weight: 500;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
  letter-spacing: .04em;
}
.hetv-tile.sm.speaking .hetv-tile-name span {
  color: var(--gold);
}

.hetv-mock-foot {
  padding: 14px 16px 16px;
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hetv-vote-label {
  display: block;
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.hetv-vote-bars {
  display: grid; gap: 5px;
}
.hetv-bar {
  position: relative;
  height: 22px;
  border-radius: 5px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.hetv-bar::before {
  content: ""; position: absolute; inset: 0; right: auto;
  width: var(--w, 0%);
  border-radius: 5px;
  animation: hetvBar 1.4s cubic-bezier(.2,.8,.2,1) forwards;
}
.hetv-bar.yes::before { background: linear-gradient(90deg, #58c66a, #8be398); }
.hetv-bar.no::before  { background: linear-gradient(90deg, #d8676a, #f29ea0); }
.hetv-bar.abs::before { background: linear-gradient(90deg, #c4a25a, #e9d390); }
.hetv-bar span {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; height: 22px;
  padding: 0 10px;
  font-size: 13.5px; font-weight: 600;
  color: #fff;
}
@keyframes hetvBar {
  from { width: 0; }
  to   { width: var(--w); }
}
.hetv-foot-note {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  font-style: italic;
}

.hetv-stamp {
  position: absolute;
  right: -18px; top: -22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-3) 100%);
  color: var(--petrol);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 16px 36px rgba(250,207,57,.35), 0 4px 14px rgba(34,92,115,.18);
  transform: rotate(5deg);
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.hetv-stamp-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hetv-stamp-text {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .hetv-grid { grid-template-columns: 1fr; gap: 38px; }
  .hetv-stamp { right: -10px; top: -16px; transform: rotate(4deg); }
}
@media (max-width: 600px) {
  .hetv-stamp { right: 8px; top: -14px; padding: 10px 14px; }
  .hetv-stamp-num { font-size: 28px; }
  .hetv-mock-stage { grid-template-columns: 1fr; }
}

/* ===== Cursor-spotlight section ======================================== */
.spotlight {
  position: relative; isolation: isolate;
}
.spotlight::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(250,207,57,.08) 0%, transparent 60%
  );
  pointer-events: none; z-index: 0;
  transition: background .15s ease;
}
.spotlight > .container { position: relative; z-index: 1; }

/* ===== Hero "WEG only" callout in lead ================================= */
.hero-only {
  display: block;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-size: 14.5px; line-height: 1.55;
  color: rgba(255,255,255,.92);
}
.hero-only strong { color: var(--gold); }

/* ===== Trust marks (typographic logos when no real logo file) ========= */
.trust-mark {
  width: 56px; height: 56px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.trust-mark-paragraph {
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 100%);
  color: var(--gold);
  font-size: 32px;
  font-family: "Times New Roman", Georgia, serif;
}
.trust-mark-ihk {
  background: #fff;
  color: #c8102e;
  font-size: 16px;
  letter-spacing: 0.02em;
  border: 1.5px solid #c8102e;
}
.trust-mark-markel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 10px;
}
.trust-mark-markel span {
  color: #003a70;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  position: relative;
}
.trust-mark-markel span::after {
  content: ""; position: absolute;
  right: -8px; top: 50%;
  width: 5px; height: 5px;
  background: #ff7a00; border-radius: 50%;
  transform: translateY(-50%);
}

/* ===== Pricing section ================================================ */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px;
}
.price-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.price-card.featured {
  background: var(--grad-petrol); color: #fff;
  border-color: transparent;
}
.price-card.featured::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(250,207,57,.18) 0%, transparent 60%);
  pointer-events: none;
}
.price-card > * { position: relative; z-index: 1; }
.price-tag {
  font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--petrol-2); margin-bottom: 16px;
}
.price-card.featured .price-tag { color: var(--gold); }
.price-card h3 { font-size: 26px; line-height: 1.2; margin-bottom: 12px; }
.price-card.featured h3 { color: #fff; }
.price-amount {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin: 24px 0 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.price-card.featured .price-amount { border-top-color: rgba(255,255,255,.18); }
.price-amount .num {
  font-size: 56px; font-weight: 700; line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.price-card.featured .price-amount .num {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-amount .unit { font-size: 14px; color: var(--mute); }
.price-card.featured .price-amount .unit { color: rgba(255,255,255,.7); }
.price-amount .small { font-size: 14px; color: var(--mute); width: 100%; margin-top: 4px; }
.price-card.featured .price-amount .small { color: rgba(255,255,255,.6); }

.price-list {
  list-style: none; padding: 0; margin: 24px 0;
  flex: 1;
}
.price-list li {
  padding: 10px 0 10px 30px;
  font-size: 14.5px;
  position: relative;
  display: flex; align-items: flex-start; gap: 12px;
  border-top: 1px solid var(--line);
}
.price-card.featured .price-list li { border-top-color: rgba(255,255,255,.1); color: rgba(255,255,255,.92); }
.price-list li:first-child { border-top: none; }
.price-list li::before {
  content: "✓";
  flex: 0 0 18px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  margin-left: -30px;
  margin-top: 0.15em;
}
.price-list .neg::before { content: "—"; background: #f0f0f0; color: var(--mute); }
.price-card.featured .price-list .neg::before { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }

.price-foot {
  margin-top: 14px; padding: 14px 16px;
  background: var(--row-alt); border-radius: 10px;
  font-size: 13px; color: var(--mute); line-height: 1.55;
}
.price-card.featured .price-foot { background: rgba(0,0,0,.18); color: rgba(255,255,255,.78); }

.price-cta {
  margin-top: 22px;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ===== Pricing helper note ============================================ */
.pricing-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--lavender);
  border-radius: 12px;
  border-left: 3px solid var(--petrol-2);
  font-size: 14px;
  color: var(--text);
}
.pricing-note strong { color: var(--petrol); }

/* ===== Mustervertrag download ========================================= */
.contract {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  margin-top: 40px;
  box-shadow: var(--shadow-lift);
}
.contract-info {
  padding: 40px 36px;
}
.contract-info h3 { font-size: 26px; line-height: 1.2; margin-bottom: 12px; color: var(--petrol); }
.contract-info .lead { font-size: 17px; color: rgba(255,255,255,.92); margin-bottom: 24px; }
.contract-info ul {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.contract-info li {
  padding: 8px 0 8px 24px;
  font-size: 14.5px;
  position: relative;
  display: flex; align-items: flex-start; gap: 12px;
}
.contract-info li::before {
  content: "→"; flex: 0 0 12px;
  color: var(--gold); font-weight: 700;
  margin-left: -24px;
  margin-top: 0.05em;
}
.contract-info .pdf-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--row-alt); border-radius: 8px;
  font-size: 13px; color: var(--mute);
}
.contract-info .pdf-meta .pdf-icon {
  width: 24px; height: 24px;
  background: #c8102e; color: #fff;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; font-weight: 700;
}

.contract-form {
  background: var(--grad-petrol);
  color: #fff;
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.contract-form::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 100%, rgba(250,207,57,.18) 0%, transparent 55%);
  pointer-events: none;
}
.contract-form > * { position: relative; z-index: 1; }
.contract-form h4 {
  font-size: 18px; color: #fff; margin-bottom: 6px;
}
.contract-form .sub {
  font-size: 13px; color: rgba(255,255,255,.78); margin-bottom: 22px;
}
.contract-form .field { margin-bottom: 14px; }
.contract-form label {
  display: block; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.7); margin-bottom: 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.contract-form input {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #fff;
  font: inherit; font-size: 15px;
  transition: border-color .2s, background .2s;
}
.contract-form input::placeholder { color: rgba(255,255,255,.4); }
.contract-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}
.contract-form .small {
  font-size: 13px; color: rgba(255,255,255,.55);
  margin-top: 14px; line-height: 1.5;
}
.contract-success {
  display: none; text-align: center; padding: 20px 0;
}
.contract.sent .contract-form > form { display: none; }
.contract.sent .contract-success { display: block; animation: fadeUp .5s ease; }
.contract-success .check {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700;
  margin: 0 auto 18px;
}
.contract-success h4 { font-size: 22px; color: #fff; margin-bottom: 8px; }
.contract-success p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 18px; }

@media (max-width: 900px) { .contract { grid-template-columns: 1fr; } }

/* ===== Microsoft Bookings embed ======================================= */
.bookings-embed {
  margin-top: 28px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.bookings-embed .bookings-head {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.bookings-embed .bookings-head .ms-logo {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #0078d4 0%, #004578 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.bookings-embed .bookings-head .b-text strong { color: var(--petrol); display: block; font-size: 15px; }
.bookings-embed .bookings-head .b-text .sub { font-size: 13px; color: var(--mute); margin-top: 2px; }
.bookings-embed iframe {
  display: block; width: 100%; height: 720px; border: 0;
}
.bookings-placeholder {
  padding: 60px 36px;
  text-align: center;
  background: var(--row-alt);
}
.bookings-placeholder .icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0078d4 0%, #004578 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.bookings-placeholder h4 { color: var(--petrol); font-size: 20px; margin-bottom: 8px; }
.bookings-placeholder p { color: var(--mute); font-size: 14.5px; max-width: 520px; margin: 0 auto 20px; line-height: 1.6; }
.bookings-placeholder code {
  display: inline-block; padding: 4px 10px; background: #fff; border: 1px solid var(--line); border-radius: 6px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14.5px; color: var(--petrol);
}



/* ============================================================
   v3 ADDITIONS — full-bleed hero, Arbeitsweise, MV download, etc.
   ============================================================ */

/* Hero — full-bleed image (right), petrol overlay fades left for text legibility */
.hero.hero-fullbleed {
  padding: 120px 0 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #225c73 0%, #2a6b85 50%, #2e7b9a 100%);
}

/* IMAGE WRAPPER — full bleed, overrides older width:72% rule */
.hero-fullbleed .hero-bg-image {
  position: absolute;
  inset: 0 !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
  width: 100vw !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* kill old gradient pseudo-elements that came from the old hero-bg-image rule */
.hero-fullbleed .hero-bg-image::before,
.hero-fullbleed .hero-bg-image::after { content: none !important; background: none !important; }
.hero-fullbleed .hero-bg-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* anchor the right edge so Ariel + icon cluster never get clipped */
  object-position: 100% 30%;
  transform: none !important;
  filter: saturate(1.05) contrast(1.03);
}

/* OVERLAY: petrol→transparent left-to-right + soft top/bottom edges */
.hero-fullbleed .hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26,71,89,.55) 0%, rgba(26,71,89,.15) 22%,
      transparent 60%, rgba(26,71,89,.6) 100%),
    linear-gradient(90deg,
      rgba(26,71,89,.96) 0%,
      rgba(26,71,89,.88) 22%,
      rgba(34,92,115,.62) 42%,
      rgba(34,92,115,.28) 58%,
      rgba(34,92,115,.08) 72%,
      transparent 88%);
  pointer-events: none;
  z-index: 2;
}

/* SPRAY-PAINT GOLD BLOB behind the underlined word — emanates FROM "100× effizienter" */
.hero-spray {
  position: absolute;
  z-index: 1;
  top: 44%;
  left: 4%;
  width: 720px; height: 320px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 40% 50%, rgba(250,207,57,.95) 0%, rgba(250,207,57,.55) 25%, rgba(250,207,57,.22) 50%, transparent 75%),
    radial-gradient(ellipse 45% 55% at 60% 55%, rgba(245,181,58,.7) 0%, rgba(245,181,58,.3) 45%, transparent 80%),
    radial-gradient(ellipse 30% 40% at 30% 40%, rgba(253,227,107,.6) 0%, transparent 70%);
  filter: blur(34px) saturate(1.2);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.85) rotate(-4deg);
  animation: spraySettle 1.8s cubic-bezier(.2,.8,.2,1) 0.6s forwards;
}
@keyframes spraySettle {
  to { opacity: 1; transform: scale(1) rotate(-4deg); }
}

/* HERO GRID — text only, image speaks for itself on the right */
.hero-grid-fb {
  display: block;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px var(--gutter) 110px;
  position: relative; z-index: 3;
}
.hero-text-col { max-width: 620px; }

.hero-h1 {
  display: flex; flex-direction: column;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.06;
  color: #fff;
  margin: 0;
  letter-spacing: -0.015em;
}
.hero-h1 .hero-line {
  opacity: 0; transform: translateY(20px);
  animation: heroLineIn .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-h1 .hero-line:nth-child(1) { animation-delay: .1s; }
.hero-h1 .hero-line:nth-child(2) { animation-delay: .35s; }
.hero-h1 .hero-line:nth-child(3) { animation-delay: .60s; }
.hero-h1 em { font-style: normal; }

/* GOLD GRADIENT WORD — exactly like the logo: dark gold on left → bright gold on right */
.hero-h1 em.gold-grad {
  position: relative;
  display: inline-block;
  background: linear-gradient(95deg,
    #c98a1d 0%,
    #e0a82a 22%,
    #f5b53a 48%,
    #FACF39 72%,
    #fde36b 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 14px rgba(250,207,57,.35));
}
@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}

/* NOMINEE BADGE — readable solid pill */
.hero-nominee {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: rgba(13,40,52,.72);
  border: 1px solid rgba(250,207,57,.55);
  color: #fff;
  font-size: 14.5px; font-weight: 600;
  line-height: 1.3;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  max-width: 100%;
}
.hero-nominee .nominee-badge {
  background: linear-gradient(95deg, #c98a1d 0%, #f5b53a 50%, #fde36b 100%);
  color: #1a4759;
  font-weight: 800; font-size: 13.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(250,207,57,.3);
}

/* ===== RESPONSIVE — image always shows Ariel + logo cluster intact ===== */
@media (max-width: 1400px) {
  .hero-fullbleed .hero-bg-image img { object-position: 68% 36%; }
}
@media (max-width: 1200px) {
  .hero-fullbleed .hero-bg-image img { object-position: 65% 36%; }
  .hero-fullbleed .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(34,92,115,.3) 0%, transparent 14%, transparent 80%, rgba(34,92,115,.55) 100%),
      linear-gradient(90deg,
        rgba(26,71,89,.98) 0%, rgba(34,92,115,.95) 26%,
        rgba(34,92,115,.65) 44%, rgba(34,92,115,.2) 60%, transparent 74%);
  }
  .hero-spray { width: 460px; height: 200px; }
}
@media (max-width: 1000px) {
  .hero-fullbleed .hero-bg-image img { object-position: 62% 32%; }
  .hero-fullbleed .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(34,92,115,.3) 0%, transparent 14%, transparent 78%, rgba(34,92,115,.6) 100%),
      linear-gradient(90deg,
        rgba(26,71,89,.99) 0%, rgba(34,92,115,.96) 30%,
        rgba(34,92,115,.78) 50%, rgba(34,92,115,.32) 66%, rgba(34,92,115,.05) 80%);
  }
  .hero-spray { width: 380px; height: 180px; opacity: .7; }
}
@media (max-width: 900px) {
  .hero.hero-fullbleed { padding-top: 110px; min-height: 0; }
  .hero-fullbleed .hero-bg-image {
    top: auto; bottom: 0; height: 60%;
  }
  .hero-fullbleed .hero-bg-image img {
    object-position: 50% 22%;
  }
  .hero-fullbleed .hero-bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(26,71,89,1) 0%, rgba(26,71,89,.98) 28%,
        rgba(26,71,89,.7) 38%, rgba(26,71,89,.25) 50%, transparent 62%,
        transparent 86%, rgba(34,92,115,.55) 100%);
  }
  .hero-grid-fb { padding: 32px var(--gutter) 64vw; }
  .hero-text-col { max-width: 100%; }
  .hero-spray { left: 12%; top: 22%; width: 60vw; height: 30vw; }
}
@media (max-width: 600px) {
  .hero-fullbleed .hero-bg-image { height: 52%; }
  .hero-grid-fb { padding-bottom: 58vw; }
}

/* ============================================================
   ARBEITSWEISE — alternating L/R rows
   ============================================================ */
.aw { background: linear-gradient(180deg, #fff 0%, var(--row-alt) 100%); }
.aw-mark {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Integrations diagram */
.aw-integrations {
  position: relative;
  margin: 20px auto 80px;
  padding: 60px 24px 40px;
  max-width: 920px;
  text-align: center;
}
.aw-int-center {
  position: relative; z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
}
.aw-int-core {
  position: relative;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--grad-petrol);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 18px 60px rgba(34,92,115,.35), 0 0 0 6px rgba(250,207,57,.25);
}
.aw-int-core img { width: 56px; height: 56px; margin-bottom: 8px; filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(250,207,57,.6)); }
.aw-int-core strong { font-size: 14px; }
.aw-int-core small { font-size: 13px; opacity: .7; letter-spacing: 0.1em; text-transform: uppercase; }
.aw-int-pulse {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: intPulse 2.4s ease-out infinite;
}
@keyframes intPulse {
  0% { transform: scale(.95); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.aw-int-ring {
  position: relative;
  margin-top: -90px;
  padding-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 800px;
  margin-left: auto; margin-right: auto;
}
.aw-int-node {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--petrol);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.aw-int-node:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.aw-int-note { margin-top: 28px; font-size: 13.5px; color: var(--mute); max-width: 620px; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) {
  .aw-int-ring { grid-template-columns: 1fr 1fr; }
}

/* Stack of alternating rows */
.aw-stack { display: flex; flex-direction: column; gap: clamp(64px, 9vw, 120px); margin-top: 40px; }
.aw-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.aw-row.reverse {
  grid-template-columns: 1fr 1fr 56px;
}
.aw-row.reverse .aw-row-num   { order: 3; }
.aw-row.reverse .aw-row-text  { order: 2; }
.aw-row.reverse .aw-row-visual{ order: 1; }
.aw-row-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
  align-self: start;
}
.aw-row-text { max-width: 560px; }
.aw-tag {
  display: inline-block;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--petrol-2);
  background: var(--lavender);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.aw-row h3 { font-size: clamp(24px, 2.4vw, 34px); margin-bottom: 12px; line-height: 1.18; }
.aw-row .lead { font-size: clamp(17px, 1.4vw, 19.5px); margin-top: 4px; }
.aw-bullets { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.aw-bullets.two-col { grid-template-columns: 1fr 1fr; }
.aw-bullets li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15.5px; line-height: 1.55;
  border-top: 1px solid var(--line);
}
.aw-bullets li:first-child { border-top: none; }
.aw-bullets li::before {
  content: ""; position: absolute; left: 0; top: 19px;
  width: 14px; height: 2px; background: var(--gold);
}
.aw-bullets li strong { color: var(--petrol); }
.aw-prompt {
  margin-top: 22px;
  padding: 16px 18px;
  background: #0e2c39; color: #d6e8f0;
  border-radius: 10px;
  font-family: "SFMono-Regular", "Menlo", monospace;
  font-size: 14px;
  border-left: 3px solid var(--gold);
}
.aw-prompt-label {
  display: block;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px; font-family: var(--font); font-weight: 700;
}
.aw-prompt code { color: #fff; }

/* Visual cards in arbeitsweise */
.aw-row-visual { min-width: 0; }
.aw-row-visual > div {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.aw-row-visual > div:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* Mail bar chart */
.aw-mail-cluster { display: flex; flex-direction: column; gap: 10px; }
.mc-bar { display: grid; grid-template-columns: 30px 1fr 50px; align-items: center; gap: 12px; font-size: 13px; color: var(--mute); }
.mc-bar .mc-label { font-weight: 700; color: var(--petrol); }
.mc-fill {
  height: 18px;
  background: linear-gradient(90deg, var(--petrol-2), var(--petrol));
  border-radius: 4px;
  width: var(--w);
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}
.mc-bar.hi .mc-fill { background: var(--grad-gold); }
.mc-bar .mc-num { text-align: right; color: var(--petrol); font-weight: 700; }
.mc-foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; color: var(--mute); text-align: center; }

/* Followup cards */
.aw-followup { display: flex; flex-direction: column; gap: 10px; }
.fu-line { display: grid; grid-template-columns: 16px 1fr auto; gap: 12px; align-items: center; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.fu-line:last-child { border-bottom: none; }
.fu-dot { font-size: 14px; }
.fu-dot.ok { color: #2a8c5a; }
.fu-dot.warn { color: #d97a3a; }
.fu-dot.draft { color: var(--gold); }
.fu-stat { font-size: 14px; padding: 3px 9px; border-radius: 999px; background: var(--row-alt); color: var(--mute); font-weight: 600; }
.fu-stat.ok { background: rgba(42,140,90,.12); color: #2a8c5a; }
.fu-stat.warn { background: rgba(217,122,58,.12); color: #d97a3a; }
.fu-stat.draft { background: rgba(250,207,57,.18); color: #8a6a10; }
.fu-line.draft { background: rgba(250,207,57,.06); border-radius: 6px; padding-left: 8px; padding-right: 8px; }

/* Telegram phone mock */
.aw-tg-phone { display: flex; flex-direction: column; gap: 10px; padding: 20px !important; background: #0e2c39 !important; color: #fff !important; border: none !important; }
.aw-tg-phone .tg-head { display: flex; gap: 12px; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 6px; }
.aw-tg-phone .tg-time { font-size: 14px; color: var(--gold); font-family: monospace; }
.tg-msg { padding: 10px 14px; border-radius: 12px; background: rgba(255,255,255,.08); font-size: 13.5px; line-height: 1.45; max-width: 90%; }
.tg-msg.you { background: var(--petrol-2); align-self: flex-end; margin-left: auto; }
.tg-msg .mute { color: rgba(255,255,255,.6); font-size: 14px; }
.tg-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.tg-actions button { font-size: 13.5px; padding: 6px 10px; border-radius: 6px; border: 1px solid rgba(250,207,57,.4); background: rgba(250,207,57,.08); color: var(--gold); cursor: pointer; font-weight: 600; }

/* Todo card */
.aw-todo { font-size: 14px; }
.td-head { font-weight: 700; color: var(--petrol); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.td-row { display: grid; grid-template-columns: 24px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.td-row:last-of-type { border-bottom: none; }
.td-num { width: 22px; height: 22px; border-radius: 50%; background: var(--lavender); color: var(--petrol); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.td-pill { font-size: 13.5px; padding: 3px 9px; border-radius: 999px; background: var(--row-alt); color: var(--mute); font-weight: 600; }
.td-pill.warn { background: rgba(217,122,58,.14); color: #c25f1e; }
.td-foot { margin-top: 14px; padding: 12px 14px; background: rgba(250,207,57,.14); border-radius: 8px; color: var(--petrol); font-weight: 700; font-size: 13.5px; }

/* Tasks list */
.aw-tasks { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.tk-line { display: grid; grid-template-columns: 22px 1fr auto; gap: 10px; align-items: center; padding: 10px 12px; background: var(--row-alt); border-radius: 6px; }
.tk-line.done { color: var(--petrol); }
.tk-tick { color: #2a8c5a; font-weight: 700; }
.tk-time { color: var(--mute); font-size: 14px; font-family: monospace; }
.tk-spinner { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--lavender); border-top-color: var(--petrol); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Search/AI answer card */
.aw-search { display: flex; flex-direction: column; gap: 12px; }
.aws-q { padding: 12px 14px; background: var(--row-alt); border-radius: 8px; font-weight: 600; color: var(--petrol); font-size: 14.5px; position: relative; }
.aws-cursor { display: inline-block; width: 2px; height: 16px; background: var(--gold); margin-right: 6px; vertical-align: middle; animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.aws-a { padding: 14px 16px; background: var(--grad-petrol); color: #fff; border-radius: 8px; border-left: 4px solid var(--gold); font-size: 13.5px; line-height: 1.5; }
.aws-a strong { display: block; margin-bottom: 8px; }
.aws-a ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: rgba(255,255,255,.85); }
.aws-a li::before { content: "→ "; color: var(--gold); font-weight: 700; }

/* Flow diagram */
.aw-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; }
.fl-step { background: var(--row-alt); padding: 10px 12px; border-radius: 6px; display: flex; align-items: center; gap: 8px; color: var(--petrol); font-weight: 600; flex: 1; min-width: 0; }
.fl-step span { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--petrol); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.fl-step.done { background: var(--grad-petrol); color: #fff; }
.fl-step.done span { background: #2a8c5a; color: #fff; }
.fl-arrow { color: var(--mute); font-weight: 700; }

/* Bidi */
.aw-bidi { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }
.bd-side { background: var(--row-alt); padding: 16px; border-radius: 8px; display: flex; flex-direction: column; gap: 6px; text-align: center; }
.bd-side strong { color: var(--petrol); font-size: 14px; }
.bd-state { font-size: 14px; color: var(--mute); }
.bd-state.on { color: #2a8c5a; font-weight: 600; }
.bd-arrows { font-size: 24px; color: var(--gold); font-weight: 700; }
.bd-result { grid-column: 1 / -1; margin-top: 10px; padding: 10px; background: rgba(250,207,57,.18); border-radius: 6px; text-align: center; color: var(--petrol); font-weight: 700; font-size: 14px; }

/* Walk protocol */
.aw-walk { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; }
.wk-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 10px 12px; background: var(--row-alt); border-radius: 6px; align-items: center; }
.wk-row strong { color: var(--petrol); }
.wk-pill { font-size: 13.5px; padding: 3px 9px; border-radius: 999px; background: var(--lavender); color: var(--petrol); font-weight: 600; }
.wk-pill.warn { background: rgba(217,122,58,.14); color: #c25f1e; }
.wk-pill.ok { background: rgba(42,140,90,.14); color: #2a8c5a; }

/* Anomaly */
.aw-anomaly { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; font-family: monospace; }
.an-line { padding: 8px 12px; background: var(--row-alt); border-radius: 4px; color: var(--petrol); }
.an-flag { padding: 10px 14px; background: rgba(217,122,58,.14); color: #c25f1e; border-radius: 6px; font-weight: 700; }
.an-fix { padding: 10px 14px; background: rgba(42,140,90,.12); color: #2a8c5a; border-radius: 6px; font-weight: 700; }

/* Frust pairs */
.aw-frust { display: flex; flex-direction: column; gap: 14px; }
.fr-pair { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 14px; border-radius: 8px; align-items: start; font-size: 13.5px; line-height: 1.5; }
.fr-pair:has(.fr-x) { background: rgba(217,122,58,.08); }
.fr-pair:has(.fr-check) { background: rgba(42,140,90,.08); }
.fr-x { width: 26px; height: 26px; border-radius: 50%; background: #c25f1e; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.fr-check { width: 26px; height: 26px; border-radius: 50%; background: #2a8c5a; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.fr-pair strong { color: var(--petrol); }

/* Doc stack */
.aw-doc-stack { display: flex; flex-direction: column; gap: 8px; }
.doc-card { padding: 14px 16px; background: var(--row-alt); border-radius: 8px; position: relative; padding-left: 22px; font-size: 13.5px; }
.doc-card strong { display: block; color: var(--petrol); margin-bottom: 4px; }
.doc-card span { color: var(--mute); }
.doc-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); border-radius: 4px 0 0 4px; }
.doc-card.alt .doc-stripe { background: var(--petrol-2); }
.doc-card.alt2 .doc-stripe { background: var(--petrol); }

/* Letters cards */
.aw-letters { display: flex; flex-direction: column; gap: 10px; }
.lt-card { padding: 14px; background: var(--row-alt); border-radius: 8px; font-size: 13px; line-height: 1.5; }
.lt-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 9px; background: var(--gold); color: var(--petrol); border-radius: 999px; margin-bottom: 6px; }
.lt-card strong { display: block; color: var(--petrol); margin-bottom: 4px; }
.lt-card p { color: var(--mute); font-style: italic; }

/* Emo card */
.aw-emo { display: grid; grid-template-columns: 140px 1fr; gap: 18px; align-items: center; }
.emo-inbox { background: var(--grad-petrol); border-radius: 12px; padding: 24px 14px; text-align: center; color: #fff; }
.emo-zero { font-size: 64px; font-weight: 700; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.emo-zero-label { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 4px; }
.emo-quotes { display: flex; flex-direction: column; gap: 8px; }
.emo-q { padding: 10px 14px; background: var(--row-alt); border-left: 3px solid var(--gold); border-radius: 4px; font-size: 13.5px; font-style: italic; color: var(--petrol); }

/* Dual audience footer */
.aw-dual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: clamp(60px, 8vw, 100px);
}
.aw-dual-card {
  padding: 36px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.aw-dual-card.gold {
  background: var(--grad-petrol);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lift);
}
.aw-dual-card.gold h3, .aw-dual-card.gold p { color: #fff; }
.aw-dual-tag { display: inline-block; font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--lavender); color: var(--petrol); margin-bottom: 14px; }
.aw-dual-card.gold .aw-dual-tag { background: var(--gold); color: var(--petrol); }
.aw-dual-card h3 { color: var(--petrol); margin-bottom: 10px; }
.aw-dual-card p { font-size: 16px; margin-bottom: 18px; }

@media (max-width: 900px) {
  .aw-row, .aw-row.reverse { grid-template-columns: 48px 1fr; }
  .aw-row .aw-row-visual { grid-column: 1 / -1; }
  .aw-row.reverse .aw-row-num { order: 1; }
  .aw-row.reverse .aw-row-text { order: 2; }
  .aw-row.reverse .aw-row-visual { order: 3; }
  .aw-bullets.two-col { grid-template-columns: 1fr; }
  .aw-dual { grid-template-columns: 1fr; }
}

/* ============================================================
   MUSTERVERTRAG — download card + extended form
   ============================================================ */
.mv-choice {
  text-align: center;
  margin-bottom: 32px;
  padding: 22px 24px;
  background: var(--lavender);
  border-radius: 12px;
}
.mv-choice-label {
  font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--petrol); margin-bottom: 12px;
}
.mv-choice-arrows {
  display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap;
  font-weight: 700; color: var(--petrol);
}
.mv-or {
  display: inline-block; padding: 4px 14px; background: var(--gold); color: var(--petrol);
  border-radius: 999px; font-size: 13px;
}

.contract {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px;
  margin-top: 0;
}
.contract-info {
  padding: 36px;
  background: var(--grad-petrol);
  color: #fff;
  border-radius: 16px;
}
.contract-info h3 { color: #fff; margin-bottom: 12px; }
.contract-info p { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.contract-info ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.contract-info li { padding-left: 22px; position: relative; font-size: 14.5px; color: rgba(255,255,255,.92); }
.contract-info li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.pdf-meta { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,.75); }
.pdf-icon { padding: 4px 8px; background: var(--gold); color: var(--petrol); border-radius: 4px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; }

/* Download variant — left card is a link */
a.contract-download {
  text-decoration: none;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
a.contract-download:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(34,92,115,.45); }
a.contract-download:hover .dl-cta .btn { background: var(--gold); color: var(--petrol); border-color: var(--gold); }
.dl-icon-stack {
  position: absolute; top: 24px; right: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 1;
}
.pdf-icon-big {
  background: var(--gold); color: var(--petrol);
  padding: 8px 14px; border-radius: 6px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.1em;
}
.dl-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%; background: var(--gold);
  color: var(--petrol); font-size: 22px; font-weight: 700;
  animation: dlBounce 2s ease-in-out infinite;
}
@keyframes dlBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.dl-cta { margin-top: auto; padding-top: 24px; }
.dl-cta .btn {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5);
  width: 100%; justify-content: center;
}

.contract-form {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.contract-form h4 { color: var(--petrol); margin-bottom: 6px; font-size: 22px; }
.contract-form .sub { font-size: 14px; color: var(--mute); margin-bottom: 24px; }
.contract-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.contract-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.contract-form label { font-size: 14.5px; font-weight: 600; color: var(--petrol); }
.contract-form input, .contract-form select, .contract-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px; padding: 11px 13px;
  font: inherit; font-size: 15px;
  background: #fff; color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contract-form input:focus, .contract-form select:focus, .contract-form textarea:focus {
  outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(34,92,115,.12);
}
.mv-fs {
  border: none; padding: 0; margin: 0 0 14px;
  border-top: 1px solid var(--line); padding-top: 14px;
}
.mv-fs:first-of-type { border-top: none; padding-top: 0; }
.mv-fs legend {
  font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--petrol-2);
  padding: 0; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
/* Collapsed-by-default fieldsets: hide all children except legend; click legend to expand */
.mv-fs:not(.mv-fs-open) > *:not(legend) { display: none; }
.mv-fs:not(.mv-fs-open) > legend {
  cursor: pointer;
  margin-bottom: 0;
  padding: 12px 14px;
  background: var(--row-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .2s ease, background .2s ease;
}
.mv-fs:not(.mv-fs-open) > legend:hover {
  border-color: var(--gold);
  background: rgba(250,207,57,.08);
}
.mv-fs-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--petrol);
  font-size: 16px; font-weight: 700;
  line-height: 1;
  transition: transform .25s ease;
}
.mv-fs.mv-fs-open .mv-fs-toggle { transform: rotate(45deg); }

/* ===== KOMMUNIKATION =================================================== */
.comm {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(250,207,57,.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--row-alt) 0%, #fff 100%);
  border-top: 1px solid var(--line);
}
.comm-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.comm-head h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.15; color: var(--petrol); margin: 12px 0 16px; }

.comm-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.comm-card {
  position: relative;
  padding: 36px 32px 32px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(34,92,115,.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.comm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(34,92,115,.12);
}
.comm-card.digital { border-top: 4px solid var(--petrol); }
.comm-card.paper   { border-top: 4px solid var(--gold); }
.comm-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.comm-card.digital .comm-icon-wrap { background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-2) 100%); color: var(--gold); }
.comm-card.paper   .comm-icon-wrap { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-3) 100%); color: var(--petrol); }
.comm-icon { font-size: 28px; line-height: 1; }
.comm-tag {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.comm-card.digital .comm-tag { background: rgba(34,92,115,.1); color: var(--petrol); }
.comm-card.paper   .comm-tag { background: rgba(250,207,57,.22); color: #8a6815; }
.comm-card h3 { font-size: 22px; color: var(--petrol); margin: 0 0 12px; line-height: 1.2; }
.comm-card p { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 18px; }
.comm-card p strong { color: var(--petrol); }
.comm-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.comm-list li {
  font-size: 14px; line-height: 1.5; color: var(--text-2);
  padding-left: 22px;
  position: relative;
}
.comm-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 800;
}

.comm-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: grid; gap: 10px;
}
.comm-acc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.comm-acc[open] {
  border-color: var(--petrol);
  box-shadow: 0 8px 22px rgba(34,92,115,.08);
}
.comm-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  font-size: 16px; font-weight: 600;
  color: var(--petrol);
  user-select: none;
}
.comm-acc summary::-webkit-details-marker { display: none; }
.comm-acc summary:hover { background: var(--row-alt); }
.comm-sum-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--petrol);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s ease, background .2s ease;
}
.comm-acc[open] .comm-sum-icon {
  transform: rotate(45deg);
  background: var(--petrol);
  color: var(--gold);
}
.comm-sum-text { flex: 1; line-height: 1.35; }
.comm-acc-body {
  padding: 4px 22px 22px 66px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.comm-acc-body p { margin: 0; }
.comm-acc-body strong { color: var(--petrol); }

@media (max-width: 760px) {
  .comm-channels { grid-template-columns: 1fr; }
  .comm-acc-body { padding-left: 22px; }
}
.mv-check { display: flex; gap: 10px; font-size: 13px; color: var(--mute); margin-top: 12px; align-items: flex-start; }
.mv-check input { margin-top: 4px; }
.contract-form .small { font-size: 14px; color: var(--mute); margin-top: 12px; line-height: 1.4; }
.contract-success {
  display: none;
  position: absolute; inset: 0;
  background: #fff; border-radius: 16px;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 36px;
}
.contract-success.show { display: flex; }
.contract-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-gold); color: var(--petrol); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; margin-bottom: 18px; }
.contract-success h4 { color: var(--petrol); margin-bottom: 10px; }
.contract-success p { color: var(--mute); }

@media (max-width: 900px) {
  .contract { grid-template-columns: 1fr; }
  .contract-form .field-row { grid-template-columns: 1fr; }
  .mv-choice-arrows { flex-direction: column; gap: 10px; }
}

/* HfWU trust mark */
.trust-mark-hfwu {
  background: linear-gradient(135deg, #006633 0%, #008c44 100%);
  color: #fff;
  width: 64px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; letter-spacing: 0.04em;
  border-radius: 6px;
  font-family: var(--font);
}

/* Ingo photo positioning fix */
.ingo-photo {
  object-position: 50% 18% !important;
  transform: scale(1);
  transform-origin: center 40%;
}

/* ============================================================
   GLOBAL TYPE BUMP — last sections (footer, FAQ, foot bottom) +20%
   ============================================================ */
footer { font-size: 16.8px; }
footer h5 { font-size: 14.5px; }
footer li { font-size: 16.8px; }
.foot-bottom { font-size: 16.8px; padding-top: 22px; }
.faq-item summary { font-size: clamp(18px, 1.55vw, 21px); }
.faq-item .answer { font-size: 17.6px; line-height: 1.65; }

/* Direct line / contact phone block */
.direct-line { margin-top: 24px; padding: 18px; background: rgba(255,255,255,.08); border-radius: 10px; border-left: 3px solid var(--gold); }
.direct-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; color: var(--gold); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.direct-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.direct-sub { font-size: 16.5px; color: rgba(255,255,255,.82) !important; margin-bottom: 18px !important; }
.direct-cta-row { display: flex; gap: 10px; flex-direction: column; }
.direct-btn { display: grid; grid-template-columns: 36px 1fr 24px; gap: 14px; align-items: center; padding: 14px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; color: #fff; text-decoration: none; transition: background .25s ease, transform .25s ease; }
.direct-btn:hover { background: rgba(255,255,255,.12); transform: translateX(2px); text-decoration: none; }
.direct-icon { font-size: 26px; color: var(--gold); }
.direct-text { display: flex; flex-direction: column; gap: 2px; }
.direct-label { font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 700; }
.direct-value { font-weight: 700; font-size: 22px; letter-spacing: 0.01em; }
.direct-arrow { color: rgba(255,255,255,.5); font-weight: 700; }


/* ============================================================
   HAUSMEISTER SECTION
   ============================================================ */
.hm {
  background: linear-gradient(180deg, #fff 0%, var(--row-alt) 100%);
  position: relative;
}
.hm-head {
  max-width: 820px;
  margin-bottom: 56px;
}
.hm-head h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.hm-head .lead {
  margin-top: 22px;
  max-width: 720px;
}

.hm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px 30px;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(34,92,115,.10);
  border-color: rgba(245,181,58,.55);
}
.hm-card .hm-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hm-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--petrol-d);
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.01em;
}
.hm-card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
}

.hm-note {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 30px;
  background: var(--petrol-d);
  color: #fff;
  border-radius: 16px;
  border-left: 4px solid var(--gold);
}
.hm-note .hm-note-icon {
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.hm-note strong { color: var(--gold-3); }
.hm-note > div:last-child {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}

@media (max-width: 1100px) {
  .hm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hm-grid { grid-template-columns: 1fr; }
  .hm-note { flex-direction: column; }
}


/* ===== UPDATED: booking-right column (direct-line + form stacked) ============= */
.booking-right {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.booking-right > .direct-line {
  margin-top: 0;
  background: var(--grad-petrol);
  color: #fff;
  padding: 36px 40px;
  border-radius: 0;
  border-left: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.booking-right > .direct-line .direct-head { color: var(--gold); }
.booking-right > .direct-line .direct-cta-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.booking-right > .direct-line .direct-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
}
.booking-right > .direct-line .direct-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(250,207,57,.4);
}
.booking-right > .booking-form {
  background: #fff;
  padding: 36px 40px;
  flex: 1;
}
@media (max-width: 900px) {
  .booking-right > .direct-line,
  .booking-right > .booking-form { padding: 28px; }
}

/* ===== UPDATED: HfWU trust-mark IMAGE (real logo) ============================= */
img.trust-mark.trust-mark-hfwu-img {
  width: 56px; height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  border: 1px solid var(--line);
}

/* ===== UPDATED: Casavi photo strip (replaces SVG/CSS phone mock) ============== */
.cv-photo-wrap {
  display: flex; flex-direction: column; gap: 22px;
  align-self: start;
}
.cv-photo {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px -20px rgba(34,92,115,.25);
}
.cv-photo img { display: block; width: 100%; height: auto; }
.cv-photo figcaption {
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--mute);
  border-top: 1px solid var(--line);
  background: var(--row-alt);
  line-height: 1.45;
}
.cv-photo-hero { background: linear-gradient(135deg, #f4f7f8 0%, #e9eff1 100%); }
.cv-photo-hero img { padding: 16px; }
.cv-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 700px) { .cv-photo-grid { grid-template-columns: 1fr; } }

/* ===== UPDATED: Hybrid ETV photo (replaces SVG/CSS hetv-mock) ================= */
.hetv-photo {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 60px -25px rgba(0,0,0,.45);
}
.hetv-photo-hero { margin-bottom: 16px; background: linear-gradient(135deg, #f4f7f8 0%, #e9eff1 100%); }
.hetv-photo-hero img { display: block; width: 100%; height: auto; padding: 14px; }
.hetv-photo-mobile {
  width: 70%; margin-left: auto;
  background: linear-gradient(135deg, #1a4759 0%, #225c73 100%);
}
.hetv-photo-mobile img { display: block; width: 100%; height: auto; padding: 14px; }
.hetv-photo figcaption {
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.35);
  line-height: 1.45;
}
.hetv-photo-hero figcaption {
  color: var(--mute);
  background: var(--row-alt);
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) {
  .hetv-photo-mobile { width: 100%; }
}


/* Older-audience boost: direct-line + booking text bigger */
.booking-text p { font-size: 19px !important; line-height: 1.55; }
.booking-text h3 { font-size: 30px !important; }
.booking-right > .direct-line .direct-value { font-size: 23px !important; }
.booking-right > .direct-line .direct-label { font-size: 14.5px !important; }
.booking-right > .direct-line .direct-head strong { font-size: 19px !important; }
.booking-right > .direct-line .direct-sub { font-size: 16.5px !important; }
.booking-right > .direct-line { padding: 32px 36px !important; }
.booking-right > .direct-line .direct-btn { padding: 18px 22px !important; }
.booking-right > .direct-line .direct-icon { font-size: 28px !important; }
@media (max-width: 900px) {
  .booking-right > .direct-line { padding: 24px !important; }
}


/* ===== Arbeitsweise · Logo-Strip (replaces "Keine Magie" lead) ============= */
.aw-logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 30px;
  margin: 26px auto 0;
  max-width: 920px;
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(243,247,249,.7) 100%);
  border-radius: 18px;
}
.aw-logo-strip img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(34,92,115,.18));
  transition: transform .35s cubic-bezier(.2,.7,.2,1), filter .35s ease;
  cursor: default;
}
.aw-logo-strip img:hover {
  transform: translateY(-6px) scale(1.08);
  filter: drop-shadow(0 12px 24px rgba(34,92,115,.30));
}
@media (max-width: 700px) {
  .aw-logo-strip { gap: 16px 20px; padding: 18px 12px; }
  .aw-logo-strip img { width: 42px; height: 42px; }
}

/* ===== Motion-init initial states (so animations have something to animate from) === */
[data-motion="fade-up"]    { opacity: 0; transform: translateY(28px); }
[data-motion="fade-in"]    { opacity: 0; }
[data-motion="scale-in"]   { opacity: 0; transform: scale(.92); }
[data-motion="slide-left"] { opacity: 0; transform: translateX(-32px); }
[data-motion="slide-right"]{ opacity: 0; transform: translateX(32px); }
.motion-ready [data-motion] { will-change: transform, opacity; }


/* =====================================================================
   v4 — DSGVO HERO BANNER (refresh)
   ===================================================================== */
.dsgvo-hero {
  position: relative;
  margin: 60px 0 80px;
  padding: 64px 56px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0e2934 0%, #1a4759 55%, #225c73 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.5);
  isolation: isolate;
}
.dsgvo-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(250,207,57,.18) 0%, transparent 50%),
    radial-gradient(circle at 88% 80%, rgba(250,207,57,.10) 0%, transparent 60%);
  z-index: -1;
}
.dsgvo-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.04) 50%, transparent 50.5%) 0 0 / 80px 100%,
    linear-gradient(0deg,  transparent 49.5%, rgba(255,255,255,.04) 50%, transparent 50.5%) 0 0 / 100% 80px;
  pointer-events: none; opacity: .4; z-index: -1;
}
.dsgvo-hero-inner {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 56px; align-items: center;
}
.dsgvo-shield-xl {
  position: relative;
  width: 200px; height: 240px;
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.45));
}
.dsgvo-shield-xl svg { width: 100%; height: 100%; display: block; }
.dsgvo-shield-ring {
  position: absolute; inset: -22px;
  border-radius: 50%;
  border: 2px solid rgba(250,207,57,.3);
  animation: dsgvo-pulse 3.2s ease-in-out infinite;
}
@keyframes dsgvo-pulse {
  0%, 100% { transform: scale(1); opacity: .35; }
  50%      { transform: scale(1.08); opacity: .08; }
}
.dsgvo-hero-text .dsgvo-eyebrow {
  display: inline-block;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(250,207,57,.10);
  border: 1px solid rgba(250,207,57,.35);
  border-radius: 999px;
}
.dsgvo-word {
  font-size: clamp(72px, 12vw, 168px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 6px 0 18px;
  background: linear-gradient(135deg, #fff 0%, #fde36b 60%, #c98a1d 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(250,207,57,.25);
}
.dsgvo-claim { font-size: 22px; line-height: 1.35; color: rgba(255,255,255,.95); margin-bottom: 14px; }
.dsgvo-claim strong { color: var(--gold); font-weight: 700; }
.dsgvo-sub { font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.78); margin-bottom: 24px; }
.dsgvo-hero .dsgvo-pills {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.dsgvo-hero .dsgvo-pills li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.92);
}
.dsgvo-hero .dpill-icon { font-size: 18px; }
@media (max-width: 900px) {
  .dsgvo-hero { padding: 40px 28px; }
  .dsgvo-hero-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .dsgvo-shield-xl { margin: 0 auto; width: 140px; height: 168px; }
  .dsgvo-hero .dsgvo-pills { justify-content: center; }
}

/* =====================================================================
   v4 — TOOLSTACK "Revolution" hero core
   ===================================================================== */
.ts-hero-core {
  display: inline-flex; align-items: center; gap: 22px;
  margin: 28px auto 32px;
  padding: 18px 26px 18px 22px;
  background: var(--grad-petrol);
  border-radius: 999px;
  box-shadow: 0 24px 60px -28px rgba(34,92,115,.55);
  color: #fff;
}
.ts-core-logo {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 2px var(--gold);
  flex-shrink: 0;
}
.ts-core-logo img { width: 44px; height: 44px; object-fit: contain; }
.ts-core-pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(250,207,57,.45);
  animation: ts-core-pulse 2.4s ease-out infinite;
}
.ts-core-pulse.d2 { animation-delay: 1.2s; }
@keyframes ts-core-pulse {
  0%   { transform: scale(.95); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ts-core-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.ts-core-text strong { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: 0.01em; }
.ts-core-text small { font-size: 13.5px; color: rgba(255,255,255,.78); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.ts-mega {
  font-size: clamp(40px, 5.5vw, 72px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  margin: 14px 0 22px !important;
  text-wrap: balance;
}
.ts-lead { max-width: 880px; margin: 0 auto 24px; font-size: 19px; line-height: 1.55; }

/* =====================================================================
   v4 — WORKFLOW STORY (scroll-driven, sticky)
   ===================================================================== */
.wf-story {
  margin: 96px 0 60px;
  padding: 72px 0 24px;
  border-top: 1px solid var(--line);
}
.wf-story-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.wf-story-h {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.wf-story-lead {
  font-size: 19px; line-height: 1.55;
  color: var(--mute);
  text-wrap: pretty;
}

.wf-track {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

/* Sticky visual */
.wf-sticky {
  position: sticky;
  top: 110px;
  align-self: start;
}
.wf-stage {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0e2934 0%, #225c73 100%);
  box-shadow: 0 40px 90px -40px rgba(34,92,115,.6);
}
.wf-stage-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: brightness(.85) contrast(1.05);
  transition: transform 1.1s cubic-bezier(.22,.9,.3,1.1);
}
.wf-stage-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 60% 40%, rgba(250,207,57,.42) 0%, transparent 35%),
    radial-gradient(circle at 30% 80%, rgba(46,123,154,.4) 0%, transparent 50%);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity .6s ease;
}
.wf-stage-overlay {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  pointer-events: none;
}
.wf-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 14px;
  background: rgba(14,41,52,.85);
  border: 1px solid rgba(250,207,57,.4);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  color: #fff;
  transition: transform .4s ease, opacity .4s ease;
}
.wf-badge-num {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--petrol-d);
  font-weight: 800;
  font-size: 16px;
}
.wf-badge-label {
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.04em;
}
.wf-pulse-ring {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(250,207,57,.5);
  animation: wf-ring 2s ease-out infinite;
}
@keyframes wf-ring {
  0%   { box-shadow: 0 0 0 0 rgba(250,207,57,.5); }
  100% { box-shadow: 0 0 0 22px rgba(250,207,57,0); }
}

/* Step list */
.wf-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: wf;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wf-step {
  position: relative;
  padding: 32px 32px 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px -32px rgba(34,92,115,.18);
  transition: transform .4s cubic-bezier(.22,.9,.3,1.1), box-shadow .4s ease, border-color .4s ease;
  opacity: .55;
}
.wf-step.is-active {
  transform: translateX(-6px);
  border-color: rgba(250,207,57,.45);
  box-shadow: 0 30px 70px -32px rgba(250,207,57,.4), 0 0 0 1px rgba(250,207,57,.4);
  opacity: 1;
}
.wf-step.is-past { opacity: .7; }
.wf-step-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.wf-step h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--petrol-d);
  margin: 0 0 10px;
  line-height: 1.2;
}
.wf-step p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.wf-step p em { font-style: normal; font-weight: 600; color: var(--petrol); }
.wf-step-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--row-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--petrol-d);
}
.wf-chip-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--petrol);
  box-shadow: 0 0 0 3px rgba(46,123,154,.18);
}
.wf-chip-gold { background: rgba(250,207,57,.14); border-color: rgba(250,207,57,.5); color: var(--petrol-d); }
.wf-chip-gold .wf-chip-dot { background: var(--gold); box-shadow: 0 0 0 3px rgba(250,207,57,.25); }
.wf-chip-done { background: rgba(46,204,113,.12); border-color: rgba(46,204,113,.45); color: #15613a; }
.wf-chip-done .wf-chip-dot { background: #2ecc71; box-shadow: 0 0 0 3px rgba(46,204,113,.2); }

/* Story foot */
.wf-story-foot {
  margin: 84px auto 0;
  max-width: 980px;
  padding: 40px 48px;
  background: var(--grad-petrol);
  color: #fff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
  box-shadow: 0 30px 70px -34px rgba(34,92,115,.5);
  position: relative;
}
.wf-foot-stat { display: flex; flex-direction: column; gap: 6px; }
.wf-foot-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.wf-foot-label {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.wf-foot-claim {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  text-wrap: balance;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
}

@media (max-width: 980px) {
  .wf-track { grid-template-columns: 1fr; gap: 28px; }
  .wf-sticky { position: static; }
  .wf-stage { aspect-ratio: 16/10; }
  .wf-step { opacity: 1; transform: none !important; }
  .wf-story-foot { grid-template-columns: 1fr; padding: 32px 28px; }
}


/* ===== Standardfall · Scroll-Story ====================================== */
.cf-wrap {
  margin: 80px auto 40px;
  max-width: 1320px;
}
.cf-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.cf-headline {
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.cf-scroll {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) {
  .cf-scroll { grid-template-columns: 1fr; gap: 24px; }
}
.cf-sticky {
  position: sticky;
  top: 90px;
  align-self: start;
  height: calc(100vh - 130px);
  max-height: 720px;
  min-height: 500px;
}
@media (max-width: 980px) {
  .cf-sticky { position: static; height: 360px; min-height: 0; max-height: none; }
}
.cf-stage {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2a36 0%, #225c73 100%);
  box-shadow: 0 30px 70px -25px rgba(15,42,54,.45);
}
.cf-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  opacity: 0.55;
}
.cf-stage-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(250,207,57,.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(15,42,54,.18) 0%, rgba(15,42,54,.55) 100%);
}
.cf-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: rgba(255,255,255,.12);
}
.cf-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f5b53a 0%, #FACF39 50%, #fde36b 100%);
  transition: width .4s cubic-bezier(.2,.7,.2,1);
}
.cf-step-indicator {
  position: absolute;
  top: 24px; left: 26px;
  color: #FACF39;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.cf-step-indicator .cf-step-num {
  font-size: 52px;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  line-height: 1;
  transition: opacity .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.cf-step-indicator .cf-step-of {
  font-size: 16px;
  opacity: .55;
  margin-left: 4px;
}
.cf-step-title {
  position: absolute;
  left: 26px; right: 26px; bottom: 28px;
  color: #fff;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.25;
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}

/* Right column — sequential steps */
.cf-steps {
  display: flex;
  flex-direction: column;
  gap: 16vh;
  padding: 8vh 0 8vh;
}
@media (max-width: 980px) {
  .cf-steps { gap: 56px; padding: 0; }
}
.cf-step {
  opacity: 0.35;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.cf-step.is-active {
  opacity: 1;
  transform: translateY(0);
}
.cf-step-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(250,207,57,.14);
  color: #c98a1d;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cf-step h4 {
  margin: 14px 0 10px;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.cf-step p { font-size: 17px; line-height: 1.55; }
.cf-step p em { font-style: normal; color: #225c73; font-weight: 600; }
.cf-card {
  margin-top: 18px;
  background: #fff;
  border: 1px solid rgba(34,92,115,.10);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px -18px rgba(15,42,54,.18);
}

.cf-card-mail .cf-mail-head { display: flex; justify-content: space-between; font-size: 13px; color: #6b7a82; margin-bottom: 6px; }
.cf-card-mail .cf-mail-subj { font-weight: 700; margin-bottom: 8px; }
.cf-card-mail .cf-mail-body { font-size: 15px; color: #2a3a44; line-height: 1.5; }

.cf-case .cf-case-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 15px; border-bottom: 1px dashed rgba(34,92,115,.08); }
.cf-case .cf-case-row:last-child { border: none; }
.cf-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.cf-dot.ok { background: #6b7a82; }
.cf-dot.new { background: #FACF39; box-shadow: 0 0 0 4px rgba(250,207,57,.20); }

.cf-voice {
  background: linear-gradient(135deg, #0f2a36 0%, #225c73 100%);
  color: #fff;
  border: none;
}
.cf-voice-pulse { display: flex; gap: 4px; align-items: center; height: 32px; margin-bottom: 12px; }
.cf-voice-pulse span { width: 4px; background: #FACF39; border-radius: 2px; animation: cfPulse 1.1s ease-in-out infinite; }
.cf-voice-pulse span:nth-child(1) { height: 30%; animation-delay: 0s; }
.cf-voice-pulse span:nth-child(2) { height: 60%; animation-delay: .1s; }
.cf-voice-pulse span:nth-child(3) { height: 90%; animation-delay: .2s; }
.cf-voice-pulse span:nth-child(4) { height: 70%; animation-delay: .3s; }
.cf-voice-pulse span:nth-child(5) { height: 45%; animation-delay: .4s; }
.cf-voice-pulse span:nth-child(6) { height: 25%; animation-delay: .5s; }
@keyframes cfPulse { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.4); } }
.cf-voice-text { font-style: italic; font-size: 16px; line-height: 1.5; }

.cf-sources .cf-source {
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(34,92,115,.08);
  font-size: 14.5px;
}
.cf-sources .cf-source:last-child { border: none; }
.cf-source-icon { font-size: 20px; text-align: center; }
.cf-found { color: #1f8a5b; font-weight: 700; }

.cf-addr .cf-addr-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(34,92,115,.08);
  font-size: 14.5px;
}
.cf-addr .cf-addr-row:last-of-type { border: none; }
.cf-addr-role {
  background: #225c73; color: #fff;
  padding: 3px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  text-align: center;
}
.cf-addr-role.cc { background: #6b7a82; }
.cf-addr-name { font-weight: 600; }
.cf-addr-mail { color: #6b7a82; font-family: monospace; font-size: 13px; }
.cf-addr-meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(34,92,115,.10);
  font-size: 12.5px; color: #6b7a82;
}

.cf-draft .cf-draft-subj { font-weight: 700; margin-bottom: 8px; }
.cf-draft .cf-draft-body { font-size: 14.5px; line-height: 1.55; color: #2a3a44; margin-bottom: 12px; }
.cf-draft .cf-draft-attach { display: flex; flex-wrap: wrap; gap: 8px; }
.cf-draft .cf-draft-attach span {
  background: rgba(34,92,115,.06);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px; color: #225c73; font-weight: 600;
}

.cf-approve {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: linear-gradient(135deg, rgba(250,207,57,.10) 0%, rgba(250,207,57,.02) 100%);
}
.cf-approve-stat { display: flex; flex-direction: column; }
.cf-big { font-size: 38px; font-weight: 800; color: #c98a1d; line-height: 1; }
.cf-approve-stat span:last-child { font-size: 14px; color: #2a3a44; margin-top: 4px; }
.cf-approve-btn {
  background: #225c73; color: #fff;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 22px -10px rgba(34,92,115,.5);
}

.cf-done { background: linear-gradient(135deg, rgba(31,138,91,.08) 0%, rgba(31,138,91,.02) 100%); }
.cf-done .cf-done-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 15px; }
.cf-check { color: #1f8a5b; font-weight: 700; font-size: 18px; }
.cf-done-final {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(31,138,91,.18);
  font-size: 13.5px; color: #2a3a44;
}

/* Coda — summary statistics */
.cf-coda {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(34,92,115,.12);
}
@media (max-width: 780px) {
  .cf-coda { grid-template-columns: repeat(2, 1fr); }
}
.cf-coda-stat {
  text-align: center;
  padding: 14px 8px;
}
.cf-coda-big {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #225c73;
  letter-spacing: -0.01em;
}
.cf-coda-stat span:last-child {
  display: block;
  font-size: 14px;
  color: #6b7a82;
  margin-top: 4px;
}

/* cf-swap-v2 — Standardfall: text left, sticky image right + tighter crop */
.cf-scroll .cf-steps  { order: 1; }
.cf-scroll .cf-sticky { order: 2; }
.cf-hero-img {
  /* show more of the right half of the photo so the city is half-visible
     through the window in the background */
  object-position: 78% 28% !important;
  opacity: 0.92 !important;
}
/* Make sticky frame a touch taller so we get a real "hero" feel on the right */
.cf-sticky { max-height: 780px; }

/* Scroll-driven opacity is now controlled via JS (--cf-op). Remove the
   binary is-active jump so the text fades smoothly through the viewport. */
.cf-step {
  opacity: var(--cf-op, 0.18) !important;
  transform: translateY(0) !important;
  transition: opacity .35s linear !important;
}

@media (max-width: 980px) {
  .cf-scroll .cf-steps  { order: 2; }
  .cf-scroll .cf-sticky { order: 1; }
  .cf-step { opacity: 1 !important; }
}


/* ===== 30-Sekunden-Verwaltung badges ==================================== */
.focus-tagline {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.55;
  color: #2a3a44;
  max-width: 620px;
}
.focus-tagline strong { letter-spacing: -0.01em; font-weight: 800; }
.ts-30s-badge {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(250,207,57,.18) 0%, rgba(250,207,57,.06) 100%);
  border: 1px solid rgba(250,207,57,.4);
  color: #c98a1d;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.ts-30s-badge strong { font-weight: 800; color: #8a5f10; }


/* ===== Emo-Feature: "Leeres Postfach + Lob" =========================== */
.emo-feature {
  position: relative;
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #0c2632 0%, #133a4d 50%, #1a4759 100%);
  color: #fff;
  overflow: hidden;
}
.emo-feat-bg { position: absolute; inset: 0; pointer-events: none; }
.emo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
}
.emo-orb-1 { width: 540px; height: 540px; top: -160px; right: -100px;
  background: radial-gradient(circle, rgba(250,207,57,.42) 0%, transparent 70%); }
.emo-orb-2 { width: 420px; height: 420px; bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(46,123,154,.55) 0%, transparent 70%); }
.emo-orb-3 { width: 280px; height: 280px; top: 40%; left: 45%;
  background: radial-gradient(circle, rgba(253,227,107,.18) 0%, transparent 70%); }
.emo-feat-wrap {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .emo-feature { padding: 70px 0 80px; }
  .emo-feat-wrap { grid-template-columns: 1fr; gap: 48px; }
}
.emo-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(250,207,57,.14);
  border: 1px solid rgba(250,207,57,.35);
  border-radius: 999px;
  color: #FACF39;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 26px;
}
.emo-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FACF39; box-shadow: 0 0 12px #FACF39;
  animation: emo-pulse 2.4s ease-in-out infinite;
}
@keyframes emo-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.75); } }
.emo-feat-h {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 28px;
  font-weight: 700;
}
.emo-feat-gold {
  background: linear-gradient(90deg, #c98a1d 0%, #FACF39 45%, #fde36b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(250,207,57,.35));
}
.emo-feat-lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,.86);
  max-width: 560px;
  margin: 0 0 28px;
}
.emo-feat-lead strong { color: #FACF39; font-weight: 600; }
.emo-feat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.emo-feat-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(17px, 1.3vw, 20px);
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.emo-feat-li-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, #FACF39, #c98a1d);
  box-shadow: 0 0 14px rgba(250,207,57,.6);
  flex: 0 0 10px;
}

/* RIGHT side */
.emo-feat-visual {
  position: relative;
  min-height: 480px;
}
.emo-inbox-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 36px 32px 40px;
  text-align: center;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.5);
  max-width: 380px;
  margin: 0 auto;
}
.emo-inbox-top {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(250,207,57,.12);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: #fde36b;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.emo-inbox-icon { font-size: 16px; }
.emo-zero-big {
  font-size: clamp(140px, 18vw, 220px);
  font-weight: 800;
  line-height: 0.85;
  background: linear-gradient(180deg, #FACF39 0%, #c98a1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  margin: 8px 0 14px;
  filter: drop-shadow(0 8px 30px rgba(250,207,57,.35));
}
.emo-zero-cap {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 6px;
}
.emo-zero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
}

.emo-quotes-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.emo-quote-card {
  position: absolute;
  background: rgba(255,255,255,.97);
  color: #133a4d;
  padding: 18px 22px 16px;
  border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.45);
  max-width: 280px;
  margin: 0;
  border: 1px solid rgba(250,207,57,.25);
  animation: emo-float 6s ease-in-out infinite;
}
.emo-quote-card blockquote {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  font-style: italic;
}
.emo-quote-card figcaption {
  font-size: 12px;
  color: #225c73;
  font-weight: 500;
}
.emo-quote-mark {
  position: absolute;
  top: -16px; left: 14px;
  font-size: 60px;
  line-height: 1;
  color: #FACF39;
  font-family: Georgia, serif;
  font-weight: 700;
}
.emo-quote-card-1 { top: 6%; right: -8%; transform: rotate(3deg); animation-delay: 0s; }
.emo-quote-card-2 { top: 42%; left: -12%; transform: rotate(-4deg); animation-delay: -2s; }
.emo-quote-card-3 { bottom: 4%; right: -4%; transform: rotate(2.5deg); animation-delay: -4s; }
@keyframes emo-float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
.emo-quote-card-1 { --r: 3deg; }
.emo-quote-card-2 { --r: -4deg; }
.emo-quote-card-3 { --r: 2.5deg; }

@media (max-width: 980px) {
  .emo-feat-visual { min-height: 0; padding-top: 30px; }
  .emo-quotes-stack { position: static; display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
  .emo-quote-card { position: static; max-width: none; transform: none !important; animation: none; }
  .emo-quote-card-1, .emo-quote-card-2, .emo-quote-card-3 { transform: none !important; }
}
