/* =========================================================
   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; }

a.inline-link{
  color: var(--aqua-600);
  font-weight: 600;
  border-bottom: 1.5px solid var(--aqua-400);
}
a.inline-link:hover{ color: var(--coral-500); border-bottom-color: var(--coral-400); }

.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;
  max-width: 880px;
}
.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.45vw, 2.2vh), 1.34rem);
  color: var(--sand-300);
  margin: 0 0 clamp(10px, 1.8vh, 18px);
}
.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: 10px;}
.hero-cta-note{
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-weight: 700;
  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 70px;
}
.ecosystem > svg{ width:100%; height:auto; }
.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); }

/* Langsam rotierende Ringe: Orbit um das Ökosystem + Ring um den Hub */
.ecosystem .eco-orbit,
.ecosystem .hub-ring{
  transform-box: fill-box;
  transform-origin: center;
  animation: eco-rotate 60s linear infinite;
}
.ecosystem .hub-ring{ animation-duration: 30s; }
@keyframes eco-rotate{ to{ transform: rotate(360deg); } }

/* Datenpunkte, die von den Systemen zum Hub fließen */
.ecosystem .eco-dot{ fill: var(--sand-300); }

/* Karten der betrieblichen Anwendungsbereiche */
.ecosystem .eco-card{
  fill:#fff;
  stroke: var(--ink);
  stroke-width: 3;
  transition: transform .3s var(--ease-wave);
}
.ecosystem .eco-card-shadow{ fill: var(--aqua-500); opacity:.9; }
.ecosystem .eco-node{
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .3s var(--ease-wave);
}
.ecosystem .eco-node:hover{ transform: translateY(-4px); }
.ecosystem .eco-title{
  font-family: var(--font-body); font-weight:700;
  font-size: 13px; fill: var(--ink);
}
.ecosystem .eco-sub{
  font-family: var(--font-body); font-weight:600;
  font-size: 9.5px; fill: var(--navy-600);
}
.ecosystem .eco-index{ fill: var(--sand-300); stroke: var(--ink); stroke-width: 2.5; }
.ecosystem .eco-index-num{
  font-family: var(--font-body); font-weight:700;
  font-size: 10px; fill: var(--ink);
}
.ecosystem .eco-soon{ fill: var(--sand-300); stroke: var(--ink); stroke-width: 2; }
.ecosystem .eco-soon-text{
  font-family: var(--font-body); font-weight:700;
  font-size: 8.5px; letter-spacing: .08em; fill: var(--ink);
}
.eco-caption{
  text-align:center;
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  margin-top: 18px;
}

/* Mobile-Variante des Ökosystems: lesbare HTML-Karten statt skalierter SVG */
.eco-mobile{ display:none; }
.eco-mobile-hub{
  width: 118px; height: 118px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--aqua-600);
  border: 3px solid var(--aqua-300);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  animation: pulse 4s ease-in-out infinite;
}
.eco-mobile-hub strong{
  font-family: var(--font-display); font-weight:700;
  font-size: 1.35rem; color:#fff; line-height:1.1;
}
.eco-mobile-hub span{
  font-size: .58rem; font-weight:700; letter-spacing:.18em;
  color: rgba(255,255,255,.75);
}
.eco-mobile-line{
  width: 2px; height: 28px;
  margin: 6px auto 18px;
  background: repeating-linear-gradient(to bottom, var(--aqua-400) 0 6px, transparent 6px 12px);
}
.eco-mobile-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 16px 14px;
}
.eco-mini{
  position:relative;
  background:#fff;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--aqua-500);
  padding: 14px 12px 12px;
  display:flex; flex-direction:column; align-items:flex-start; gap: 8px;
}
.eco-mini-icon{ width: 22px; height: 22px; color: var(--ink); }
.eco-mini strong{ font-size: .85rem; color: var(--ink); line-height:1.25; }
.eco-mini-index{
  position:absolute; top: -10px; left: -10px;
  width: 25px; height: 25px;
  border-radius: 50%;
  background: var(--sand-300);
  border: 2px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-size: .62rem; font-weight:700; color: var(--ink);
}
.eco-mini-soon{
  display:inline-block;
  background: var(--sand-300);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
  font-size: .58rem; font-weight:700; letter-spacing:.06em;
  text-transform: uppercase; color: var(--ink);
}

@media (prefers-reduced-motion: reduce){
  .ecosystem-hub{ animation: none; }
  .ecosystem .flow-line{ animation: none; }
  .ecosystem .eco-orbit, .ecosystem .hub-ring{ animation: none; }
  .ecosystem .eco-dots{ display:none; }
  .eco-mobile-hub{ animation: none; }
}

.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; }

/* =========================================================
   Practical example
   ========================================================= */
.example{
  padding: 110px 0;
  background: var(--paper);
}
.example-grid{
  display:grid;
  grid-template-columns: .9fr 1.35fr;
  gap: 48px;
  align-items:center;
}
.example .section-head{ margin-bottom: 0; }
.example-flow{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.example-card{
  background:#fff;
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  position:relative;
}
.example-step{
  position:absolute;
  top: -14px;
  left: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral-500);
  color:#fff;
  border: 2px solid var(--navy-900);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-display);
  font-weight: 700;
}
.example-card svg{
  width: 38px;
  height: 38px;
  color: var(--aqua-600);
  margin-bottom: 18px;
}
.example-card h3{ font-size: 1.12rem; margin-bottom: 10px; }
.example-card p{ color: var(--navy-700); font-size:.94rem; }

/* =========================================================
   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 .track-base{
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.6s var(--ease-wave);
}
.process-path.in-view svg.track .track-base{ stroke-dashoffset: 0; }
/* Fließende Partikel auf der Welle: der Prozess läuft immer weiter */
.process-path svg.track .track-flow{
  stroke-dasharray: 3 21;
  opacity: 0;
  transition: opacity .6s ease 1.2s;
  animation: trackflow 1.4s linear infinite;
}
.process-path.in-view svg.track .track-flow{ opacity:.85; }
@keyframes trackflow{ to{ stroke-dashoffset: -24; } }
.process-steps{
  display:grid; grid-template-columns: repeat(6,1fr); gap: 14px; 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; }
.process-step:nth-child(6){ animation-delay: 3s; }
@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; }

/* Loop zurück zu Schritt 1: jede Automatisierung durchläuft den Kreislauf erneut */
.process-loop{
  position:relative;
  height: 90px;
  margin-top: 18px;
}
.process-loop svg.loop-track{
  position:absolute; inset:0;
  width:100%; height:100%;
  overflow:visible;
}
.process-loop .loop-path{
  stroke: var(--coral-500);
  stroke-dasharray: 8 10;
  animation: loopflow 1.1s linear infinite;
}
.process-loop .loop-arrow{ fill: var(--coral-500); }
@keyframes loopflow{ to{ stroke-dashoffset: -18; } }
.loop-label{
  position:absolute;
  left:50%; top:82%;
  transform: translate(-50%,-50%);
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 18px;
  background:#fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: .85rem;
  color: var(--navy-900);
  box-shadow: 4px 4px 0 var(--ink);
  white-space: nowrap;
}
.loop-label .loop-icon{
  font-size: 1.05rem; line-height:1;
  color: var(--coral-500);
  animation: loopspin 5s linear infinite;
}
@keyframes loopspin{ to{ transform: rotate(360deg); } }

/* Kreislauf-Emblem: sichtbarer Loop, wenn die breite Schleife ausgeblendet ist */
.loop-emblem{
  display:none;
  width: 84px; height: 84px;
  margin: 0 auto 16px;
}
.loop-emblem circle{
  stroke: var(--coral-500);
  stroke-dasharray: 8 10;
  animation: loopflow 1.1s linear infinite;
}
.loop-emblem polygon{ fill: var(--coral-500); }

@media (prefers-reduced-motion: reduce){
  .process-step{ animation: none; }
  .process-path svg.track .track-flow{ animation: none; opacity:0 !important; }
  .process-loop .loop-path{ animation: none; }
  .loop-label .loop-icon{ animation: none; }
  .loop-emblem circle{ animation: none; }
}

/* =========================================================
   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; }

.main-founder-grid{grid-template-columns:.9fr 1.1fr;gap:78px}
.main-founder-visual{position:relative;min-height:540px;margin:0;border-radius:30px;overflow:hidden;background:var(--navy-900);box-shadow:var(--shadow-soft)}
.main-founder-visual::after{content:"";position:absolute;inset:0;z-index:1;background:radial-gradient(circle at 80% 31%,rgba(255,255,255,.18),transparent 34%),linear-gradient(180deg,transparent 48%,rgba(6,22,33,.76) 100%);pointer-events:none}
.main-founder-visual::before{content:"";position:absolute;inset:0;z-index:3;background:linear-gradient(120deg,rgba(255,255,255,.02),rgba(255,255,255,.065));mix-blend-mode:screen;pointer-events:none}
.main-founder-landmark{position:absolute;inset:0;z-index:0;width:100%;height:100%;min-height:540px;object-fit:cover;object-position:55% center;filter:saturate(.92) brightness(1.015)}
.main-founder-portrait{position:absolute;right:-1%;bottom:-5%;z-index:2;width:auto;height:98%;opacity:.98;object-fit:contain;object-position:right bottom;filter:saturate(.9) contrast(.97) brightness(1.025) drop-shadow(-8px 14px 24px rgba(6,22,33,.14))}
.main-founder-visual figcaption{position:absolute;left:24px;right:24px;bottom:22px;z-index:4;display:flex;align-items:center;gap:12px;padding:15px 17px;border:1px solid rgba(255,255,255,.2);border-radius:16px;background:rgba(6,22,33,.72);color:#fff;backdrop-filter:blur(12px)}
.main-founder-visual figcaption svg{width:26px;height:26px;flex:0 0 auto;color:var(--aqua-300)}
.main-founder-visual figcaption span{display:flex;flex-direction:column;font-size:.8rem;color:rgba(255,255,255,.7)}
.main-founder-visual figcaption strong{color:#fff;font-size:.95rem}
.main-founder-copy h2{font-size:clamp(2.35rem,4vw,3.65rem)}
.main-founder-points .about-point span{display:flex;flex-direction:column;color:var(--navy-700);font-size:.86rem;line-height:1.5}
.main-founder-points .about-point strong{color:var(--navy-900);font-size:.96rem}
.main-founder-cta{margin-top:30px}

.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;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.mascot-badge:hover{
  background: var(--coral-500);
  border-color: var(--navy-900);
  color:#fff;
}

/* =========================================================
   Advantages
   ========================================================= */
.advantages{
  padding: 110px 0;
  background: var(--paper);
}
.advantage-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.advantage-card{
  background:#fff;
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-pop);
  transition: transform var(--dur-fast) var(--ease-wave), box-shadow var(--dur-fast) var(--ease-wave);
}
.advantage-card:hover{
  transform: translate(-3px,-6px);
  box-shadow: 10px 10px 0 var(--aqua-500);
}
.advantage-card svg{
  width: 42px;
  height: 42px;
  color: var(--coral-500);
  margin-bottom: 18px;
}
.advantage-card h3{ font-size: 1.16rem; margin-bottom: 10px; }
.advantage-card p{ color: var(--navy-700); font-size:.96rem; }

/* =========================================================
   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: 1px solid rgba(10,34,51,.13);
}
.funnel-progress{ margin-bottom: 34px; }
.funnel-progress-bar{ height: 8px; border-radius: var(--radius-pill); background: var(--foam-200); overflow:hidden; }
.funnel-progress-fill{
  height:100%; width: 14.28%; 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{
  position:relative;
  border: 1.5px solid var(--foam-200); border-radius: 14px;
  padding: 16px 18px; background: var(--foam-50);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .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);
  box-shadow:0 10px 22px -17px rgba(6,22,33,.55);
}
.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; }
.privacy-consent{
  display:grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items:start;
  background: var(--foam-100);
  border: 2px solid var(--foam-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  color: var(--navy-700);
  font-size: .92rem;
  font-weight: 600;
}
.privacy-consent input{
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--aqua-600);
}
.privacy-consent a{
  color: var(--aqua-600);
  border-bottom: 1.5px solid var(--aqua-400);
}
.privacy-consent a:hover{ color: var(--aqua-500); }

.funnel-success{ text-align:center; padding: 30px 0 10px; }
.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-success>p:not(.eyebrow){max-width:620px;margin:12px auto 0;color:var(--navy-700);font-size:1.03rem}
.success-next{max-width:650px;margin:28px auto 0;padding:24px 26px;border-radius:18px;background:var(--foam-100);text-align:left}
.success-next h3{font-size:1.15rem;margin-bottom:10px}
.success-next p{color:var(--navy-700);margin-top:9px}
.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); }
  .example-grid{ grid-template-columns: 1fr; }
  .advantage-grid{ grid-template-columns: repeat(2,1fr); }
  .process-steps{ grid-template-columns: repeat(3,1fr); row-gap: 40px; }
  .process-path svg.track{ display:none; }
  .process-loop svg.loop-track{ display:none; }
  .process-loop{ height:auto; margin-top: 34px; text-align:center; }
  .loop-emblem{ display:block; }
  .loop-label{ position:static; transform:none; white-space:normal; display:inline-flex; }
  .about-grid{ grid-template-columns: 1fr; }
  .main-founder-grid{gap:46px}
  .main-founder-visual{min-height:500px;max-width:650px;width:100%;margin:0 auto}
  .main-founder-landmark{min-height:500px}
  .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; }
  .example{ padding: 80px 0; }
  .example-flow{ grid-template-columns: 1fr; gap: 22px; }
  .advantage-grid{ grid-template-columns: 1fr; }
  .process-steps{ grid-template-columns: repeat(2,1fr); }
  /* Ökosystem: SVG wäre hier zu klein — lesbare HTML-Variante zeigen */
  .ecosystem > svg{ display:none; }
  .eco-mobile{ display:block; }
  .ecosystem{ max-width: 460px; }
  .eco-caption{ font-size: .88rem; }
  .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%; }
  .main-founder-visual{min-height:380px;border-radius:24px}
  .main-founder-landmark{min-height:380px}
  .main-founder-portrait{right:-4%;bottom:-6%;height:114%}
  .main-founder-visual figcaption{left:14px;right:14px;bottom:14px;padding:13px 14px}
  .main-founder-cta{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; }
}

/* =========================================================
   Automatisierbar-Liste (Chips)
   ========================================================= */
.autolist{
  padding: 110px 0;
  background: linear-gradient(180deg, var(--foam-100), var(--paper));
}
.chip-cloud{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center;
  max-width: 880px; margin: 0 auto 30px;
}
.chip{
  display:inline-flex; align-items:center; gap:9px;
  background:#fff; border: 2px solid var(--navy-900);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight:600; font-size:.92rem; color: var(--navy-900);
  box-shadow: var(--shadow-pop);
  transition: transform var(--dur-fast) var(--ease-wave), box-shadow var(--dur-fast) var(--ease-wave);
}
.chip:hover{ transform: translate(-2px,-4px); box-shadow: 6px 6px 0 var(--aqua-500); }
.chip svg{ width:16px; height:16px; color: var(--aqua-600); flex-shrink:0; }
.autolist-note{
  text-align:center; max-width: 620px; margin: 0 auto;
  color: var(--navy-700); font-size:1.02rem; font-weight:600;
}
@media (max-width: 760px){
  .autolist{ padding: 70px 0; }
  .chip{ font-size:.85rem; padding: 9px 14px; }
}

/* =========================================================
   Road to zukunftssicher — Grafik & Kacheln
   ========================================================= */
.road{
  max-width: 1120px;
  margin: 0 auto 70px;
}
.road svg{ width:100%; height:auto; overflow:visible; }
.road-path-base{ stroke: rgba(143,233,221,.3); }
.road-path-flow{
  stroke: var(--aqua-400);
  stroke-dasharray: 4 18;
  animation: roadflow 1.5s linear infinite;
}
@keyframes roadflow{ to{ stroke-dashoffset: -22; } }
.road-dot{ fill: var(--sand-300); }
.road-station{
  transform-box: fill-box;
  transform-origin: center;
  animation: stationbob 5.5s ease-in-out infinite;
}
@keyframes stationbob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.road-station .station-bg{ fill:#fff; stroke: var(--ink); stroke-width:3; }
.road-num{ fill: var(--coral-500); stroke: var(--ink); stroke-width:2; }
.road-num-text{
  fill:#fff;
  font-family: var(--font-body); font-weight:700; font-size:14px;
}
.road-label{
  fill:#fff;
  font-family: var(--font-body); font-weight:700; font-size:18px;
}
.road-label.goal{ fill: var(--sand-300); font-size:16px; letter-spacing:.06em; }
.road-sub{
  fill: rgba(255,255,255,.65);
  font-family: var(--font-body); font-weight:600; font-size:15px;
}
.road-goal{
  transform-box: fill-box;
  transform-origin: center;
  animation: goalpulse 3.5s ease-in-out infinite;
}
@keyframes goalpulse{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.07); }
}
/* Vertikale Road-Variante für schmale Screens */
.road-mobile{ display:none; }
@media (max-width: 600px){
  .road{ display:none; }
  .road-mobile{
    display:block;
    position:relative;
    max-width: 320px;
    margin: 0 auto 60px;
  }
  .rm-line{
    position:absolute; top: 8px; bottom: 26px; left: 23px; width: 3px;
    background: repeating-linear-gradient(180deg, rgba(75,214,196,.75) 0 7px, transparent 7px 17px);
    animation: roadflowY 1.4s linear infinite;
  }
  .rm-start{
    display:flex; align-items:center; gap:13px;
    color: rgba(255,255,255,.65);
    font-size:.85rem; font-weight:600;
    margin: 0 0 20px 18px;
  }
  .rm-start::before{
    content:""; width:12px; height:12px; border-radius:50%;
    background: var(--sand-300); flex-shrink:0;
  }
  .road-mobile ol{
    display:flex; flex-direction:column; gap:16px;
    position:relative;
    margin:0; padding:0; list-style:none;
  }
  .rm-item{ display:flex; align-items:center; gap:16px; }
  .rm-dot{
    position:relative;
    width:48px; height:48px; flex-shrink:0;
    background:#fff; border:3px solid var(--ink); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .rm-dot > svg{ width:22px; height:22px; color: var(--ink); }
  .rm-num{
    position:absolute; top:-7px; right:-7px;
    width:21px; height:21px; border-radius:50%;
    background: var(--coral-500); border:2px solid var(--ink);
    color:#fff; font-size:.68rem; font-weight:700; line-height:1;
    display:flex; align-items:center; justify-content:center;
  }
  .rm-label{ color:#fff; font-weight:700; font-size:.98rem; line-height:1.3; }
  .rm-goal{
    display:flex; align-items:center; gap:16px;
    margin-top: 20px;
  }
  .rm-goal-dot{
    width:48px; height:48px; flex-shrink:0; border-radius:50%;
    background: var(--sand-300); border:3px solid var(--ink);
    display:flex; align-items:center; justify-content:center;
    animation: goalpulse 3.5s ease-in-out infinite;
  }
  .rm-goal-dot svg{ width:22px; height:22px; color: var(--ink); }
  .rm-goal strong{
    color: var(--sand-300);
    font-family: var(--font-display);
    font-size:1.05rem; letter-spacing:.05em;
  }
}
@keyframes roadflowY{ to{ background-position-y: 17px; } }
@media (prefers-reduced-motion: reduce){
  .road-path-flow, .road-station, .road-goal, .rm-line, .rm-goal-dot{ animation: none; }
  .road-dots{ display:none; }
}

/* Beispiel-Listen in den Geschäftsfeld-Kacheln */
.system-examples{
  display:flex; flex-direction:column; gap:9px;
  margin-top: 4px;
}
.system-examples li{
  display:flex; gap:8px; align-items:flex-start;
  color: rgba(255,255,255,.8);
  font-size:.88rem; line-height:1.4;
}
.system-examples svg{
  width:11px; height:11px; flex-shrink:0; margin-top:5px;
  color: var(--coral-400);
}
.solutions-note{
  text-align:center;
  color: rgba(255,255,255,.85);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 44px auto 0;
}
.solutions-note strong{ color: var(--aqua-300); }

/* =========================================================
   ROI-Rechner
   ========================================================= */
.roi{
  padding: 120px 0;
  background: linear-gradient(180deg, var(--foam-100), var(--paper));
}
.roi-grid{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 26px;
  max-width: 1000px; margin: 0 auto;
  align-items: stretch;
}
.roi-inputs, .roi-results{
  background:#fff;
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-pop);
}
.roi-field{ margin-bottom: 26px; }
.roi-field:last-child{ margin-bottom: 0; }
.roi-field-head{
  display:flex; justify-content:space-between; align-items:baseline; gap:12px;
  margin-bottom: 10px;
}
.roi-field-head label{ font-weight:700; font-size:.95rem; color: var(--navy-900); }
.roi-field-head output{
  font-family: var(--font-display); font-weight:700; font-size:1.05rem;
  color: var(--aqua-600); white-space:nowrap;
}
.roi-field input[type="range"]{
  -webkit-appearance:none; appearance:none;
  width:100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua-500) var(--fill,50%), var(--foam-200) var(--fill,50%));
  outline-offset: 4px;
  cursor:pointer;
}
.roi-field input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none; appearance:none;
  width: 26px; height: 26px; border-radius:50%;
  background: #fff;
  border: 3px solid var(--navy-900);
  box-shadow: 2px 2px 0 var(--navy-900);
  transition: transform .2s var(--ease-wave);
}
.roi-field input[type="range"]::-webkit-slider-thumb:hover{ transform: scale(1.12); }
.roi-field input[type="range"]::-moz-range-thumb{
  width: 22px; height: 22px; border-radius:50%;
  background:#fff; border: 3px solid var(--navy-900);
  box-shadow: 2px 2px 0 var(--navy-900);
}
.roi-results{
  background: var(--navy-900);
  border-color: var(--navy-900);
  color:#fff;
  display:flex; flex-direction:column;
}
.roi-results h3{
  color:#fff; font-size:1.15rem; margin-bottom: 20px;
}
.roi-numbers{
  display:grid; grid-template-columns: 1fr 1fr; gap: 16px 20px;
  margin-bottom: 20px;
}
.roi-num strong{
  display:block;
  font-family: var(--font-display); font-weight:800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--aqua-300);
  line-height:1.1;
}
.roi-num span{ font-size:.85rem; color: rgba(255,255,255,.65); }
.roi-num.big{ grid-column: 1 / -1; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); }
.roi-num.big strong{ color: var(--sand-300); font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.roi-note{
  font-size:.8rem; color: rgba(255,255,255,.55);
  margin-top:auto; padding-top: 16px;
}
.roi-cta{ margin-top: 18px; }
.roi-cta .btn{ width:100%; justify-content:center; }
@media (max-width: 900px){
  .roi{ padding: 80px 0; }
  .roi-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   Conversion focus — Prozessautomatisierung im Handwerk
   ========================================================= */
html, body{ max-width:100%; overflow-x:clip; }
[hidden]{ display:none !important; }

.hero{ min-height:auto; padding-top:clamp(42px,7vh,82px); padding-bottom:clamp(105px,14vh,150px); }
.hero-copy{ max-width:900px; }
.hero-copy > *{ animation-duration:.38s; }
.hero-copy > *:nth-child(1){ animation-delay:0s; }
.hero-copy > *:nth-child(2){ animation-delay:.04s; }
.hero-copy > *:nth-child(3){ animation-delay:.08s; }
.hero-copy > *:nth-child(4){ animation-delay:.12s; }
.hero-copy > *:nth-child(5){ animation-delay:.16s; }
.hero-copy > *:nth-child(6){ animation-delay:.2s; }
.hero-copy > *:nth-child(7){ animation-delay:.24s; }
.hero h1{ max-width:900px; margin-bottom:18px; }
.hero-copy p.lede{ max-width:760px; margin-bottom:24px; }
.hero-lede-short{ display:none; }
.hero-benefits{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  width:100%;
  margin:0 auto 28px;
  text-align:left;
}
.hero-benefits li{
  display:flex;
  align-items:flex-start;
  gap:9px;
  padding:12px 14px;
  color:rgba(255,255,255,.88);
  background:rgba(255,255,255,.055);
  border:1px solid rgba(143,233,221,.22);
  border-radius:var(--radius-sm);
  font-size:.9rem;
  line-height:1.4;
}
.hero-benefits svg{ width:20px; height:20px; color:var(--aqua-300); flex:0 0 auto; margin-top:1px; }
.hero-actions{ margin-bottom:12px; }
.responsive-cta .cta-short{ display:none; }
.hero-cta-note{ margin-bottom:18px; }
.hero-benefits-compact{ max-width:760px; margin-bottom:0; }
.hero-benefits-compact li{
  justify-content:center;
  align-items:center;
  padding:8px 10px;
  text-align:center;
  background:transparent;
  border:0;
  color:rgba(255,255,255,.72);
  font-weight:700;
}
.hero-benefits-compact svg{ width:17px; height:17px; margin-top:0; }

.proof-strip{ background:var(--paper); padding:34px 0; border-bottom:1px solid var(--foam-200); }
.proof-strip-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.proof-strip-grid > div{ display:flex; align-items:center; gap:14px; min-width:0; }
.proof-strip-grid svg{ width:34px; height:34px; color:var(--aqua-600); flex:0 0 auto; }
.proof-strip-grid span{ display:flex; flex-direction:column; color:var(--navy-700); font-size:.82rem; line-height:1.35; }
.proof-strip-grid strong{ color:var(--navy-900); font-size:.95rem; }

.problems{ padding:96px 0; }
.problem-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }

.example{ padding:100px 0; }
.example-grid{ grid-template-columns:.8fr 1.2fr; column-gap:64px; }
.example-cta{ grid-column:1 / -1; display:flex; justify-content:space-between; align-items:center; gap:24px; margin-top:34px; padding:24px 28px; border-radius:var(--radius-md); background:var(--navy-900); color:#fff; }
.example-cta p{ color:rgba(255,255,255,.78); }
.example-cta strong{ color:#fff; }

.system-proof{ padding:105px 0; background:var(--foam-100); }
.system-proof-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:center; }
.system-proof .section-head{ margin-bottom:0; }
.check-list{ display:flex; flex-direction:column; gap:13px; margin-top:28px; }
.check-list li{ display:flex; align-items:flex-start; gap:10px; color:var(--navy-800); font-weight:600; }
.check-list svg{ width:22px; height:22px; color:var(--aqua-600); flex:0 0 auto; margin-top:2px; }
.workflow-board{ background:#fff; border:2px solid var(--navy-900); border-radius:var(--radius-lg); padding:24px; box-shadow:10px 10px 0 var(--navy-900); }
.workflow-board-head{ display:flex; justify-content:space-between; align-items:center; gap:16px; padding-bottom:18px; border-bottom:1px solid var(--foam-200); font-weight:700; }
.status-live{ color:var(--aqua-600); background:var(--foam-100); border-radius:var(--radius-pill); padding:5px 10px; font-size:.72rem; white-space:nowrap; }
.workflow-row{ display:grid; grid-template-columns:40px minmax(0,1fr) auto; gap:14px; align-items:center; padding:20px 0; border-bottom:1px solid var(--foam-200); }
.workflow-row > svg{ width:34px; height:34px; color:var(--aqua-600); }
.workflow-row > div{ display:flex; flex-direction:column; line-height:1.35; }
.workflow-row span{ color:var(--navy-700); font-size:.82rem; }
.workflow-state{ border-radius:var(--radius-pill); padding:6px 10px; font-size:.72rem !important; font-weight:700; }
.workflow-state.done{ background:#e4f7f1; color:#087866; }
.workflow-state.active{ background:#fff0ec; color:var(--coral-600); }
.workflow-state.queued{ background:var(--foam-200); color:var(--navy-700); }
.workflow-disclaimer{ margin-top:16px; font-size:.75rem; color:var(--navy-700); }

.expansion{ padding:105px 0; background:var(--navy-950); }
.expansion h2{ color:#fff; }
.expansion .section-head > p{ color:rgba(255,255,255,.7); }
.expansion-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.expansion-card{ background:rgba(255,255,255,.06); border:1px solid rgba(143,233,221,.25); border-radius:var(--radius-md); padding:24px; }
.expansion-card svg{ width:36px; height:36px; color:var(--aqua-300); margin-bottom:18px; }
.expansion-card h3{ color:#fff; font-size:1.08rem; margin-bottom:9px; }
.expansion-card p{ color:rgba(255,255,255,.68); font-size:.9rem; }

.process{ padding:105px 0; }
.process-steps{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:40px; }
.process-step p{ max-width:300px; margin-inline:auto; font-size:.94rem; }
.advantages{ padding:100px 0; }

/* Inhalte bleiben sofort lesbar; Bewegung lebt in Wellen, Hover und Prozessdetails. */
.reveal,.reveal.is-visible,.reveal-scale,.reveal-scale.is-visible{
  opacity:1;
  transform:none;
  transition:none;
}

@media (max-width:1080px){
  .hero-benefits{ grid-template-columns:1fr; max-width:680px; }
  .system-proof-grid{ grid-template-columns:1fr; gap:40px; }
  .expansion-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .process-steps{ grid-template-columns:repeat(3,minmax(0,1fr)); }
}

@media (max-width:760px){
  .hero{ min-height:auto; padding:20px 0 62px; }
  .hero-copy{ text-align:center; align-items:center; }
  .hero-copy .eyebrow{ display:flex; }
  .hero-slogan{ text-align:center; margin-bottom:14px; }
  .hero h1{ font-size:clamp(2rem,9.2vw,2.6rem); margin-bottom:14px; }
  .hero-copy p.lede{ font-size:.94rem; line-height:1.5; margin:0 auto 18px; text-align:center; }
  .hero-actions{ width:100%; }
  .hero-actions .btn{
    width:100%;
    max-width:100%;
    min-height:54px;
    padding:13px 14px;
    white-space:normal;
    text-align:center;
    line-height:1.2;
    font-size:.9rem;
  }
  .responsive-cta .cta-long{ display:none; }
  .responsive-cta .cta-short{ display:inline; }
  .hero-cta-note{ font-size:.76rem; line-height:1.4; text-align:center; margin-bottom:12px; }
  .hero-benefits{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:2px; width:100%; max-width:none; }
  .hero-benefits-compact li{ flex-direction:column; gap:4px; padding:6px 2px; font-size:.72rem; line-height:1.25; }
  .proof-strip{ padding:26px 0; }
  .proof-strip-grid{ grid-template-columns:1fr; gap:18px; }
  .problems,.example,.system-proof,.expansion,.process,.advantages{ padding:74px 0; }
  .section-head{ margin-bottom:38px; }
  .section-head p{ font-size:1rem; }
  .problem-grid{ grid-template-columns:1fr; }
  .example-grid{ grid-template-columns:1fr; }
  .example-cta{ flex-direction:column; align-items:stretch; padding:22px 20px; }
  .example-cta .btn{ width:100%; white-space:normal; text-align:center; }
  .workflow-board{ padding:18px; box-shadow:6px 6px 0 var(--navy-900); }
  .workflow-row{ grid-template-columns:34px minmax(0,1fr); }
  .workflow-state{ grid-column:2; justify-self:start; }
  .expansion-grid{ grid-template-columns:1fr; }
  .process-steps{ grid-template-columns:1fr; gap:32px; }
  .process-path{ margin-top:42px; }
  .process-loop{ margin-top:24px; }
  .back-to-top{ width:44px; height:44px; right:14px; bottom:14px; }
  .kontakt-hero{ padding-bottom:96px; }
}

@media (max-width:360px){
  .site-header .header-cta{ display:none; }
  .site-header .brand{ min-width:0; max-width:230px; }
  .site-header .brand > span{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .nav-toggle{ width:42px; height:42px; flex:0 0 42px; }
  .hero h1{ font-size:2rem; }
}

/* =========================================================
   Cookie-/Datenschutzhinweis — keine Tracking-Cookies
   ========================================================= */
.cookie-notice{
  position:fixed;
  z-index:1200;
  left:50%;
  bottom:22px;
  width:min(1120px,calc(100% - 32px));
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  padding:17px 18px;
  color:#fff;
  background:rgba(6,22,33,.97);
  border:1px solid rgba(143,233,221,.38);
  border-radius:18px;
  box-shadow:0 18px 55px rgba(6,22,33,.3);
  opacity:0;
  transform:translate(-50%,18px);
  transition:opacity .24s ease,transform .24s var(--ease-wave);
}
.cookie-notice.is-visible{ opacity:1; transform:translate(-50%,0); }
.cookie-notice-icon{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  color:var(--navy-950);
  background:var(--aqua-300);
  font-weight:900;
}
.cookie-notice-copy strong{ display:block; margin-bottom:3px; font-family:var(--font-display); font-size:1rem; }
.cookie-notice-copy p{ margin:0; color:rgba(255,255,255,.72); font-size:.86rem; line-height:1.45; }
.cookie-notice-actions{ display:flex; align-items:center; justify-content:flex-end; gap:10px; flex-wrap:wrap; }
.cookie-notice .cookie-link{ color:var(--aqua-300); font-weight:700; font-size:.88rem; text-decoration:underline; text-underline-offset:3px; }
.cookie-notice .btn{ min-height:44px; padding:11px 20px; white-space:nowrap; }
.cookie-notice .btn-ghost{ color:#fff; border-color:rgba(255,255,255,.58); background:transparent; }
.cookie-notice .btn-ghost:hover{ color:var(--navy-950); background:#fff; border-color:#fff; }
.cookie-settings-link{padding:0;border:0;background:none;color:inherit;font:inherit;cursor:pointer}
.cookie-settings-link:hover{color:var(--aqua-300)}

@media (max-width:760px){
  .cookie-notice{
    bottom:10px;
    width:calc(100% - 20px);
    grid-template-columns:auto minmax(0,1fr);
    gap:11px 12px;
    padding:15px;
    border-radius:16px;
  }
  .cookie-notice-icon{ width:34px; height:34px; }
  .cookie-notice-copy strong{ font-size:.94rem; }
  .cookie-notice-copy p{ font-size:.79rem; }
  .cookie-notice-actions{ grid-column:1 / -1; justify-content:flex-end; }
  .cookie-notice .btn{ flex:1; max-width:190px; }
}

@media (prefers-reduced-motion:reduce){
  .cookie-notice{ transition:none; }
}

.choice-subhead{
  margin:26px 0 14px;
  font-size:1rem;
  color:var(--navy-900);
}
.choice-subhead:first-of-type{ margin-top:0; }
.funnel-optional-note{ margin-top:26px; }
.funnel-optional-note textarea{ min-height:110px; }
.funnel-card .choice-card{ min-height:62px; }
.funnel-step-kicker{display:inline-flex;margin-bottom:18px;padding:7px 11px;border-radius:999px;background:var(--sand-200);color:var(--navy-800);font-size:.75rem;font-weight:750;letter-spacing:.05em}
.funnel-intro>p{max-width:620px;font-size:1.08rem}
.funnel-intro-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:28px 0 8px}
.funnel-intro-benefits li{display:flex;align-items:center;gap:9px;padding:14px;border-radius:14px;background:var(--foam-100);color:var(--navy-800);font-size:.9rem;font-weight:650}
.funnel-intro-benefits svg{width:19px;height:19px;flex:0 0 auto;color:var(--aqua-600)}
.funnel-actions-start{align-items:center}
.funnel-time{display:flex;align-items:center;gap:8px;color:var(--navy-700);font-size:.85rem}
.funnel-time svg{width:18px;height:18px;color:var(--aqua-600)}
.size-grid{grid-template-columns:repeat(3,1fr)}
.trade-grid{grid-template-columns:repeat(2,1fr)}
.trade-grid .choice-wide{grid-column:1 / -1}
.time-grid,.goal-grid{grid-template-columns:repeat(2,1fr)}
.field-help{display:block;margin-top:8px;color:var(--navy-700);font-size:.84rem}
.challenge-field textarea{min-height:180px}

@media (max-width:760px){
  .kontakt-hero h1{ font-size:clamp(2rem,10vw,2.75rem); }
  .funnel-wrap{ margin-top:-62px; }
  .funnel-progress{ margin-bottom:26px; }
  .funnel-step h2{ font-size:1.4rem; }
  .funnel-step > p{ margin-bottom:22px; }
  .choice-grid{ gap:10px; }
  .choice-grid.single{ grid-template-columns:1fr 1fr; }
  .funnel-card .choice-card{ min-height:54px; padding:12px; }
  .funnel-intro-benefits{grid-template-columns:1fr}
  .funnel-actions-start{align-items:stretch}
  .funnel-time{justify-content:center}
  .size-grid,.trade-grid,.time-grid,.goal-grid{grid-template-columns:1fr}
  .trade-grid .choice-wide{grid-column:auto}
  .challenge-field textarea{min-height:150px}
  .success-next{padding:20px}
}
