/* =========================================================================
   swissnautix — Website (Go-Live)
   Stilrichtung: "Nordic × Atelier-Light" — ruhig-editorial, viel Weissraum,
   heller Papier-Canvas mit prominentem Digital-Cyan, hoher Lesekontrast.
   Corporate Design: Montserrat · Deep Petrol #1C5870 · Digital Cyan #7BBBCA ·
   Swissness Red #E21C28 (nur Schweizerkreuz + priorisierte Interaktion).
   Progressive Enhancement — Seite funktioniert ohne JS (/js/main.js).
   ========================================================================= */

:root {
  /* ---- Corporate colours ---- */
  --petrol:      #1C5870;   /* Primärfarbe — Titel, Logo, dunkle Bänder */
  --petrol-600:  #184C60;
  --petrol-800:  #0F3B4C;
  --petrol-900:  #0A2A37;   /* tiefstes Marine für Footer / dunkle Flächen */

  --cyan:        #7BBBCA;   /* Sekundärfarbe — DAS helle Blau, prominent */
  --cyan-ink:    #2F7D92;   /* dunkleres Cyan für Cyan-als-Text auf Hell (Kontrast) */
  --cyan-soft:   #EAF3F5;   /* Cyan-Wash für alternierende Sektionen */
  --cyan-soft-2: #DDECF0;

  --red:         #E21C28;   /* Swissness Red — NUR Kreuz + Prio-Interaktion/Fehler */

  --white:       #FFFFFF;
  --paper:       #F6F9FA;   /* Seiten-Canvas (kühl-hell, Hauch Papier) */

  /* ---- Ink / text (hoher Kontrast für gute Lesbarkeit) ---- */
  --ink:         #14232B;   /* Fliesstext / primär */
  --ink-2:       #45606C;   /* sekundär */
  --ink-3:       #78909B;   /* tertiär / Captions */

  /* ---- Hairlines ---- */
  --hair:        #E2EBEE;
  --hair-strong: #CDDBE0;

  /* main.js referenziert --c-light (TCO-Slider-Füllung / Akzent auf Dunkel) */
  --c-light:     #7BBBCA;

  --warn:        #E2A32B;   /* Status „fällig" — nicht Marke, nur UI-Signal */
  --ok:          #2E8B57;

  /* ---- Layout ---- */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 68px);
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 24px;

  /* ---- Type ---- */
  --sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Montserrat", system-ui, -apple-system, sans-serif;

  --shadow-nav: 0 1px 0 var(--hair);
  --shadow-nav-scrolled: 0 8px 30px rgba(16, 59, 76, 0.10);
  --shadow-card: 0 1px 2px rgba(16, 59, 76, 0.05);
  --shadow-lift: 0 22px 52px rgba(16, 59, 76, 0.13);
  --shadow-phone: 0 34px 70px rgba(10, 42, 55, 0.28);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--petrol); text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--petrol);
  margin: 0;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--petrol); color: #fff;
  padding: 12px 18px; border-radius: 0 0 10px 0; z-index: 2000;
}
.skip:focus { left: 0; }

/* ============================================================ TYPOGRAPHY */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--cyan); border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.eyebrow-flag { display: inline-block; width: 15px; height: 15px; border-radius: 3px; vertical-align: -2px; }
.nowrap-flag { white-space: nowrap; }

.lead {
  font-size: clamp(17.5px, 1.7vw, 20px);
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 400;
}

.section-pad { padding-block: clamp(52px, 7.5vw, 100px); }
.bg-alt { background: var(--cyan-soft); }

.section-head { max-width: 800px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(31px, 4.6vw, 54px); }
.section-head .lead { margin-top: 22px; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 17px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

.btn-primary { background: var(--petrol); color: #fff; }
.btn-primary:hover { background: var(--petrol-600); box-shadow: var(--shadow-lift); }

.btn-outline { background: transparent; color: var(--petrol); border-color: var(--hair-strong); }
.btn-outline:hover { border-color: var(--petrol); background: rgba(28, 88, 112, 0.05); }

.btn-light { background: #fff; color: var(--petrol); }
.btn-light:hover { background: var(--cyan-soft); }

.btn-sm { padding: 12px 21px; font-size: 14px; }

.on-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.on-dark .btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(123,187,202,0.10); }

/* ============================================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(246, 249, 250, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.nav .container { display: flex; align-items: center; gap: 24px; min-height: 92px; transition: min-height 0.35s var(--ease); }
.nav.scrolled { background: rgba(246, 249, 250, 0.96); box-shadow: var(--shadow-nav-scrolled); }
.nav.scrolled .container { min-height: 64px; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { width: auto; height: 76px; transition: height 0.35s var(--ease); }
.nav.scrolled .nav-logo img { height: 58px; }

.nav nav { flex: 1; display: flex; justify-content: center; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav-links > li > a, .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 9px 13px; border-radius: 9px; background: none; border: none; cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links > li > a:hover, .dropdown-toggle:hover { color: var(--petrol); background: rgba(28, 88, 112, 0.06); }
.caret { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.nav-cta-mobile { display: none; }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-login { font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 8px 4px; }
.nav-login:hover { color: var(--petrol); }

.lang-switch { display: flex; align-items: center; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-3); }
.lang-switch a { color: var(--ink-3); padding: 5px 7px; border-radius: 6px; }
.lang-switch a.active { color: var(--petrol); }
.lang-switch span[title] { cursor: default; }
.lang-switch .sep { color: var(--hair-strong); }

.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 218px;
  list-style: none; margin: 0; padding: 8px;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s; z-index: 20;
}
.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown-menu a { display: block; font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 10px 12px; border-radius: 7px; }
.dropdown-menu a:hover { background: var(--cyan-soft); color: var(--petrol); }

/* Sprachwechsler im Header (CSS-only Dropdown: Hover auf Desktop, Tap/Fokus auf Mobile) */
.lang-dd { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-2);
  padding: 7px 10px; border-radius: 9px; background: none; border: 1px solid transparent; cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.lang-btn:hover, .lang-dd:focus-within .lang-btn { color: var(--petrol); background: rgba(28, 88, 112, 0.06); }
.lang-btn .lang-globe { opacity: 0.9; }
.lang-btn .caret { width: 13px; height: 13px; transition: transform 0.25s var(--ease); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 190px;
  list-style: none; margin: 0; padding: 8px;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s; z-index: 30;
}
.lang-dd:hover .lang-menu, .lang-dd:focus-within .lang-menu, .lang-dd.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dd:hover .caret, .lang-dd:focus-within .caret, .lang-dd.open .caret { transform: rotate(180deg); }
.lang-dd.open .lang-btn { color: var(--petrol); background: rgba(28, 88, 112, 0.06); }
.lang-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 9px 12px; border-radius: 7px;
}
.lang-menu a:hover { background: var(--cyan-soft); color: var(--petrol); }
.lang-menu a.active { color: var(--petrol); font-weight: 600; }
.lang-menu .lang-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; color: var(--ink-3); }
.lang-menu a.active .lang-tag { color: var(--petrol); }

.nav-toggle {
  display: none; width: 38px; height: 38px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--hair-strong); border-radius: 9px; color: var(--petrol); cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; overflow: visible; }
/* Hamburger -> X Animation beim Öffnen */
.nav-toggle svg line {
  transition: transform 0.34s var(--ease), opacity 0.2s var(--ease);
  transform-box: fill-box;
  transform-origin: center;
}
.nav.mobile-open .nav-toggle svg line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.mobile-open .nav-toggle svg line:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.nav.mobile-open .nav-toggle svg line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ============================================================ HERO */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 90% at 82% -8%, rgba(123,187,202,0.34), transparent 58%),
    radial-gradient(70% 60% at -5% 20%, rgba(123,187,202,0.14), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 66%);
  padding-block: clamp(56px, 8vw, 116px) clamp(72px, 10vw, 140px);
}
.hero-bg { position: absolute; inset: auto 0 -2px 0; z-index: 0; opacity: 0.45; pointer-events: none; }
.hero-bg img { width: 100%; height: auto; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 6vw, 84px); align-items: center;
}
/* Grid-Kinder dürfen unter ihre Min-Content-Breite schrumpfen (kein horizontales Overflow) */
.hero-grid > *, .about-head > *, .dna > *, .vm-grid > *, .feature > *, .tco-grid > *,
.pillars > *, .prices > *, .footer-grid > * { min-width: 0; }
.hero-copy h1 {
  font-size: clamp(37px, 5.6vw, 70px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 26px;
}
/* Unterstrich per background -> darf umbrechen (mehrsprachig: FR/IT-Phrasen sind länger). */
.hero-copy h1 .em {
  color: var(--cyan-ink);
  background-image: linear-gradient(rgba(123, 187, 202, 0.42), rgba(123, 187, 202, 0.42));
  background-repeat: no-repeat;
  background-size: 100% 0.16em;
  background-position: 0 0.86em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-copy .lead { max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--hair);
}
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.trust-item svg { width: 19px; height: 19px; color: var(--cyan-ink); flex-shrink: 0; }
.trust-item .ch-flag { color: inherit; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before {
  content: ""; position: absolute; width: 118%; height: 82%; left: -9%; top: 12%;
  background: radial-gradient(circle at 50% 50%, rgba(123,187,202,0.42), transparent 66%);
  z-index: 0; filter: blur(6px);
}

/* ============================================================ PHONE DEVICE (Screenshot-Platzhalter im Handy-Format) */
.phone {
  position: relative; z-index: 1;
  width: 100%; max-width: 300px;
  aspect-ratio: 390 / 844;
  background: #0C2530;
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--shadow-phone), 0 0 0 2px rgba(255,255,255,0.04) inset;
  transition: transform 0.5s var(--ease);
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 42%; height: 26px; background: #0C2530; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone::after { /* speaker dot */
  content: ""; position: absolute; top: 27px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 5px; background: #223b46; border-radius: 3px; z-index: 4;
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden; background: var(--paper);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.feature-media .phone:hover { transform: translateY(-8px); }
/* soft tint behind media phones */
.feature-media { position: relative; display: flex; justify-content: center; }
.feature-media::before {
  content: ""; position: absolute; width: 78%; height: 70%; top: 15%; left: 11%;
  background: radial-gradient(circle at 50% 40%, rgba(123,187,202,0.30), transparent 68%);
  z-index: 0;
}

/* ============================================================ DEVICE-TOGGLE (App/Desktop-Umschalter) */
.feature-media.has-toggle { flex-direction: column; align-items: center; gap: 22px; }
.device-stage { position: relative; z-index: 1; width: 100%; }
/* Fallback ohne JS: nur die aktive Ansicht im Fluss (keine Überlagerung) */
.device-view { display: flex; justify-content: center; width: 100%; }
.device-view:not(.is-active) { display: none; }
/* Mit JS: beide Ansichten gestapelt, weicher Crossfade + animierte Stage-Höhe */
.js .device-stage { transition: height 0.5s var(--ease); }
.js .device-view {
  position: absolute; top: 0; left: 0; right: 0; display: flex;
  opacity: 0; visibility: hidden; transform: scale(0.96) translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease), visibility 0s linear 0.4s;
}
.js .device-view.is-active {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity 0.45s var(--ease), transform 0.5s var(--ease), visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
  .js .device-stage, .js .device-view { transition: none; }
}
.browser {
  width: 100%; max-width: 540px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--hair); background: #fff; box-shadow: var(--shadow-lift);
}
.browser img { width: 100%; height: auto; display: block; }
.device-toggle {
  position: relative; z-index: 2; display: inline-flex; gap: 4px; padding: 5px;
  background: var(--white); border: 1px solid var(--hair); border-radius: 100px; box-shadow: var(--shadow-card);
}
.bg-alt .device-toggle { background: var(--paper); }
.device-toggle button {
  display: inline-flex; align-items: center; gap: 8px; border: none; background: none;
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink-2);
  padding: 9px 22px; border-radius: 100px; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.device-toggle button svg { width: 16px; height: 16px; }
.device-toggle button.active { background: var(--petrol); color: #fff; }
.device-toggle button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

/* ============================================================ PILLARS */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: clamp(48px, 7vw, 76px); max-width: 900px; margin-inline: auto; }
.pillar {
  position: relative; background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 42px 34px; box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--cyan); }
.pillar-icon {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  border-radius: 15px; background: var(--cyan-soft); color: var(--petrol); margin-bottom: 24px;
}
.pillar-icon svg { width: 29px; height: 29px; }
.pillar .tag { display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan-ink); margin-bottom: 12px; }
.pillar h3 { font-size: 22px; margin-bottom: 14px; }
.pillar p { color: var(--ink-2); font-size: 15.5px; margin: 0; }

/* ============================================================ FEATURES (Zick-Zack) */
.features-head { margin-bottom: clamp(56px, 8vw, 92px); }
.feature {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(36px, 6vw, 92px);
  align-items: center; padding-block: clamp(52px, 7vw, 88px); border-top: 1px solid var(--hair);
}
.feature:first-of-type { border-top: none; }
.feature.flip .feature-copy { order: 2; }
.feature.flip .feature-media { order: 1; }
.feature-copy .num {
  display: block; font-family: var(--display); font-size: clamp(46px, 6.5vw, 82px);
  font-weight: 700; line-height: 1; color: var(--cyan); opacity: 0.5; letter-spacing: -0.04em; margin-bottom: 8px;
}
.feature-copy h3 { font-size: clamp(24px, 3.1vw, 34px); display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.feature-copy .sub { font-size: 17px; font-weight: 600; color: var(--cyan-ink); margin: 12px 0 16px; }
.feature-copy > p { color: var(--ink-2); margin: 0 0 18px; }
.badge-soon {
  display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan-ink); background: var(--cyan-soft); border: 1px solid var(--cyan); padding: 4px 11px; border-radius: 100px;
}
.feature ul.f-bullets { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 12px; }
.feature ul.f-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink); font-weight: 500; }
.feature ul.f-bullets svg { width: 20px; height: 20px; color: var(--cyan-ink); flex-shrink: 0; margin-top: 3px; }
.value {
  display: flex; gap: 13px; align-items: flex-start; padding: 18px 20px;
  background: var(--cyan-soft); border: 1px solid var(--hair); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--ink-2);
}
.bg-alt .value { background: var(--white); }
.value svg { width: 20px; height: 20px; color: var(--cyan-ink); flex-shrink: 0; margin-top: 3px; }
.value strong { color: var(--petrol); font-weight: 600; }

/* Werft sub-lead */
.werft-lead {
  margin-top: 44px; padding: 30px 34px; background: var(--petrol-900); color: #fff; border-radius: var(--radius);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.werft-lead p { margin: 0; color: rgba(255,255,255,0.82); max-width: 640px; }
.werft-lead .eyebrow { color: var(--cyan); margin: 0 0 10px; }
.werft-lead .eyebrow::before { background: var(--cyan); }
.werft-lead h3 { color: #fff; font-size: 23px; }
/* Konkrete Werft-Gewinne (Karten unter dem Banner) */
.werft-gains { margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.werft-gains > * { min-width: 0; }
.wgain { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius-md); padding: clamp(20px, 2.6vw, 28px); box-shadow: var(--shadow-card); }
.bg-alt .wgain { background: var(--paper); }
.wgain .ic { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--cyan-soft); color: var(--petrol); margin-bottom: 14px; }
.wgain .ic svg { width: 22px; height: 22px; }
.wgain h4 { font-size: 17px; margin-bottom: 6px; }
.wgain p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 720px) { .werft-gains { grid-template-columns: 1fr; } }

/* ============================================================ FLOW / All-in-One Prozess */
.flow { margin-top: clamp(40px, 6vw, 72px); }
.flow-track {
  position: relative; height: 340px; max-width: 1040px; margin: 0 auto;
}
/* Route (gestrichelt, Seekarten-Look) + zurückgelegte Strecke */
.flow-line, .flow-progress {
  position: absolute; top: 50%; height: 2px; transform: translateY(-50%);
}
.flow-line { left: 0; right: 0; background: repeating-linear-gradient(90deg, var(--hair-strong) 0 7px, transparent 7px 15px); }
.flow-progress { left: 0; width: 8%; background: repeating-linear-gradient(90deg, var(--cyan-ink) 0 7px, transparent 7px 15px); transition: width 0.9s var(--ease); z-index: 1; }
/* Boot – schwebt über der Route, nie hinter dem Wegpunkt */
.flow-boat {
  position: absolute; top: 50%; left: 8%; color: var(--cyan-ink); z-index: 6;
  transform: translate(-50%, -92%); transition: left 0.9s var(--ease); will-change: left;
}
.flow-boat svg { display: block; filter: drop-shadow(0 5px 7px rgba(16,59,76,0.20)); animation: boatBob 3.2s ease-in-out infinite; }
@keyframes boatBob { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-4px) rotate(2deg); } }
/* Stationen */
.flow-stop {
  position: absolute; top: 50%; left: var(--x); transform: translate(-50%, -50%);
  width: 0; height: 0; background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; z-index: 4;
}
/* Kein Wegpunkt-Marker: die Abzweigung der gestrichelten Linie zur Karte IST der Punkt */
.flow-node { display: none; }
/* Karten */
.flow-card {
  position: absolute; left: 0; width: 200px; transform: translateX(-50%); text-align: left;
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius-sm);
  padding: 15px 17px; box-shadow: var(--shadow-card);
  opacity: 0.42; filter: saturate(0.6); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.flow-stop.is-owner .flow-card { bottom: 30px; }
.flow-stop.is-yard .flow-card { top: 30px; }
.flow-stop.is-active .flow-card { opacity: 1; filter: none; box-shadow: var(--shadow-lift); }
.flow-stop.is-owner.is-active .flow-card { transform: translateX(-50%) translateY(-6px); }
.flow-stop.is-yard.is-active .flow-card { transform: translateX(-50%) translateY(6px); }
.flow-stop:hover .flow-card, .flow-stop:focus-visible .flow-card { opacity: 1; filter: none; }
/* Verbinder Karte <-> Node */
.flow-card::after {
  content: ""; position: absolute; left: 50%; width: 0; height: 30px; border-left: 2px dashed var(--hair-strong); transform: translateX(-50%);
}
.flow-stop.is-owner .flow-card::after { top: 100%; }
.flow-stop.is-yard .flow-card::after { bottom: 100%; }
.flow-stop.is-active .flow-card::after { border-color: var(--cyan-ink); }
.flow-actor {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan-ink); margin-bottom: 6px;
}
.flow-stop.is-owner .flow-actor { color: var(--petrol); }
.flow-card strong { display: block; font-size: 15.5px; color: var(--ink); line-height: 1.3; }
.flow-desc { display: block; font-size: 13px; color: var(--ink-2); margin-top: 5px; line-height: 1.45; }
.flow-ping {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 11px;
  font-size: 11px; font-weight: 700; color: var(--cyan-ink);
  background: var(--cyan-soft); border-radius: 100px; padding: 4px 10px;
}
.flow-ping::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-ink); }
.flow-stop.is-active .flow-ping::before { animation: flowBell 1.4s ease-out infinite; }
@keyframes flowBell { 0% { box-shadow: 0 0 0 0 rgba(47,125,146,0.5); } 100% { box-shadow: 0 0 0 8px rgba(47,125,146,0); } }
/* Tablet / Mobile: vertikale, immer sichtbare Liste */
@media (max-width: 1120px) {
  .flow-track { height: auto; max-width: 480px; display: flex; flex-direction: column; gap: 14px; padding-left: 0; }
  .flow-line, .flow-progress, .flow-boat, .flow-node { display: none; }
  .flow-stop {
    display: block; position: relative; top: auto; left: auto; transform: none; width: 100%; height: auto; cursor: default;
  }
  .flow-card {
    display: block; position: relative; left: auto; top: auto; bottom: auto; width: 100%; transform: none;
    opacity: 1; filter: none; box-shadow: var(--shadow-card);
  }
  .flow-stop.is-owner.is-active .flow-card, .flow-stop.is-yard.is-active .flow-card { transform: none; }
  .flow-stop.is-owner .flow-card, .flow-stop.is-yard .flow-card { top: auto; bottom: auto; }
  .flow-card::after { display: none; }
  .flow-stop.is-yard .flow-card { border-left: 3px solid var(--cyan); }
  .flow-stop.is-owner .flow-card { border-left: 3px solid var(--petrol); }
}
@media (prefers-reduced-motion: reduce) {
  .flow-boat, .flow-boat svg, .flow-stop.is-active .flow-node::after, .flow-stop.is-active .flow-ping::before { animation: none; }
  .flow-card { opacity: 1; filter: none; }
}

/* ============================================================ TCO */
.tco { background: var(--petrol-900); color: #fff; border-radius: var(--radius-lg); padding: clamp(38px, 5vw, 66px); box-shadow: var(--shadow-lift); }
.tco-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 66px); align-items: center; }
.tco .eyebrow { color: var(--cyan); }
.tco .eyebrow::before { background: var(--cyan); }
.tco h3 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.tco p { color: rgba(255,255,255,0.80); }
.tco strong { color: var(--cyan); }
.tco label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin: 30px 0 14px; }
.tco label.tco-label { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.tco-boats { text-transform: none; letter-spacing: normal; font-size: 14px; color: rgba(255,255,255,0.62); }
.tco-boats strong { font-size: 22px; color: var(--cyan); margin-right: 4px; }
.tco-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: rgba(255,255,255,0.18); outline: none; cursor: pointer; }
.tco-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 5px solid var(--cyan); box-shadow: 0 4px 12px rgba(0,0,0,0.3); cursor: grab; }
.tco-slider::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 5px solid var(--cyan); cursor: grab; }
.tco-scale { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 12px; }
.tco-readout { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius); padding: 30px; }
.tco-readout .row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.tco-readout .row:last-of-type { border-bottom: none; }
.tco-readout .k { font-size: 14.5px; color: rgba(255,255,255,0.74); white-space: nowrap; }
.tco-readout .v { font-family: var(--display); font-weight: 700; font-size: 20px; white-space: nowrap; }
.tco-readout .v.big { font-size: clamp(20px, 2.2vw, 28px); color: var(--cyan); white-space: nowrap; }
.tco-note { font-size: 12.5px; color: rgba(255,255,255,0.48); margin: 16px 0 0; line-height: 1.5; }

/* ============================================================ ABOUT / FOUNDER (horizontale Bänder) */
.about > * + * { margin-top: clamp(40px, 6vw, 72px); }

/* Band 1 — Portrait + Intro */
.about-head { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.founder-photo { position: relative; }
.founder-photo img { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); border: 1px solid var(--hair); }
.founder-badge {
  position: absolute; left: 22px; bottom: 22px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border: 1px solid var(--hair); border-radius: var(--radius-sm); padding: 14px 20px; box-shadow: var(--shadow-card);
}
.founder-badge .n { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--petrol); }
.founder-badge .r { font-size: 13px; color: var(--cyan-ink); font-weight: 500; }
.about-intro h2 { font-size: clamp(28px, 4vw, 46px); margin: 4px 0 18px; }
.about-intro .lead { margin-bottom: 30px; }

/* Band 2 — DNA-Karten */
.dna { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 28px); }
.dna-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius-md);
  padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadow-card);
}
.bg-alt .dna-item { background: var(--paper); }
.dna-item .ic { width: 50px; height: 50px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--cyan-soft); color: var(--petrol); }
.dna-item .ic svg { width: 25px; height: 25px; }
.dna-item h4 { font-size: 18px; margin-bottom: 6px; }
.dna-item p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* Band 3 — Philosophie-Zitat */
.about-quote {
  position: relative; margin: 0; text-align: center; max-width: 860px; margin-inline: auto;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 5vw, 56px);
}
.about-quote .q-mark {
  display: block; font-family: var(--display); font-weight: 700; line-height: 0.7;
  font-size: clamp(56px, 9vw, 96px); color: var(--cyan); opacity: 0.55; margin-bottom: 4px;
}
.about-quote p { font-size: clamp(19px, 2.4vw, 25px); line-height: 1.55; color: var(--petrol); font-weight: 500; margin: 0; }
.about-quote footer { margin-top: 20px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-ink); }

/* Band 4 — Vision & Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 28px); }
.vm { border-left: 3px solid var(--cyan); padding: 6px 0 6px 22px; }
.vm .lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-ink); margin-bottom: 8px; }
.vm p { margin: 0; font-size: 15.5px; color: var(--ink); font-style: italic; line-height: 1.6; }

.founder-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================ PRICING */
.bill-toggle { display: inline-flex; gap: 4px; padding: 5px; background: var(--white); border: 1px solid var(--hair); border-radius: 100px; margin-top: 30px; }
.bill-toggle button { border: none; background: none; font-size: 14.5px; font-weight: 600; color: var(--ink-2); padding: 10px 26px; border-radius: 100px; cursor: pointer; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.bill-toggle button.active { background: var(--petrol); color: #fff; }
.bill-save { display: block; margin-top: 14px; font-size: 14px; color: var(--cyan-ink); font-weight: 600; min-height: 20px; }
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: stretch; }
.price {
  position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--hair);
  border-radius: var(--radius-lg); padding: 40px 32px; box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--cyan); }
.price.featured { border-color: var(--petrol); border-width: 2px; box-shadow: 0 24px 54px rgba(16, 59, 76, 0.16); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--petrol); padding: 7px 18px; border-radius: 100px; }
.price li .soon { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cyan-ink); background: var(--cyan-soft); border: 1px solid var(--cyan); padding: 2px 7px; border-radius: 100px; margin-left: 7px; white-space: nowrap; }
.price li.is-soon { color: var(--ink-2); }
.price-name { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--petrol); }
.price-tag-sub { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan-ink); font-weight: 600; margin-top: 4px; }
.amount-row { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 6px; }
.amount { font-family: var(--display); font-weight: 700; font-size: 42px; color: var(--petrol); letter-spacing: -0.02em; }
.period { font-size: 15px; color: var(--ink-3); }
.who { font-size: 14.5px; color: var(--ink-2); margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--hair); }
.price ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; flex: 1; }
.price ul li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink); }
.price ul svg { width: 19px; height: 19px; color: var(--cyan-ink); flex-shrink: 0; margin-top: 2px; }
.price .btn { width: 100%; }

.b2b { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; background: var(--petrol-900); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 4vw, 54px); }
.b2b .eyebrow { color: var(--cyan); }
.b2b .eyebrow::before { background: var(--cyan); }
.b2b h3 { color: #fff; font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.b2b p { color: rgba(255,255,255,0.80); margin: 0; max-width: 660px; }
.b2b .price-line { color: var(--cyan); font-weight: 700; }
.b2b-cta { flex-shrink: 0; }

/* ============================================================ SICHERHEIT & DATENSCHUTZ */
.security {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 74px) clamp(28px, 5vw, 62px);
  background:
    radial-gradient(90% 120% at 82% -8%, rgba(123,187,202,0.30), rgba(123,187,202,0) 60%),
    var(--petrol-900);
  box-shadow: var(--shadow-lift);
}
.security-head { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }
.security .eyebrow { color: var(--cyan); justify-content: center; }
.security .eyebrow::before { background: var(--cyan); }
.security h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); }
.security-head > p { color: rgba(255,255,255,0.85); font-size: clamp(16px, 1.6vw, 18px); margin: 18px 0 0; }
.security-points {
  position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 28px); margin-top: clamp(36px, 5vw, 54px);
  max-width: 860px; margin-inline: auto;
}
.security-points > * { min-width: 0; }
.spoint { text-align: center; }
.spoint .ic {
  width: 54px; height: 54px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center;
  border-radius: 15px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: var(--cyan);
}
.spoint .ic svg { width: 26px; height: 26px; }
.spoint h4 { color: #fff; font-size: 16px; margin-bottom: 6px; }
.spoint p { color: rgba(255,255,255,0.70); font-size: 13.5px; line-height: 1.55; margin: 0; }
@media (max-width: 860px) { .security-points { grid-template-columns: 1fr 1fr; gap: 26px 20px; } }
@media (max-width: 460px) { .security-points { grid-template-columns: 1fr; } }

/* ============================================================ COMING SOON / AUSBLICK */
.soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: clamp(48px, 7vw, 76px); }
.soon-grid > * { min-width: 0; }
.soon-card {
  position: relative; background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 40px 32px 34px; box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.soon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--cyan); }
.soon-card .badge-soon { position: absolute; top: 22px; right: 22px; }
.soon-icon {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  border-radius: 15px; background: var(--cyan-soft); color: var(--petrol); margin-bottom: 24px;
}
.soon-icon svg { width: 29px; height: 29px; }
.soon-card h3 { font-size: 22px; margin-bottom: 8px; padding-right: 96px; }
.soon-card .sub { font-size: 14.5px; font-weight: 600; color: var(--cyan-ink); margin: 0 0 12px; }
.soon-card > p:last-child { color: var(--ink-2); font-size: 15px; margin: 0; }
@media (max-width: 900px) { .soon-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* ============================================================ CTA BAND */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  border-radius: var(--radius-lg); padding: clamp(54px, 8vw, 98px) clamp(28px, 5vw, 62px);
  /* Glow als prozentualer Layer -> skaliert weich bei jedem Seitenverhältnis (Mobile wie Desktop) */
  background:
    radial-gradient(90% 120% at 82% -8%, rgba(123,187,202,0.30), rgba(123,187,202,0) 60%),
    var(--petrol);
}
.cta-wave { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; opacity: 0.14; pointer-events: none; }
.cta-band .eyebrow { color: var(--cyan); position: relative; z-index: 1; }
.cta-band .eyebrow::before { background: var(--cyan); }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.5vw, 52px); position: relative; z-index: 1; }
.cta-band > p { position: relative; z-index: 1; max-width: 560px; margin: 20px auto 0; color: rgba(255,255,255,0.85); font-size: 18px; }
.cta-band .hero-cta { position: relative; z-index: 1; justify-content: center; margin-top: 36px; }

/* ============================================================ FOOTER */
.footer { background: var(--petrol-900); color: rgba(255,255,255,0.7); padding-block: clamp(58px, 8vw, 90px) 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: 40px; }
.footer-brand img { height: 74px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 320px; margin: 0; }
.footer h4 { color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-nav ul, .footer-legal ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-nav a, .footer-legal a { color: rgba(255,255,255,0.7); font-size: 14.5px; transition: color 0.2s var(--ease); }
.footer-nav a:hover, .footer-legal a:hover { color: var(--cyan); }
.news p { font-size: 14px; margin: 0 0 16px; }
.news-form { display: flex; gap: 8px; }
.news-form input { flex: 1; min-width: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 11px; padding: 13px 15px; color: #fff; font-family: inherit; font-size: 14.5px; }
.news-form input::placeholder { color: rgba(255,255,255,0.42); }
.news-form input:focus { outline: none; border-color: var(--cyan); }
.news-form button { background: var(--cyan); color: var(--petrol-900); border: none; border-radius: 11px; padding: 13px 22px; font-weight: 700; font-size: 14.5px; cursor: pointer; transition: background 0.2s var(--ease); }
.news-form button:hover { background: #fff; }
.news-hint { font-size: 12.5px; color: rgba(255,255,255,0.5); margin: 10px 0 0; }
.footer-contact { margin-top: 0; }
/* Abstand nur, wenn der Newsletter sichtbar ist (sonst Kontakt-Titel auf Höhe der übrigen Footer-Titel) */
.news-signup:not(.is-hidden) + .footer-contact { margin-top: 26px; }
.footer-contact p { font-size: 14px; line-height: 1.75; }
.footer-contact a { color: var(--cyan); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: clamp(40px, 6vw, 64px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom .copy { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer .lang-switch { color: rgba(255,255,255,0.5); }
.footer .lang-switch a { color: rgba(255,255,255,0.66); }
.footer .lang-switch a.active { color: var(--cyan); }
.footer .lang-switch span[title] { color: rgba(255,255,255,0.32); }
.footer .lang-switch .sep { color: rgba(255,255,255,0.22); }
.is-hidden { display: none !important; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer-trust .trust-item { font-size: 13px; color: rgba(255,255,255,0.62); }
.footer-trust .trust-item svg { width: 16px; height: 16px; color: var(--cyan); }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 11px; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.7); transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease); }
.socials a:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(123,187,202,0.08); }
.socials svg { width: 19px; height: 19px; }

/* ============================================================ LEGAL / SUB-PAGES (faq, impressum …) */
.legal { padding: clamp(64px, 9vw, 108px) 0 clamp(64px, 9vw, 96px); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 10px; }
.legal .updated { color: var(--ink-3); font-size: 14px; margin-bottom: 44px; }
.legal h2 { font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; margin: 44px 0 14px; }
.legal h3 { font-size: 18px; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 14px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--cyan-ink); text-decoration: underline; text-underline-offset: 3px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--petrol); font-weight: 600; font-size: 14px; margin-bottom: 30px; }
.back-link svg { width: 18px; height: 18px; }

/* FAQ (native <details>) */
.faq-list { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); }
.faq-item[open] { box-shadow: var(--shadow-card); border-color: var(--cyan); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--petrol); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { flex: none; width: 24px; height: 24px; color: var(--cyan-ink); transition: transform 0.3s var(--ease); }
.faq-item[open] summary .ic { transform: rotate(45deg); }
.faq-item .a { padding: 0 26px 24px; color: var(--ink-2); }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav nav {
    position: fixed; inset: 0 0 auto 0; top: 100%;
    background: var(--white); border-bottom: 1px solid var(--hair); box-shadow: var(--shadow-lift);
    flex-direction: column; justify-content: flex-start; padding: 18px var(--gut) 28px;
    max-height: calc(100dvh - 64px); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  }
  .nav.mobile-open nav { opacity: 1; visibility: visible; transform: none; }
  .nav-links { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a, .dropdown-toggle { width: 100%; justify-content: space-between; font-size: 16px; padding: 15px 8px; border-radius: 9px; }
  .nav-links > li:not(:last-child) { border-bottom: 1px solid var(--hair); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 8px 8px; min-width: 0; display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown.open .caret { transform: rotate(180deg); }
  .dropdown-menu a { font-size: 15px; padding: 12px 10px; }
  .nav-cta-mobile { display: flex; gap: 12px; padding-top: 16px; border-bottom: none !important; }
  .nav-cta-mobile .nav-login { flex: 1; text-align: center; border: 1px solid var(--hair-strong); border-radius: 100px; padding: 14px; color: var(--petrol); background: none; }
  .nav-cta-mobile .btn { flex: 1; justify-content: center; padding: 15px 20px; font-size: 15px; border-radius: 100px; }
  .nav-cta-mobile .btn-primary { background: var(--petrol); color: #fff; }
  .nav-cta-mobile .btn-primary:hover { background: var(--petrol-600); }
  .nav-right .nav-login, .nav-right > .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  /* Burger rechtsbündig: Menü ist position:fixed (out of flow) -> nur Logo + Burger im Flow */
  .nav .container { justify-content: space-between; gap: 12px; }
  .nav-right { margin-left: auto; }

  .hero-grid { grid-template-columns: 1fr; }
  /* Mobile: zuerst Text, dann Screenshot */
  .hero-visual { order: 0; margin: 8px auto 0; }
  .tco-grid { grid-template-columns: 1fr; }
  .about-head { grid-template-columns: 1fr; gap: 28px; }
  .founder-photo { width: 100%; max-width: 440px; margin-inline: auto; }
  .dna { grid-template-columns: 1fr; }
  .prices { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .pillars { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 12px; }
  .feature .feature-copy, .feature.flip .feature-copy { order: 2; }
  .feature .feature-media, .feature.flip .feature-media { order: 1; margin-bottom: 8px; }
  .vm-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .b2b, .werft-lead { flex-direction: column; align-items: flex-start; }
  .news-form { flex-direction: column; }
  .news-form button { width: 100%; }
  .feature-copy .num { font-size: 40px; }
}

@media (max-width: 480px) {
  body { font-size: 16.5px; }
  .btn { width: 100%; white-space: normal; text-align: center; }
  .hero-cta .btn, .founder-cta .btn, .cta-band .hero-cta .btn { width: 100%; }
  .nav-cta-mobile { flex-direction: column; }
  .phone { max-width: 260px; }
  .trust-row { gap: 10px 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* TCO-Rechner: kompakter; Readout-Zeilen gestapelt (Label oben, Wert gross darunter) */
  .tco { padding: 30px 22px; }
  .tco label { margin-top: 24px; }
  .tco-readout { padding: 22px 20px; }
  .tco-readout .row { flex-direction: column; align-items: flex-start; gap: 5px; padding: 15px 0; }
  .tco-readout .k { font-size: 13.5px; line-height: 1.35; white-space: normal; }
  .tco-readout .v { font-size: 24px; white-space: nowrap; }
  .tco-readout .v.big { font-size: 32px; white-space: nowrap; }
}
