/* ═══════════════════════════════════════════════════════════
   PPWR COCKPIT – Landingpage Stylesheet
   Corporate Design: Deep Forest #2B3A2C | Lime #D4ED31 | Sage #E8F0E3
   Schrift: Inter (selbst-gehostet)
═══════════════════════════════════════════════════════════ */

/* ── Reset & Basis ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-forest:     #2B3A2C;
  --color-forest-mid: #3d5040;
  --color-lime:       #D4ED31;
  --color-lime-dark:  #b8d020;
  --color-sage:       #E8F0E3;
  --color-sage-dark:  #d0deca;
  --color-white:      #ffffff;
  --color-text:       #1a2a1b;
  --color-muted:      #5a6e5b;
  --color-error:      #c0392b;
  --color-border:     #c8d8c4;

  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(43,58,44,.12);
  --shadow-lg:   0 8px 32px rgba(43,58,44,.16);

  --max-width: 1120px;
  --section-gap: 6rem;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-family);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .12s, box-shadow .18s;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--color-lime);
  outline-offset: 3px;
}
.btn:active { transform: scale(.98); }

.btn-sm  { padding: .45rem 1rem;  font-size: .875rem; }
.btn-lg  { padding: .85rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--color-lime);
  color: var(--color-forest);
  border-color: var(--color-lime);
}
.btn-primary:hover {
  background: var(--color-lime-dark);
  border-color: var(--color-lime-dark);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}
.btn-ghost:hover {
  background: var(--color-forest);
  color: var(--color-white);
}
/* Weiße Variante für den Hero (dunkler Hintergrund) */
.btn-ghost--white {
  color: var(--color-white);
  border-color: rgba(255,255,255,.7);
}
.btn-ghost--white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.header--scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(43,58,44,0.10);
}
/* Logo: weiß wenn transparent (auf Hero), dunkel wenn scrolled */
.site-header:not(.header--scrolled) .logo-img {
  filter: brightness(0) invert(1);
}
.site-header.header--scrolled .logo-img {
  filter: none;
}
/* CTA-Button: immer sichtbar */
.site-header:not(.header--scrolled) .header-cta {
  background: var(--color-lime);
  color: var(--color-forest);
  border-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  color: var(--color-forest);
}
.logo-text {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -.01em;
}
.logo-text strong { font-weight: 700; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--color-forest) 0%, var(--color-forest-mid) 100%);
  color: var(--color-white);
  padding: 8rem 0 5rem;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pre-title { margin-bottom: 1.25rem; }

.badge {
  display: inline-block;
  background: rgba(212,237,49,.15);
  color: var(--color-lime);
  border: 1px solid rgba(212,237,49,.3);
  border-radius: 100px;
  padding: .3rem .875rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Mockup */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-mockup {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.mockup-bar {
  background: #f0f0f0;
  padding: .625rem 1rem;
  display: flex;
  gap: .375rem;
  align-items: center;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
}
.mockup-dot:first-child { background: #ff6b6b; }
.mockup-dot:nth-child(2) { background: #ffd93d; }
.mockup-dot:nth-child(3) { background: #6bcb77; }

.mockup-body {
  padding: 1.5rem;
  color: var(--color-text);
}

.mockup-row--header {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.mockup-chip {
  display: inline-block;
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}
.mockup-chip--lime { background: var(--color-lime); color: var(--color-forest); }
.mockup-chip--sage { background: var(--color-sage); color: var(--color-forest); }

.mockup-progress-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mockup-progress-track {
  background: var(--color-sage);
  border-radius: 100px;
  height: 8px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.mockup-progress-fill {
  background: var(--color-lime);
  height: 100%;
  border-radius: 100px;
  transition: width .6s ease;
}

.mockup-steps {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.mockup-step {
  font-size: .8125rem;
  color: var(--color-muted);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-border);
}
.mockup-step--done {
  color: var(--color-forest);
  border-left-color: var(--color-lime);
  background: rgba(212,237,49,.08);
}
.mockup-step--active {
  color: var(--color-forest);
  border-left-color: var(--color-forest);
  background: var(--color-sage);
  font-weight: 600;
}

/* ── Deadline-Banner ────────────────────────────────────── */
.deadline-banner {
  background: var(--color-forest);
  color: var(--color-white);
  padding: 1rem 0;
}

.deadline-inner {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.deadline-icon { flex-shrink: 0; }

.deadline-inner p {
  font-size: .9375rem;
  color: rgba(255,255,255,.9);
}

.deadline-inner strong { color: var(--color-lime); }

/* ── Features ───────────────────────────────────────────── */
.features {
  padding: var(--section-gap) 0;
  background: var(--color-white);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--color-forest);
  text-align: center;
  margin-bottom: .75rem;
}

/* 20% größere Variante für Features-Überschrift */
.section-title--xl {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

/* Gradient-Shimmer für Sektions-Überschriften */
.section-title--gradient {
  background: linear-gradient(
    90deg,
    var(--color-forest) 0%,
    #4a7c59 25%,
    var(--color-lime) 50%,
    #4a7c59 75%,
    var(--color-forest) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer-text 4s linear infinite;
}

@keyframes shimmer-text {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@media (prefers-reduced-motion: reduce) {
  .section-title--gradient {
    animation: none;
    background-position: 0% center;
  }
}

.section-sub {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-forest);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: transform .22s cubic-bezier(0.23,1,0.32,1), box-shadow .22s;
  color: var(--color-white);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(43,58,44,.35);
}

.feature-card--highlight {
  background: var(--color-forest-mid);
  border: 2px solid var(--color-lime);
  color: var(--color-white);
}
.feature-card--highlight h3 { color: var(--color-lime); }
.feature-card--highlight p  { color: rgba(255,255,255,.85); }

.feature-icon {
  margin-bottom: 1.5rem;
}
.feature-icon-svg {
  display: block;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s ease;
  /* Subtile Einatem-Animation im Ruhezustand */
  animation: icon-breathe 3.5s ease-in-out infinite;
}

@keyframes icon-breathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1.04) translateY(-2px); }
}

.feature-card:hover .feature-icon-svg {
  animation: none;
  transform: translateY(-6px) scale(1.12) rotate(3deg);
  filter: drop-shadow(0 8px 16px rgba(212,237,49,0.4));
}
.feature-card--highlight:hover .feature-icon-svg {
  animation: none;
  transform: translateY(-6px) scale(1.12) rotate(-3deg);
  filter: drop-shadow(0 8px 20px rgba(212,237,49,0.55));
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: .625rem;
}

.feature-card p {
  font-size: .9375rem;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.feature-badge {
  display: inline-block;
  margin-top: 1rem;
  background: var(--color-lime);
  color: var(--color-forest);
  border-radius: 100px;
  padding: .2rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Stats ──────────────────────────────────────────────── */
.stats-section {
  background: var(--color-sage);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 2rem;
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stat-divider {
    display: none;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.6);
  box-shadow: 0 2px 16px rgba(43,58,44,.08);
  transition: transform .22s cubic-bezier(0.23,1,0.32,1), box-shadow .22s;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(43,58,44,.15);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-forest);
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-forest) 0%, #4a7c59 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-forest);
  text-align: center;
  max-width: 200px;
  line-height: 1.3;
  margin-top: .1rem;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
}

/* ── Waitlist ───────────────────────────────────────────── */
.waitlist-section {
  padding: var(--section-gap) 0;
  background: var(--color-white);
}

.waitlist-card {
  background: var(--color-sage);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.waitlist-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.waitlist-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-forest);
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

.waitlist-intro p {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Formular */
.waitlist-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-forest);
}

.required { color: var(--color-error); }

.form-group input[type="text"],
.form-group input[type="email"] {
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(43,58,44,.12);
}
.form-group input[type="text"]:invalid:not(:placeholder-shown),
.form-group input[type="email"]:invalid:not(:placeholder-shown) {
  border-color: var(--color-error);
}

/* iOS Textarea-Zoom-Fix */
input[type="text"],
input[type="email"] {
  font-size: 16px !important;
}

.field-error {
  font-size: .8125rem;
  color: var(--color-error);
  min-height: 1.2em;
}

.field-hint {
  font-size: .8125rem;
  color: var(--color-muted);
  margin-top: .25rem;
  padding-left: 1.875rem;
}

/* Checkbox */
.form-group--checkbox { flex-direction: column; gap: .25rem; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: border-color .15s, background .15s;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--color-forest);
  border-color: var(--color-forest);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid var(--color-lime);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
  outline: 3px solid var(--color-lime);
  outline-offset: 2px;
}

.checkbox-text {
  font-size: .9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.link {
  color: var(--color-forest);
  font-weight: 600;
  text-underline-offset: 2px;
}
.link:hover { color: var(--color-forest-mid); }

/* Submit-Button */
.form-footer {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-top: .5rem;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(43,58,44,.3);
  border-top-color: var(--color-forest);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-legal {
  font-size: .8125rem;
  color: var(--color-muted);
  line-height: 1.6;
  text-align: center;
}

/* Feedback-Boxen – standardmäßig ausgeblendet via HTML hidden-Attribut */
.form-feedback[hidden] { display: none !important; }
.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.form-feedback--success {
  background: rgba(43,58,44,.07);
  border: 1.5px solid rgba(43,58,44,.25);
}

.form-feedback--error {
  background: rgba(192,57,43,.05);
  border: 1.5px solid rgba(192,57,43,.3);
}

.form-feedback svg { flex-shrink: 0; margin-top: 1px; }

.form-feedback strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--color-forest);
}

.form-feedback--error strong { color: var(--color-error); }

.form-feedback p {
  font-size: .9rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--color-forest);
  color: rgba(255,255,255,.7);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--color-white);
  font-weight: 600;
  font-size: .9375rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .875rem;
  transition: color .15s;
}
.footer-nav a:hover { color: var(--color-white); }
.footer-nav a:focus-visible {
  outline: 2px solid var(--color-lime);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    gap: 2rem;
  }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  :root { --section-gap: 4rem; }

  .header-cta { display: none; }

  .hero { padding: 3.5rem 0 3rem; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .waitlist-card {
    padding: 2rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ── Logo-Bild ──────────────────────────────────────────── */
/* Header: logo-dark.png (Deep Forest), Footer: logo.png (weiß) */
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Verhindert Abschneiden auf kleinen Screens */
  max-width: 220px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: .9;
}

/* ── Hero-Mock-Bild (iMac) ──────────────────────────────── */
.hero-mock-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
  object-fit: contain;
  background: transparent;
  /* Schwarzer Hintergrund des JPG wird auf dunkelgrünem Hero unsichtbar */
  mix-blend-mode: screen;
}

/* ── Screenshot-Carousel ────────────────────────────────── */
.screenshots-section {
  padding: var(--section-gap) 0;
  background: var(--color-forest);
  color: var(--color-white);
}

.screenshots-section .section-title {
  color: var(--color-white);
}

.screenshots-section .section-sub {
  color: rgba(255,255,255,.7);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #1a2a1b;
}

.carousel-track {
  display: flex;
  transition: transform .4s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

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

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 540px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.carousel-slide {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(43,58,44,.12),
    0 4px 8px rgba(0,0,0,.08),
    0 12px 32px rgba(0,0,0,.16),
    0 24px 64px rgba(0,0,0,.10);
  transition: box-shadow .3s;
}
.carousel-slide:hover {
  box-shadow:
    0 0 0 1px rgba(43,58,44,.2),
    0 8px 16px rgba(0,0,0,.12),
    0 20px 48px rgba(0,0,0,.22),
    0 32px 80px rgba(0,0,0,.14);
}

.carousel-slide figcaption {
  padding: 1rem 1.5rem;
  background: rgba(43,58,44,.92);
  color: rgba(255,255,255,.9);
  font-size: .9375rem;
  line-height: 1.5;
  border-top: 1px solid rgba(212,237,49,.2);
}

.carousel-slide figcaption strong {
  color: var(--color-lime);
  margin-right: .25rem;
}

/* Prev/Next Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(43,58,44,.85);
  color: var(--color-white);
  border: 1.5px solid rgba(212,237,49,.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .12s;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--color-forest);
  border-color: var(--color-lime);
}

.carousel-btn:active { transform: translateY(-50%) scale(.95); }

.carousel-btn:focus-visible {
  outline: 3px solid var(--color-lime);
  outline-offset: 2px;
}

.carousel-btn--prev { left: .875rem; }
.carousel-btn--next { right: .875rem; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 0 .75rem;
  background: rgba(43,58,44,.92);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.carousel-dot:hover { background: rgba(255,255,255,.6); }

.carousel-dot--active {
  background: var(--color-lime);
  transform: scale(1.35);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--color-lime);
  outline-offset: 3px;
}

/* ── Responsive Ergänzungen ─────────────────────────────── */
@media (max-width: 900px) {
  .hero-mock-img {
    max-width: 100%;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  .carousel-btn--prev { left: .5rem; }
  .carousel-btn--next { right: .5rem; }
}

@media (max-width: 640px) {
  .logo-img { height: 52px; max-width: 160px; }
  .carousel-slide img { max-height: 260px; }
  .carousel-slide figcaption { font-size: .875rem; padding: .75rem 1rem; }
}

/* ── Stats Subtext ──────────────────────────────────────────── */
.stat-sub {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.375rem;
  line-height: 1.45;
  max-width: 180px;
  text-align: center;
}

/* ── Absender-Sektion ───────────────────────────────────────── */
.founder-section {
  background: var(--color-sage);
  padding: 4rem 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(43,58,44,0.22);
  border: 3px solid var(--color-lime);
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-avatar svg { opacity: 0.7; }
.founder-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}
.founder-content .founder-role {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-forest);
  opacity: 0.7;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.founder-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0;
}
.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--color-forest);
  color: var(--color-white);
  border-radius: 100px;
  padding: 0.3rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
.founder-badge svg { flex-shrink: 0; }

/* ── Countdown ──────────────────────────────────────────────── */
.countdown-banner {
  background: var(--color-forest);
  color: var(--color-white);
  padding: 1.25rem 0;
  text-align: center;
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.countdown-units {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}
.countdown-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-lime);
  font-variant-numeric: tabular-nums;
  min-width: 2.5ch;
  text-align: center;
}
.countdown-unit-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.countdown-sep {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-lime);
  opacity: 0.5;
  line-height: 1;
  margin-top: -0.5rem;
}
.countdown-cta-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
}
.countdown-cta-text strong {
  color: var(--color-lime);
}
.countdown-cta-link {
  color: inherit;
  text-decoration: none;
}
.countdown-cta-link:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .founder-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-avatar { margin: 0 auto; }
  .founder-badges { justify-content: center; }
  .countdown-inner { gap: 1rem; }
  .countdown-num { font-size: 1.5rem; }
}

/* ── prefers-reduced-motion: alle nicht-essenziellen Animationen deaktivieren ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .feature-card {
    transform: none !important;
    transition: none !important;
  }
  .feature-icon-svg {
    transform: none !important;
    transition: none !important;
  }
  .btn {
    transform: none !important;
    transition: none !important;
  }
  .carousel-track {
    transition: none !important;
  }
  .carousel-slide {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
