/* ============================================
   QUIZ NOW — Landingpage
   Dark Energy · Schwarz + Neon-Grün
   ============================================ */

:root {
  /* Background — fast schwarz, leicht warm */
  --bg-deep: #050608;
  --bg-mid: #0a0d10;
  --bg-card: #11151a;
  --bg-elev: #181c22;

  /* Akzentfarbe — Neon-Grün (Performance / Energy) */
  --gold: #a8e83c;         /* "gold" Variable für Kompatibilität — jetzt Neon-Grün */
  --gold-bright: #c6f25c;
  --gold-deep: #84ba1e;
  --gold-soft: rgba(168, 232, 60, 0.12);
  --gold-line: rgba(168, 232, 60, 0.32);

  /* Aliase mit besserem Namen (für neue Komponenten) */
  --neon: #a8e83c;
  --neon-bright: #c6f25c;
  --neon-soft: rgba(168, 232, 60, 0.12);
  --neon-line: rgba(168, 232, 60, 0.32);
  --neon-glow: 0 0 24px rgba(168, 232, 60, 0.45);

  /* Text — auf dunklem BG */
  --text-bright: #ffffff;
  --text: #e6e9ec;
  --text-soft: #a8aeb5;
  --text-muted: #6a7079;

  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --shadow-gold: 0 12px 32px rgba(168, 232, 60, 0.28);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }

img, svg { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, select, textarea { font-family: inherit; }

::selection { background: var(--gold); color: #0a1a02; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

em { font-style: normal; background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 6, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}

.nav.scrolled { background: rgba(5, 6, 8, 0.92); }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}

.nav-by {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 2px;
  opacity: 0.7;
}

.nav-mm-logo {
  height: 16px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s;
  filter: drop-shadow(0 0 4px rgba(168, 232, 60, 0.3));
}

.nav-brand:hover .nav-mm-logo { opacity: 1; }

@media (max-width: 900px) {
  /* "BY"-Text weg, aber Logo gleich groß wie "Quiz Now"-Text */
  .nav-by { display: none; }
  .nav-mm-logo { height: 18px; margin-left: 6px; }
}

@media (max-width: 380px) {
  .nav-mm-logo { height: 16px; }
}

.nav-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a1a02;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  box-shadow:
    0 6px 16px rgba(168, 232, 60, 0.35),
    0 0 18px rgba(168, 232, 60, 0.25);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-bright); }

.nav-cta {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a1a02 !important;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(168, 232, 60, 0.28);
  transition: transform 0.2s;
}

.nav-cta:hover { transform: translateY(-1px); }

/* ===== Burger-Button (nur Mobile sichtbar) ===== */
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--neon-line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.2s;
}

.nav-burger:hover { background: var(--neon-soft); border-color: var(--neon); }

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--neon-bright);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile-Slidedown-Menu ===== */
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 200;
  background: #05060a;
  border-bottom: 1px solid var(--neon-line);
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: navMobileSlide 0.25s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.nav-mobile[hidden] { display: none; }

@keyframes navMobileSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid transparent;
  transition: all 0.15s;
}

.nav-mobile-link:hover,
.nav-mobile-link:focus {
  background: var(--neon-soft);
  border-color: var(--neon-line);
  color: var(--neon-bright);
}

.nav-mobile-active { color: var(--neon-bright); }

.nav-mobile-live { color: var(--text-bright); }

.nav-mobile-cta {
  margin-top: 8px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-bright) 100%);
  color: #0a1a02 !important;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  box-shadow:
    0 8px 20px rgba(168, 232, 60, 0.35),
    0 0 0 1px rgba(168, 232, 60, 0.4) inset;
}

body.menu-open { overflow: hidden; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }    /* CTA wandert ins Burger-Menü */
  .nav-burger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 640px;
  padding: 112px 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

@media (max-width: 760px) {
  .hero { min-height: auto; padding: 96px 0 56px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 6, 8, 0.92) 0%, rgba(10, 13, 16, 0.88) 60%, rgba(5, 6, 8, 0.95) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(168, 232, 60, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 232, 60, 0.10) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=2000&q=80&auto=format&fit=crop') center / cover no-repeat,
    var(--bg-deep);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-deep) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 232, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 232, 60, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
}

/* Carousel-Frei-Zone rechts auf großen Bildschirmen */
@media (min-width: 1100px) {
  .hero-content > * { max-width: 700px; }
  .hero-content > .hero-trust { max-width: 700px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 900;
  max-width: 700px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #c8cee0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 8px;
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 760px) {
  .btn {
    white-space: normal;        /* darf wrappen */
    padding: 14px 22px;
    font-size: 14.5px;
    border-radius: 20px;
  }
  .btn-block, .btn-block-cta {
    width: 100%;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Lang/Kurz Text-Swap in Buttons (Mobile zeigt Kurzversion) */
.btn-long { display: inline; }
.btn-short { display: none; }

@media (max-width: 600px) {
  .btn-long { display: none; }
  .btn-short { display: inline; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a1a02;
  box-shadow:
    var(--shadow-gold),
    0 0 0 1px rgba(168, 232, 60, 0.5) inset,
    0 0 24px rgba(168, 232, 60, 0.35);
  font-weight: 800;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(168, 232, 60, 0.45),
    0 0 0 1px rgba(168, 232, 60, 0.7) inset,
    0 0 32px rgba(168, 232, 60, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--gold-line);
}

.btn-ghost:hover {
  background: var(--gold-soft);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-block { width: 100%; padding: 18px 28px; font-size: 16px; }

/* ===== Live-Demo Button (alle Buttons mit Live-Pulse-Dot) ===== */
.btn-live { gap: 10px; }

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5252;
  box-shadow: 0 0 12px rgba(255, 82, 82, 0.8);
  animation: liveBlink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.btn-primary .live-dot { box-shadow: 0 0 12px rgba(255, 82, 82, 0.6); }

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.82); }
}

/* Klickbare Carousel-Caption */
.carousel-caption-link {
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s;
}

.carousel-caption-link:hover {
  background: var(--neon);
  color: #0a1a02;
  border-color: var(--neon-bright);
  box-shadow: 0 6px 20px rgba(168, 232, 60, 0.4);
}

.carousel-caption-link:hover .dot { background: #0a1a02; box-shadow: none; }

/* Live-Demo CTA in Beispielfragen-Sektion */
.samples-live-cta {
  margin-top: 40px;
  padding: 32px 28px;
  background:
    linear-gradient(135deg, rgba(168, 232, 60, 0.08) 0%, rgba(168, 232, 60, 0.02) 100%);
  border: 1px solid var(--neon-line);
  border-radius: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.samples-live-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(168, 232, 60, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.samples-live-cta p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.samples-live-cta .btn { position: relative; z-index: 1; }

/* Final-CTA-Or auf der Preisseite */

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 0 4px;
  border-top: 1px solid var(--line);
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--line-strong);
}

/* ============================================
   HERO CAROUSEL — 5 echte Studio-Quizze
   ============================================ */
.hero-carousel {
  /* Desktop ab 1100 px: absolut rechts neben dem Text */
  position: absolute;
  right: max(32px, calc(50vw - 588px));
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  z-index: 2;
  display: none;
  pointer-events: none;
}

@media (min-width: 1100px) {
  .hero-carousel { display: block; }
}

/* Tablet & Mobile: Carousel sitzt mittig UNTER dem Hero-Content */
@media (max-width: 1099px) {
  /* Hero wechselt vom Flex-Row zur normalen Block-Reihenfolge */
  .hero {
    display: block;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-content {
    /* in Block-Layout zentriert (max-width vom .container greift) */
  }

  .hero-carousel {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 240px;
    margin: 40px auto 70px; /* unten Platz für die Caption */
    pointer-events: auto;
  }

  .carousel-caption {
    bottom: -42px;
    font-size: 11px;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    width: 200px;
    margin: 32px auto 64px;
  }
}

.carousel-stage {
  position: relative;
  width: 100%;
  /* 4:7 portrait stage — passt zu allen Preview-Aspekten */
  aspect-ratio: 4 / 7;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: scale(0.92) rotate(-6deg);
  /* CSS-Custom-Properties pro Slide für Rotation */
  animation: carouselCycle 20s infinite ease-in-out;
  animation-delay: calc(var(--i) * 4s);
  filter: drop-shadow(0 0 30px rgba(168, 232, 60, 0.0));
  will-change: opacity, transform, filter;
}

/* Jeder Slide kriegt seinen eigenen Rotations-/Offset-Style während er aktiv ist */
.carousel-slide:nth-child(1) { --rot: -4deg;  --dx:  0px; --dy:  0px; }
.carousel-slide:nth-child(2) { --rot:  5deg;  --dx:  6px; --dy: -4px; }
.carousel-slide:nth-child(3) { --rot: -3deg;  --dx: -4px; --dy:  6px; }
.carousel-slide:nth-child(4) { --rot:  6deg;  --dx:  4px; --dy:  3px; }
.carousel-slide:nth-child(5) { --rot: -5deg;  --dx: -3px; --dy: -3px; }

@keyframes carouselCycle {
  0%   { opacity: 0; transform: translate(0, 20px) scale(0.85) rotate(-12deg); filter: drop-shadow(0 0 0   rgba(168, 232, 60, 0)); }
  4%   { opacity: 1; transform: translate(var(--dx, 0), var(--dy, 0)) scale(1) rotate(var(--rot, 0deg)); filter: drop-shadow(0 0 40px rgba(168, 232, 60, 0.35)); }
  18%  { opacity: 1; transform: translate(var(--dx, 0), var(--dy, 0)) scale(1) rotate(var(--rot, 0deg)); filter: drop-shadow(0 0 40px rgba(168, 232, 60, 0.35)); }
  24%  { opacity: 0; transform: translate(0, -16px) scale(0.92) rotate(8deg); filter: drop-shadow(0 0 0   rgba(168, 232, 60, 0)); }
  100% { opacity: 0; transform: translate(0, 20px) scale(0.85) rotate(-12deg); filter: drop-shadow(0 0 0   rgba(168, 232, 60, 0)); }
}

.carousel-caption {
  position: absolute;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: rgba(168, 232, 60, 0.1);
  border: 1px solid var(--neon-line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-caption .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-bright);
  box-shadow: 0 0 10px var(--neon-bright);
  animation: pulse 2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide { animation: none; opacity: 1 !important; transform: rotate(var(--rot, 0deg)); }
  .carousel-slide:nth-child(1) { opacity: 1 !important; z-index: 5; }
  .carousel-slide:nth-child(2),
  .carousel-slide:nth-child(3),
  .carousel-slide:nth-child(4),
  .carousel-slide:nth-child(5) { display: none; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 72px 0;
  position: relative;
}

@media (max-width: 760px) {
  .section { padding: 48px 0; }
}

/* Subtiler Neon-Strich als Section-Trenner (außer für die erste Section + footer) */
.section + .section::before,
.hero + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--neon) 50%, transparent 100%);
  box-shadow: 0 0 16px rgba(168, 232, 60, 0.5);
  border-radius: 2px;
  opacity: 0.7;
  pointer-events: none;
}

.section-head {
  margin-bottom: 44px;
  max-width: 720px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.section-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 640px;
}

.section-head.center .section-lead { margin: 0 auto; }

/* ============================================
   PROBLEM
   ============================================ */
.problem { background: var(--bg-deep); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.problem-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.problem-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}

.problem-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 232, 60, 0.15), rgba(168, 232, 60, 0.05));
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 22px;
}

.problem-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-bright);
}

.problem-card p {
  color: var(--text-soft);
  font-size: 15px;
}

/* ============================================
   SOLUTION
   ============================================ */
.solution {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-mid));
  padding: 90px 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { background: var(--bg-mid); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.how-step {
  padding: 36px 28px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-mid) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s;
}

.how-step:hover {
  border-color: var(--gold-line);
  transform: translateY(-6px);
}

.how-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  opacity: 0.6;
}

.how-icon {
  font-size: 34px;
  margin-bottom: 20px;
}

.how-step h3 {
  font-size: 20px;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.how-step p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.how-step ul {
  list-style: none;
  padding: 0;
}

.how-step ul li {
  font-size: 13px;
  color: var(--text-soft);
  padding: 6px 0 6px 22px;
  position: relative;
  border-top: 1px solid var(--line);
}

.how-step ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold-bright);
  font-weight: 800;
}

.how-step ul li:first-child { border-top: none; }

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--bg-deep); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.feature {
  padding: 32px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.feature:hover {
  border-color: var(--gold-line);
  background: var(--bg-elev);
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 16px;
  display: inline-block;
}

.feature h3 {
  font-size: 17px;
  color: var(--text-bright);
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============================================
   USE CASES
   ============================================ */
.usecases {
  background:
    linear-gradient(180deg, rgba(10, 13, 16, 0.94) 0%, rgba(10, 13, 16, 0.97) 50%, rgba(10, 13, 16, 0.94) 100%),
    url('https://images.unsplash.com/photo-1517963879433-6ad2b056d712?w=2000&q=80&auto=format&fit=crop') center / cover no-repeat fixed,
    var(--bg-mid);
  position: relative;
}

.usecases::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(168, 232, 60, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.usecase {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.usecase.highlight {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
  border-color: var(--gold-line);
  box-shadow: 0 20px 50px rgba(168, 232, 60, 0.08);
  transform: translateY(-8px);
}

@media (max-width: 900px) {
  .usecase.highlight { transform: none; }
}

.usecase:hover {
  border-color: var(--gold-line);
}

.usecase-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  color: var(--gold-bright);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.usecase h3 {
  font-size: 22px;
  color: var(--text-bright);
  margin-bottom: 14px;
  line-height: 1.25;
}

.usecase p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.usecase-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.usecase-meta span {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

/* ============================================
   CHANNELS
   ============================================ */
.channels { background: var(--bg-deep); }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .channel-grid { grid-template-columns: repeat(3, 1fr); }
}

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

.channel-card {
  padding: 28px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
}

.channel-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  background: var(--bg-elev);
}

.channel-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.channel-card h4 {
  font-size: 14px;
  color: var(--text-bright);
  margin-bottom: 6px;
  font-weight: 700;
}

.channel-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   SAMPLE QUESTIONS
   ============================================ */
.samples { background: var(--bg-mid); }

.samples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

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

.sample-question {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(17, 26, 50, 0.6) 100%);
  border: 1px solid rgba(168, 232, 60, 0.18);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

.sample-num {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold);
  color: #0a1a02;
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.sample-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.35;
}

.sample-a {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-chip {
  font-size: 13px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text-soft);
}

.sample-chip.correct {
  background: rgba(168, 232, 60, 0.18);
  border-color: var(--gold);
  color: var(--gold-bright);
  font-weight: 700;
}

.samples-note {
  padding: 22px 28px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  text-align: center;
  font-size: 15px;
  color: var(--text);
}

.samples-note strong { color: var(--gold-bright); }

/* ============================================
   STATS BAND
   ============================================ */
.stats {
  background:
    linear-gradient(135deg, rgba(10, 13, 16, 0.94) 0%, rgba(5, 6, 8, 0.96) 100%),
    url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=2000&q=80&auto=format&fit=crop') center / cover no-repeat fixed,
    var(--bg-mid);
  padding: 70px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}

.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5, 6, 8, 0.6) 100%);
  pointer-events: none;
}

.stats > .container { position: relative; z-index: 1; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

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

.stat-big .stat-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-big .stat-label {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.5px;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg-deep); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--gold-line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--gold-bright); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 26px 26px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.faq-body em { -webkit-text-fill-color: var(--text-bright); color: var(--text-bright); background: none; font-style: italic; }

/* ============================================
   PRICING FORM
   ============================================ */
.pricing {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.93) 0%, rgba(10, 13, 16, 0.95) 100%),
    url('https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?w=2000&q=80&auto=format&fit=crop') center / cover no-repeat,
    var(--bg-deep);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(168, 232, 60, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.pricing > .container { position: relative; z-index: 1; }

.pricing-form {
  background: var(--bg-card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 600px) {
  .pricing-form { padding: 28px 22px; }
}

.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

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

@media (max-width: 600px) {
  .form-row.two { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  background: var(--bg-mid);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  font-size: 15px;
  transition: all 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elev);
  box-shadow: 0 0 0 3px rgba(168, 232, 60, 0.15);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }

.field textarea { resize: vertical; min-height: 80px; }

.field select { cursor: pointer; }

.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:focus) { border-color: #d4546e; }

.form-channel {
  border: 1px solid var(--line);
  background: var(--bg-mid);
  border-radius: var(--radius-sm);
  padding: 18px 18px 18px;
  margin: 18px 0;
}

.form-channel legend {
  padding: 0 8px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
}

.form-channel {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.radio:has(input:checked) {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.radio input { accent-color: var(--gold); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
  margin: 18px 0 24px;
  line-height: 1.5;
  cursor: pointer;
}

.consent input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }

.form-foot {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Form success state */
.form-success {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a1a02;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
}

.form-success h3 {
  font-size: 28px;
  color: var(--text-bright);
  margin-bottom: 14px;
}

.form-success p {
  color: var(--text-soft);
  margin-bottom: 12px;
  font-size: 16px;
}

.form-success strong { color: var(--gold-bright); }

.success-sub {
  font-size: 14px !important;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.success-sub a { color: var(--gold-bright); text-decoration: underline; }

.success-unlock {
  margin: 28px auto 24px;
  padding: 24px 22px;
  background: linear-gradient(135deg, rgba(168, 232, 60, 0.12) 0%, rgba(168, 232, 60, 0.04) 100%);
  border: 1.5px solid var(--neon);
  border-radius: 16px;
  max-width: 520px;
  box-shadow:
    0 0 30px rgba(168, 232, 60, 0.18),
    0 0 0 1px rgba(168, 232, 60, 0.35) inset;
}

.success-unlock-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-bright);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-align: center;
}

.success-unlock-hint {
  font-size: 12.5px;
  color: var(--text-soft);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================
   OVERVIEW INFOGRAPHIC + LIGHTBOX
   ============================================ */
.overview-section {
  background: var(--bg-mid);
  position: relative;
}

.overview-wrap {
  margin-top: 8px;
}

.overview-image-btn {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 1px solid var(--neon-line);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(168, 232, 60, 0.15) inset;
}

.overview-image-btn:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(168, 232, 60, 0.2),
    0 0 0 1px rgba(168, 232, 60, 0.45) inset;
}

.overview-image-btn img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
}

.overview-zoom-hint {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 18px;
  background: rgba(5, 6, 8, 0.85);
  color: var(--neon-bright);
  border: 1px solid var(--neon-line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s;
}

.overview-image-btn:hover .overview-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.zoom-icon {
  font-size: 18px;
  font-weight: 900;
}

.overview-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .overview-actions { flex-direction: column; }
  .overview-actions .btn { width: 100%; text-align: center; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 100px;
  animation: lightboxFadeIn 0.25s ease-out;
}

.lightbox[hidden] { display: none; }

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(168, 232, 60, 0.15);
  cursor: zoom-out;
  animation: lightboxZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--neon-line);
  color: var(--text-bright);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.lightbox-close:hover {
  background: var(--neon);
  color: #0a1a02;
  border-color: var(--neon-bright);
  transform: rotate(90deg);
}

.lightbox-download {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-bright) 100%);
  color: #0a1a02;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(168, 232, 60, 0.4),
    0 0 24px rgba(168, 232, 60, 0.3);
  transition: transform 0.2s;
  z-index: 2;
}

.lightbox-download:hover { transform: translateX(-50%) translateY(-2px); }

body.lightbox-open { overflow: hidden; }

/* ============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================ */
.legal { background: var(--bg-deep); }

.legal-content {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-content h2 {
  font-size: 20px;
  color: var(--text-bright);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-line);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p, .legal-content ul {
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
}

.legal-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-bright);
  font-weight: 700;
}

.legal-content a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: var(--gold-line);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  text-decoration-color: var(--gold-bright);
}

.legal-content strong { color: var(--text-bright); }

.legal-meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.legal-back {
  margin-top: 48px;
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-line);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-bright);
}

.footer-tag {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.footer-contacts {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-contact-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.footer-contact-mail {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-bright);
  transition: color 0.2s;
}

.footer-contact-mail:hover { color: var(--text-bright); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
  align-items: center;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-powered-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.footer-powered-logo {
  height: 26px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
  filter: drop-shadow(0 0 8px rgba(168, 232, 60, 0.25));
}

.footer-powered-logo:hover { opacity: 1; }

/* Geheimer Direkt-Link zur Preisliste — sieht aus wie normaler Text */
.secret-link {
  color: inherit;
  text-decoration: none;
  cursor: text;
  transition: color 0.2s;
}

.secret-link:hover {
  color: var(--neon-bright);
  text-shadow: 0 0 8px rgba(168, 232, 60, 0.5);
  cursor: pointer;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover { color: var(--gold-bright); }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* iOS / Mobile: disable fixed-attachment backgrounds (perf + iOS Safari support) */
@media (max-width: 1024px) {
  .usecases, .stats {
    background-attachment: scroll, scroll, scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
  .usecases, .stats { background-attachment: scroll !important; }
}
