/* =========================================================
   NeXt Automations — Design System
   "Ride the wave" — ozeanisch, hochwertig, comicartig-illustrativ
   ========================================================= */

/* Self-hosted Variable Fonts (kein externer Font-Server / DSGVO-sauber) */
@font-face{
  font-family:"Bricolage Grotesque";
  src: url("BricolageGrotesque-Variable.woff2") format("woff2-variations"), url("BricolageGrotesque-Variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family:"Instrument Sans";
  src: url("InstrumentSans-Variable.woff2") format("woff2-variations"), url("InstrumentSans-Variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family:"Instrument Sans";
  src: url("InstrumentSans-Italic-Variable.woff2") format("woff2-variations"), url("InstrumentSans-Italic-Variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root{
  /* ---- Farbwelt: Ozean & Sand statt violett-blauem KI-Standard ---- */
  --navy-950:#061621;
  --navy-900:#0a2233;
  --navy-800:#0e2e44;
  --navy-700:#154059;
  --navy-600:#1d5573;
  --ink:#0a2233;

  --aqua-300:#8fe9dd;
  --aqua-400:#4bd6c4;
  --aqua-500:#20bfab;
  --aqua-600:#0f9c8b;
  --aqua-glow: rgba(75,214,196,.35);

  --sand-200:#fbe7c6;
  --sand-300:#f6d19a;
  --sand-400:#f0b563;
  --sand-500:#e0993e;

  --coral-400:#ff8a75;
  --coral-500:#ff6b52;
  --coral-600:#e6543c;

  --foam-50:#f8faf6;
  --foam-100:#eef5f1;
  --foam-200:#e2eee8;
  --paper: var(--foam-50);

  --white:#ffffff;

  --font-display: "Bricolage Grotesque", "Georgia", serif;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1220px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 60px -20px rgba(6,22,33,.35);
  --shadow-card: 0 14px 34px -14px rgba(6,22,33,.28);
  --shadow-pop: 6px 6px 0 var(--ink);

  --ease-wave: cubic-bezier(.45,.05,.15,1);
  --dur-fast: .22s;
  --dur-med: .5s;
  --dur-slow: 1.1s;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; }
h1,h2,h3,h4,p,figure{ margin:0; }
:focus-visible{
  outline: 3px solid var(--sand-400);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: -.01em;
}

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

section{ position: relative; }

/* =========================================================
   Utility
   ========================================================= */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--aqua-600);
  margin-bottom: 16px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  background: var(--coral-500);
  border-radius: 2px;
}
.eyebrow.on-dark{ color: var(--aqua-300); }

.section-head{
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head p{
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--navy-700);
}
.section-head.center p{ margin-inline:auto; }

.text-balance{ text-wrap: balance; }

.visually-hidden{
  position:absolute; width:1px;height:1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}

.skip-link{
  position:absolute; left:12px; top:-60px;
  background: var(--navy-900); color:#fff;
  padding: 10px 18px; border-radius: 10px;
  z-index: 999; transition: top .2s ease;
}
.skip-link:focus{ top: 12px; }

/* Scroll-Fortschritt als Wellenlinie oben */
.scroll-progress{
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 300; pointer-events: none;
}
.scroll-progress span{
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--aqua-500), var(--coral-500));
  border-radius: 0 3px 3px 0;
}

/* Back-to-top: kleine Boje */
.back-to-top{
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  border: 2px solid var(--aqua-400);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s var(--ease-wave), background .2s ease;
  cursor: pointer; box-shadow: var(--shadow-card);
}
.back-to-top.show{ opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover{ background: var(--aqua-600); transform: translateY(-3px); }
.back-to-top svg{ width: 22px; height: 22px; }

/* Wellen-Unterstreichung (animierter Squiggle) */
.squiggle{ position: relative; display: inline-block; }
.squiggle::after{
  content: ""; position: absolute; left: .02em; right: .02em; bottom: -.12em; height: .22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 10 0 20 6 T 40 6' fill='none' stroke='%23ff6b52' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
  background-size: 40px 100%;
  animation: squiggleFlow 1.6s linear infinite;
}
.squiggle.aqua::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 10 0 20 6 T 40 6' fill='none' stroke='%234bd6c4' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
@keyframes squiggleFlow{ to{ background-position-x: 40px; } }

/* Reveal-on-scroll */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-wave), transform .8s var(--ease-wave);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-scale{ opacity:0; transform: scale(.92); transition: opacity .7s var(--ease-wave), transform .7s var(--ease-wave); transition-delay: var(--reveal-delay,0s); }
.reveal-scale.is-visible{ opacity:1; transform: scale(1); }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  --btn-bg: var(--navy-900);
  --btn-fg: #fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-wave), box-shadow var(--dur-fast) var(--ease-wave), background var(--dur-fast) ease;
  white-space: nowrap;
}
.btn svg{ width: 18px; height: 18px; flex-shrink:0; transition: transform .3s var(--ease-wave); }
.btn:hover{ transform: translateY(-3px); box-shadow: 0 14px 26px -10px rgba(6,22,33,.4); }
.btn:hover svg{ transform: translateX(4px); }
.btn:active{ transform: translateY(-1px); }

.btn-primary{ --btn-bg: var(--coral-500); --btn-fg:#fff; border-color: var(--coral-500); position:relative; overflow:hidden; }
.btn-primary:hover{ background: var(--coral-600); border-color: var(--coral-600); }
/* Glanz-Sweep beim Hover */
.btn-primary::after{
  content:""; position:absolute; top:0; bottom:0; left:-70%; width:45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events:none;
}
.btn-primary:hover::after{ left: 125%; }

.btn-ghost{
  --btn-bg: transparent; --btn-fg: var(--navy-900);
  border: 2px solid var(--navy-800);
}
.btn-ghost:hover{ background: var(--navy-900); color:#fff; }

.btn-ghost-light{
  --btn-bg: transparent; --btn-fg:#fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,.12); border-color:#fff; }

.btn-lg{ padding: 18px 34px; font-size: 1.05rem; }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.45; cursor: not-allowed; transform:none !important; box-shadow:none !important; }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(248,250,246,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(10,34,51,.08);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-block: 14px;
}
.brand{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:700; font-size:1.28rem; color: var(--navy-900); }
.brand .brand-mark{ width:38px; height:38px; }
.brand small{ display:block; font-family: var(--font-body); font-weight:600; font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color: var(--aqua-600); }

.main-nav{ display:flex; align-items:center; gap:36px; }
.main-nav ul{ display:flex; gap:30px; }
.main-nav a{
  font-weight: 600; font-size: .96rem; color: var(--navy-800);
  position: relative; padding-bottom: 4px;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background: var(--coral-500); transition: right .25s var(--ease-wave);
  border-radius: 2px;
}
.main-nav a:hover::after, .main-nav a.active::after{ right:0; }
.header-cta{ display:flex; align-items:center; gap:16px; }
.header-cta .btn{ padding: 12px 22px; font-size:.92rem; }
.header-cta .btn span.short{ display:none; }

.nav-toggle{
  display:none;
  width: 44px; height:44px; border-radius: 12px;
  border: 2px solid var(--navy-900); background: transparent;
  align-items:center; justify-content:center; cursor:pointer;
}
.nav-toggle svg{ width:20px; height:20px; }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Hero füllt genau den sichtbaren Bereich unterhalb des Headers */
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  padding-top: clamp(20px, 5vh, 76px);
  padding-bottom: clamp(80px, 13vh, 140px);
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner{
  position:relative; z-index:3;
  display:flex; justify-content:center;
}
.hero-copy{
  max-width: 780px;
  text-align: center;
  display:flex; flex-direction:column; align-items:center;
}
.hero-copy .eyebrow{ color: var(--aqua-300); }

/* Hero-Entrance: gestaffeltes Auftauchen beim Laden */
@keyframes riseIn{
  from{ opacity: 0; transform: translateY(26px); }
  to{ opacity: 1; transform: none; }
}
.hero-copy > *{ animation: riseIn .75s var(--ease-wave) backwards; }
.hero-copy > *:nth-child(1){ animation-delay: .05s; }
.hero-copy > *:nth-child(2){ animation-delay: .15s; }
.hero-copy > *:nth-child(3){ animation-delay: .25s; }
.hero-copy > *:nth-child(4){ animation-delay: .35s; }
.hero-copy > *:nth-child(5){ animation-delay: .45s; }
.hero-copy > *:nth-child(6){ animation-delay: .55s; }
.hero h1{
  font-size: clamp(1.9rem, min(4.1vw, 6.6vh), 3.8rem);
  color:#fff;
  margin-bottom: 6px;
  white-space: nowrap;
}
.hero h1 .accent{
  color: var(--aqua-300);
  position: relative;
  display:inline-block;
}
.hero-slogan{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, min(1.6vw, 2.5vh), 1.5rem);
  color: var(--sand-300);
  margin: clamp(8px, 1.5vh, 14px) 0 clamp(12px, 2.4vh, 22px);
}
.hero-copy p.lede{
  font-size: clamp(.95rem, 2vh, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(18px, 3.6vh, 34px);
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; margin-bottom: clamp(22px, 4.6vh, 46px);}

/* KPI-Zeile: schlicht, ohne Animation */
.hero-kpis{
  display:flex; justify-content:center; align-items:flex-start;
  gap: clamp(28px, 4.5vw, 64px);
  flex-wrap: wrap;
}
.hero-kpis div{ display:flex; flex-direction:column; align-items:center; gap:2px; }
.hero-kpis strong{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vh, 2.1rem);
  color: var(--aqua-300);
  line-height: 1.1;
}
.hero-kpis span{ font-size:.85rem; color: rgba(255,255,255,.65); }

@keyframes float{
  0%,100%{ transform: translateY(0) rotate(-1.2deg); }
  50%{ transform: translateY(-16px) rotate(1.2deg); }
}

.wave-bg{
  position:absolute; left:0; right:0; bottom:-2px; width:100%; z-index:1;
}
.wave-bg svg{ width:100%; height:auto; display:block; }
.wave-anim path{ animation: waveShift 26s linear infinite; }
.wave-anim path.w2{ animation-duration: 18s; animation-direction: reverse; }
.wave-anim path.w3{ animation-duration: 34s; }
@keyframes waveShift{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-1440px); }
}

/* Divider between dark hero and light content */
.shape-divider{ line-height:0; position:relative; }
.shape-divider svg{ width:100%; height: 90px; display:block; }

/* =========================================================
   Problems section
   ========================================================= */
.problems{ padding: 120px 0 100px; background: var(--paper); }
.problem-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.problem-card{
  background:#fff;
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-pop);
  transition: transform var(--dur-fast) var(--ease-wave), box-shadow var(--dur-fast) var(--ease-wave);
  position: relative;
}
.problem-card:hover{ transform: translate(-3px,-6px); box-shadow: 10px 10px 0 var(--coral-500); }
.problem-num{
  font-family: var(--font-display); font-size:.85rem; font-weight:700;
  color: var(--coral-500); letter-spacing:.08em;
  margin-bottom: 14px; display:block;
}
.problem-card h3{ font-size: 1.22rem; margin-bottom: 10px; }
.problem-card p{ color: var(--navy-700); font-size:.98rem; }
.problem-icon{ width:44px; height:44px; margin-bottom:16px; color: var(--aqua-600); }
.problem-card:hover .problem-icon{ animation: wiggle .55s ease; }
@keyframes wiggle{
  0%,100%{ transform: rotate(0); }
  30%{ transform: rotate(-9deg); }
  65%{ transform: rotate(8deg); }
}

/* =========================================================
   Solutions / Ecosystem
   ========================================================= */
.solutions{
  padding: 110px 0 130px;
  background: var(--navy-950);
  color:#fff;
  position: relative;
  overflow:hidden;
}
.solutions::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(75,214,196,.14), transparent 60%),
    radial-gradient(50% 40% at 90% 80%, rgba(240,181,99,.1), transparent 60%);
  pointer-events:none;
}
.solutions .section-head p{ color: rgba(255,255,255,.72); }
.solutions .section-head h2{ color:#fff; }

.ecosystem{
  position:relative;
  max-width: 620px;
  margin: 0 auto 90px;
  aspect-ratio: 1/1;
}
.ecosystem svg{ width:100%; height:100%; }
.ecosystem-hub{ animation: pulse 4s ease-in-out infinite; transform-origin:center; }
@keyframes pulse{ 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.05); } }
.ecosystem .flow-line{ stroke-dasharray: 8 10; animation: flow 3s linear infinite; }
@keyframes flow{ to{ stroke-dashoffset: -180; } }
.ecosystem .node-label{ font-family: var(--font-body); font-weight:700; font-size: 11.5px; fill:#fff; }
.ecosystem .node-sub{ font-family: var(--font-body); font-size: 9px; fill: rgba(255,255,255,.6); }

.system-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.system-card{
  position: relative;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1.5px solid rgba(143,233,221,.25);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transform-style: preserve-3d;
  transition: transform var(--dur-fast) ease, border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  will-change: transform;
}
.badge-soon{
  position: absolute;
  top: 26px; right: 24px;
  background: var(--sand-300);
  color: var(--navy-900);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.system-card:hover{
  border-color: var(--aqua-400);
  box-shadow: 0 24px 50px -20px rgba(75,214,196,.35);
}
.system-index{
  font-family: var(--font-display); font-size:.8rem; font-weight:700;
  color: var(--sand-300); letter-spacing:.1em; margin-bottom:16px; display:block;
}
.system-card h3{ color:#fff; font-size: 1.32rem; margin-bottom: 6px; }
.system-tag{ color: var(--aqua-300); font-size:.82rem; font-weight:700; margin-bottom:14px; display:block; }
.system-card p{ color: rgba(255,255,255,.72); font-size:.95rem; margin-bottom: 16px;}
.system-benefit{
  display:flex; align-items:flex-start; gap:8px;
  font-size:.88rem; color: var(--sand-200); font-weight:600;
}
.system-benefit svg{ width:16px; height:16px; flex-shrink:0; margin-top:3px; color: var(--coral-400); }
.system-icon{ width: 46px; height:46px; margin-bottom:18px; }

/* =========================================================
   Process timeline
   ========================================================= */
.process{ padding: 120px 0; background: var(--paper); position:relative; overflow:hidden; }
.process-path{ position:relative; margin-top: 70px; }
.process-path svg.track{ position:absolute; top: 26px; left:0; width:100%; height: 40px; z-index:0; }
.process-path svg.track path{
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.6s var(--ease-wave);
}
.process-path.in-view svg.track path{ stroke-dashoffset: 0; }
.process-steps{
  display:grid; grid-template-columns: repeat(5,1fr); gap: 18px; position:relative; z-index:1;
}
.process-step{
  text-align:center;
  animation: buoy 5s ease-in-out infinite;
}
.process-step:nth-child(2){ animation-delay: .6s; }
.process-step:nth-child(3){ animation-delay: 1.2s; }
.process-step:nth-child(4){ animation-delay: 1.8s; }
.process-step:nth-child(5){ animation-delay: 2.4s; }
@keyframes buoy{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-7px); }
}
.process-step .step-dot{
  width: 92px; height:92px; margin:0 auto 20px;
  border-radius:50%;
  background:#fff; border: 3px solid var(--navy-900);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1.6rem; font-weight:700;
  color: var(--navy-900);
  position: relative;
  transition: transform .4s var(--ease-wave), background .4s ease, color .4s ease;
}
.process-step:hover .step-dot{ background: var(--coral-500); border-color: var(--coral-500); color:#fff; transform: translateY(-6px) rotate(-4deg); }
.process-step h3{ font-size:1.08rem; margin-bottom:8px; }
.process-step p{ font-size:.88rem; color: var(--navy-700); padding-inline: 4px; }

/* =========================================================
   About / Mascot
   ========================================================= */
.about{
  padding: 120px 0;
  background: linear-gradient(180deg, var(--foam-100), var(--sand-200) 130%);
  overflow:hidden;
  position:relative;
}
.about-grid{ display:grid; grid-template-columns: .95fr 1.05fr; gap:60px; align-items:center; }
.about-copy p{ color: var(--navy-700); font-size:1.05rem; margin-bottom:16px; }
.about-points{ margin-top: 26px; display:flex; flex-direction:column; gap:14px; }
.about-point{ display:flex; gap:12px; align-items:flex-start; font-weight:600; }
.about-point svg{ width:22px; height:22px; color: var(--aqua-600); flex-shrink:0; margin-top:2px; }

.mascot-stage{
  position:relative; display:flex; align-items:center; justify-content:center;
  height: 420px;
}
.mascot-wave-bg{ position:absolute; inset:0; }
.mascot-wave-bg svg{ width:100%; height:100%; }
.mascot{
  position:relative; width: 280px;
  animation: surferBob 3.4s ease-in-out infinite;
  filter: drop-shadow(0 20px 24px rgba(10,34,51,.25));
}
@keyframes surferBob{
  0%,100%{ transform: translateY(0) rotate(-2deg); }
  50%{ transform: translateY(-18px) rotate(2deg); }
}
.mascot-badge{
  position:absolute; bottom: 8%; right: 6%;
  background:#fff; border: 2px solid var(--navy-900);
  border-radius: var(--radius-pill); padding: 10px 18px;
  font-weight:700; font-size:.85rem; box-shadow: var(--shadow-pop);
  animation: float 5s ease-in-out infinite;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{ padding: 110px 0; background: var(--paper); }
.faq-list{ max-width: 800px; margin: 0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background:#fff; border: 2px solid var(--navy-900); border-radius: var(--radius-md);
  overflow:hidden;
}
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 22px 26px; background:none; border:none; cursor:pointer;
  font-family: var(--font-display); font-weight:700; font-size:1.05rem; color: var(--navy-900);
  text-align:left;
}
.faq-q .plus{
  width: 30px; height:30px; border-radius:50%; border:2px solid var(--navy-900);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: transform .35s var(--ease-wave), background .3s ease;
  position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; background: var(--navy-900);
  transition: transform .3s ease, opacity .2s ease;
}
.faq-q .plus::before{ width:12px; height:2px; }
.faq-q .plus::after{ width:2px; height:12px; }
.faq-item.open .faq-q .plus{ background: var(--coral-500); border-color: var(--coral-500); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after{ background:#fff; }
.faq-item.open .faq-q .plus::after{ opacity:0; }
.faq-a{
  display:grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-wave);
}
.faq-a-inner{ overflow:hidden; }
.faq-a p{ padding: 0 26px 24px; color: var(--navy-700); font-size:.98rem; max-width: 640px; }
.faq-item.open .faq-a{ grid-template-rows: 1fr; }

/* =========================================================
   Final CTA band
   ========================================================= */
.cta-band{
  margin: 0 24px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color:#fff;
  padding: 90px 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(60% 60% at 80% 0%, rgba(75,214,196,.25), transparent 70%);
  pointer-events: none;
}
.cta-band h2{ color:#fff; font-size: clamp(2rem,4vw,3rem); position:relative; z-index:1; }
.cta-band p{ color: rgba(255,255,255,.78); max-width: 560px; margin: 18px auto 34px; font-size:1.08rem; position:relative; z-index:1;}
.cta-band .btn-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background: var(--navy-950); color: rgba(255,255,255,.7); padding: 0 0 30px; }
.footer-wave{ line-height: 0; }
.footer-wave svg{ width: 100%; height: 44px; display: block; }
.site-footer .container{ padding-top: 56px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .brand{ color:#fff; margin-bottom:14px; }
.footer-brand p{ font-size:.92rem; max-width: 300px; }
.footer-col h4{ color:#fff; font-size:.85rem; letter-spacing:.06em; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:.94rem; transition: color .2s ease; }
.footer-col a:hover{ color: var(--aqua-300); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:.85rem;
}
.footer-social{ display:flex; gap:14px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1.5px solid rgba(255,255,255,.25); display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; }
.footer-social a:hover{ border-color: var(--aqua-300); color: var(--aqua-300); }

/* =========================================================
   Legal pages
   ========================================================= */
.legal-hero{
  background: var(--navy-950); color:#fff; padding: 70px 0 60px;
}
.legal-hero h1{ color:#fff; font-size: clamp(2rem,4vw,2.8rem); }
.legal-hero p{ color: rgba(255,255,255,.7); margin-top:12px; }
.legal-body{ padding: 70px 0 100px; }
.legal-content{ max-width: 760px; margin: 0 auto; }
.legal-content h2{ font-size:1.4rem; margin-top:44px; margin-bottom:14px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content h3{ font-size:1.1rem; margin-top: 26px; margin-bottom:10px; }
.legal-content p{ color: var(--navy-700); margin-bottom:14px; }
.legal-content ul{ margin: 0 0 16px; padding-left: 22px; list-style: disc; color: var(--navy-700); }
.legal-content li{ margin-bottom:8px; }
.legal-content a.inline-link{ color: var(--aqua-600); font-weight:600; border-bottom: 1.5px solid var(--aqua-400); }
.legal-content strong{ color: var(--navy-900); }
.legal-toc{
  background:#fff; border:2px solid var(--navy-900); border-radius: var(--radius-md);
  padding: 24px 26px; margin-bottom: 40px;
}
.legal-toc h2{ font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; }
.legal-toc ul{ display:flex; flex-direction:column; gap:9px; list-style:none; padding:0;}
.legal-toc a{ color: var(--aqua-600); font-weight:600; font-size:.95rem; }
.legal-toc a:hover{ text-decoration: underline; }

/* =========================================================
   Kontakt / Funnel
   ========================================================= */
.kontakt-hero{
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color:#fff; padding: 70px 0 130px; position:relative; overflow:hidden;
}
.kontakt-hero h1{ color:#fff; font-size: clamp(2.2rem,4.6vw,3.4rem); max-width: 680px; }
.kontakt-hero p.lede{ color: rgba(255,255,255,.78); max-width: 560px; margin-top: 16px; font-size:1.08rem; }

.funnel-wrap{
  position:relative;
  margin-top: -80px;
  padding-bottom: 100px;
  z-index: 4;
}
.funnel-layout{ display:grid; grid-template-columns: 1.55fr .95fr; gap: 30px; align-items:start; }

.funnel-card{
  background:#fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px 46px;
  border: 2px solid var(--navy-900);
}
.funnel-progress{ margin-bottom: 34px; }
.funnel-progress-bar{ height: 10px; border-radius: var(--radius-pill); background: var(--foam-200); overflow:hidden; }
.funnel-progress-fill{
  height:100%; width: 16.66%; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--aqua-500), var(--coral-500));
  transition: width .5s var(--ease-wave);
}
.funnel-progress-meta{ display:flex; justify-content:space-between; margin-top:10px; font-size:.82rem; font-weight:700; color: var(--navy-700); letter-spacing:.02em; }
.funnel-progress-meta span.step-label{ color: var(--coral-500); }

.funnel-step{ display:none; animation: stepIn .5s var(--ease-wave); }
.funnel-step.active{ display:block; }
@keyframes stepIn{ from{ opacity:0; transform: translateX(18px); } to{ opacity:1; transform:none; } }

.funnel-step h2{ font-size: 1.55rem; margin-bottom:8px; }
.funnel-step > p{ color: var(--navy-700); margin-bottom: 28px; }

.field{ margin-bottom: 22px; }
.field label{ display:block; font-weight:700; font-size:.92rem; margin-bottom:8px; color: var(--navy-900); }
.field .hint{ font-weight: 400; color: var(--navy-700); font-size:.82rem; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="url"], .field textarea{
  width:100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--foam-200); background: var(--foam-50);
  font-family: inherit; font-size: 1rem; color: var(--navy-900);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus{ border-color: var(--aqua-500); background:#fff; outline:none; }
.field textarea{ resize: vertical; min-height: 120px; }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }

.choice-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.choice-grid.single{ grid-template-columns: repeat(4,1fr); }
.choice{
  position: relative;
}
.choice input{ position:absolute; opacity:0; inset:0; width:100%; height:100%; cursor:pointer; margin:0; }
.choice .choice-card{
  border: 2px solid var(--foam-200); border-radius: var(--radius-md);
  padding: 16px 18px; background: var(--foam-50);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
  font-weight:600; font-size:.95rem; display:flex; align-items:center; gap:10px;
  height:100%;
}
.choice .choice-card svg{ width:20px; height:20px; color: var(--aqua-600); flex-shrink:0; }
.choice input:checked + .choice-card{
  border-color: var(--aqua-500); background: var(--aqua-glow); transform: translateY(-2px);
}
.choice input:focus-visible + .choice-card{ outline: 3px solid var(--sand-400); outline-offset:2px; }

.funnel-actions{ display:flex; justify-content:space-between; align-items:center; margin-top: 36px; gap: 16px;}
.funnel-summary{ background: var(--foam-100); border-radius: var(--radius-md); padding: 22px 24px; margin-bottom: 26px; }
.funnel-summary dt{ font-weight:700; font-size:.82rem; color: var(--navy-700); text-transform:uppercase; letter-spacing:.04em; margin-top:14px; }
.funnel-summary dt:first-child{ margin-top:0; }
.funnel-summary dd{ margin:4px 0 0; font-size:1rem; }

.funnel-success{ text-align:center; padding: 30px 0; }
.funnel-success .check-circle{
  width:88px; height:88px; border-radius:50%; background: var(--aqua-glow);
  display:flex; align-items:center; justify-content:center; margin: 0 auto 24px;
  color: var(--aqua-600);
}
.funnel-success .check-circle svg{ width:44px; height:44px; }
.funnel-error{ display:none; background:#fff3f0; border:2px solid var(--coral-500); color: var(--coral-600); padding:14px 18px; border-radius: var(--radius-sm); margin-bottom:20px; font-weight:600; font-size:.92rem; }
.funnel-error.show{ display:block; }

/* Sidebar trust panel */
.trust-panel{
  background: var(--navy-950); color:#fff; border-radius: var(--radius-lg);
  padding: 38px 34px; position: sticky; top: 100px;
}
.trust-panel h3{ color:#fff; font-size:1.25rem; margin-bottom:20px; }
.trust-list{ display:flex; flex-direction:column; gap:18px; margin-bottom: 28px; }
.trust-list li{ display:flex; gap:12px; align-items:flex-start; font-size:.95rem; color: rgba(255,255,255,.85); }
.trust-list svg{ width:22px; height:22px; color: var(--aqua-300); flex-shrink:0; margin-top:2px; }
.trust-quote{ border-top: 1px solid rgba(255,255,255,.15); padding-top:22px; font-size:.92rem; color: rgba(255,255,255,.7); font-style: italic; }
.trust-quote strong{ display:block; color: var(--aqua-300); font-style:normal; margin-top:8px; font-size:.85rem; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px){
  /* Desktop-Nav würde umbrechen: ab hier Burger-Menü */
  .main-nav ul{ display:none; }
  .nav-toggle{ display:flex; }
  .problem-grid{ grid-template-columns: repeat(2,1fr); }
  .system-grid{ grid-template-columns: repeat(2,1fr); }
  .process-steps{ grid-template-columns: repeat(3,1fr); row-gap: 40px; }
  .process-path svg.track{ display:none; }
  .about-grid{ grid-template-columns: 1fr; }
  .mascot-stage{ height: 320px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .funnel-layout{ grid-template-columns: 1fr; }
  .trust-panel{ position:static; }
}

@media (max-width: 760px){
  body{ font-size: 16px; }
  .container{ padding-inline: 18px; }
  /* Kompakter einzeiliger Header */
  .brand{ font-size: .95rem; gap:7px; white-space: nowrap; }
  .brand .brand-mark{ width:30px; height:30px; }
  .brand small{ display:none; }
  .site-header .container{ gap:8px; padding-block: 10px; }
  .main-nav{ gap:8px; }
  .header-cta .btn{ padding: 10px 14px; font-size:.85rem; }
  .nav-toggle{ width:40px; height:40px; }
  .header-cta .btn span.long{ display:none; }
  .header-cta .btn span.short{ display:inline; }
  .hero{ min-height: calc(100vh - 68px); min-height: calc(100svh - 68px); padding-top: 14px; padding-bottom: 60px; }
  .hero h1{ font-size: clamp(1.6rem, 8vw, 2.9rem); }
  .hero-slogan{ font-size: .98rem; margin: 8px 0 12px; }
  .hero-copy p.lede{ font-size: .92rem; margin-bottom: 16px; }
  .hero-actions{ gap: 10px; margin-bottom: 18px; }
  .hero-actions .btn{ width: 100%; padding: 13px 22px; font-size: .95rem; }
  .hero-kpis{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; }
  .hero-kpis strong{ font-size: 1.25rem; }
  .hero-kpis span{ font-size: .7rem; }
  .problem-grid{ grid-template-columns: 1fr; }
  .system-grid{ grid-template-columns: 1fr; }
  .process-steps{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand{ grid-column: 1 / -1; }
  .field-row{ grid-template-columns: 1fr; }
  .choice-grid{ grid-template-columns: 1fr; }
  .choice-grid.single{ grid-template-columns: repeat(2,1fr); }
  .cta-band{ padding: 60px 24px; margin: 0 14px 14px; }
  .funnel-card{ padding: 30px 22px; }
  .funnel-actions{ flex-direction: column-reverse; }
  .funnel-actions .btn{ width:100%; }
}

/* Sehr kurze Smartphone-Displays: Hero weiter komprimieren */
@media (max-width: 760px) and (max-height: 700px){
  .hero{ padding-bottom: 46px; }
  .hero .eyebrow{ margin-bottom: 8px; }
  .hero h1{ font-size: clamp(1.45rem, 7.2vw, 2.4rem); }
  .hero-slogan{ font-size: .9rem; margin: 6px 0 10px; }
  .hero-copy p.lede{ font-size: .85rem; margin-bottom: 12px; }
  .hero-actions{ margin-bottom: 14px; }
  .hero-actions .btn{ padding: 11px 20px; font-size: .9rem; }
  .hero-kpis strong{ font-size: 1.1rem; }
}

/* Mobile nav drawer */
.mobile-nav{
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy-950);
  display:flex; flex-direction:column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .4s var(--ease-wave);
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 50px; }
.mobile-nav-close{ width:44px;height:44px;border-radius:12px;border:2px solid rgba(255,255,255,.4);background:none;color:#fff;display:flex;align-items:center;justify-content:center; }
.mobile-nav ul{ display:flex; flex-direction:column; gap:8px; }
.mobile-nav a{ color:#fff; font-family: var(--font-display); font-size:1.7rem; padding: 12px 0; display:block; }
.mobile-nav .btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 58px;
  margin-top: 30px;
  padding: 15px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.2;
  text-align:center;
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-scale{ opacity:1; transform:none; }
}
