/*
 * KoeHub Business Suite — Landing Page
 * Aurora Deep-Space Design System
 * DNA: koehub_tokens.scss + koehub_dashboard.scss + scan.css
 * Kontrast-Gate: Body ≥7:1, Labels ≥4.5:1 auf Deep-Space #070A12
 */

/* ==========================================================================
   Tokens (aus koehub_tokens.scss, eingebettet für Standalone-HTML)
   ========================================================================== */
:root {
  --color-bg:            #070A12;
  --color-bg-2:          #05070E;
  --color-text:          #F7FAFF;
  --color-muted:         #AAB5CB;

  --color-violet:        #7C3AED;
  --color-blue:          #3B82F6;
  --color-cyan:          #06B6D4;
  --color-sky:           #22D3EE;

  --color-pastel-violet: #a78bfa;
  --color-pastel-sky:    #7dd3fc;
  --color-pastel-cyan:   #67e8f9;

  --aurora:         linear-gradient(110deg, #7C3AED 10%, #3B82F6 55%, #06B6D4 92%);
  --aurora-pastel:  linear-gradient(110deg, #a78bfa 10%, #7dd3fc 55%, #67e8f9 92%);
  --aurora-text:    linear-gradient(110deg, #a78bfa 0%, #7dd3fc 100%);
  --signature-gradient: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);

  --blob-1: rgba(124, 58, 237, 0.35);
  --blob-2: rgba(59, 130, 246, 0.28);
  --blob-3: rgba(6, 182, 212, 0.22);
  --blob-4: rgba(34, 211, 238, 0.18);

  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "SF Mono", "SFMono-Regular", ui-monospace, "Cascadia Code", monospace;

  --radius:      10px;
  --radius-lg:   18px;
  --radius-sm:   6px;
  --radius-full: 9999px;

  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  48px;
  --space-6:  64px;
  --space-7:  96px;

  --glass-cloud-bg:     rgba(255, 255, 255, 0.045);
  --glass-cloud-border: rgba(255, 255, 255, 0.09);
  --glass-cloud-blur:   22px;
  --glass-cloud-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);

  --shadow-lg:   0 12px 40px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 32px rgba(59, 130, 246, 0.25);

  --grid-size: 54px;
  --max-w: 1200px;
}

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(6%, -4%) scale(1.04); }
  50%  { transform: translate(-4%, 6%) scale(0.97); }
  75%  { transform: translate(5%, 3%) scale(1.02); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer-border {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* ==========================================================================
   Aurora-Hintergrund (global, fixed — wie scan.css)
   ========================================================================== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 15% 0%,   var(--blob-1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 88% 12%,  var(--blob-3) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 100%, var(--blob-2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 75% 55%,  var(--blob-4) 0%, transparent 60%);
  animation: blob-drift 22s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 30%, transparent 100%);
  animation: blob-drift 22s ease-in-out infinite reverse;
  animation-delay: -11s;
}

/* ==========================================================================
   Utility-Klassen
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  position: relative;
  z-index: 1;
}

/* Glasmorphism-Card — Herz des Designs */
.glass-card {
  background: var(--glass-cloud-bg);
  -webkit-backdrop-filter: blur(var(--glass-cloud-blur));
          backdrop-filter: blur(var(--glass-cloud-blur));
  border: 1px solid var(--glass-cloud-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-cloud-shadow);
}

/* Gradient-Text-Utility */
.gradient-text {
  background: var(--aurora-pastel);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback ohne -webkit-text-fill-color */
}

/* Kicker-Label */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-pastel-sky);
  margin-bottom: var(--space-2);
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-pastel-sky);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* Section-Titel */
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-text);
  text-shadow: 0 2px 40px rgba(124, 58, 237, 0.25);
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 580px;
}

/* CTA-Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primär — Aurora-Gradient, weiße Schrift */
.btn-primary {
  background: linear-gradient(110deg, #7C3AED 0%, #3B82F6 60%, #06B6D4 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.45), 0 1px 0 rgba(255,255,255,0.12) inset;
  font-weight: 700;
}

.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(124, 58, 237, 0.6), 0 1px 0 rgba(255,255,255,0.12) inset;
}

/* Sekundär — Glasmorphism-Outline */
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(167,139,250,0.4);
  box-shadow: 0 0 20px rgba(167,139,250,0.15);
}

/* ==========================================================================
   STICKY HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 14, 0.75);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Aurora-Linie unter dem Header */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #7C3AED 25%, #3B82F6 50%, #06B6D4 75%, transparent 100%);
  opacity: 0.5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: var(--space-3);
}

/* Logo Wortmarke */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 60%, #06B6D4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-word {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--aurora-pastel);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.15s ease;
}

.site-nav a:hover { color: var(--color-text); }

.header-cta .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Mobile-Nav toggle (kein JS — reines CSS) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 6px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Reveal-Animation — self-contained CSS, KEIN opacity:0 das auf JS wartet */
.hero-kicker {
  animation: reveal-up 0.55s cubic-bezier(.2,.8,.2,1) both;
}

.hero-headline {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-shadow: 0 4px 60px rgba(124, 58, 237, 0.3);
  margin-bottom: var(--space-3);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  animation: reveal-up 0.55s 0.1s cubic-bezier(.2,.8,.2,1) both;
}

.hero-headline .accent {
  background: linear-gradient(110deg, #a78bfa 10%, #7dd3fc 55%, #67e8f9 92%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto var(--space-5);
  animation: reveal-up 0.55s 0.2s cubic-bezier(.2,.8,.2,1) both;
}

.hero-ctas {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
  animation: reveal-up 0.55s 0.3s cubic-bezier(.2,.8,.2,1) both;
}

/* Produkt-Hinweis unter den CTAs */
.hero-hint {
  font-size: 0.8rem;
  color: var(--color-muted);
  opacity: 0.7;
  animation: reveal-fade 0.8s 0.5s both;
}

.hero-hint strong {
  color: var(--color-pastel-sky);
  font-weight: 600;
}

/* ==========================================================================
   TRUST STRIPE — Compliance-Badges
   ========================================================================== */
.trust-stripe {
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.trust-stripe-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.trust-badge:hover {
  border-color: rgba(167,139,250,0.3);
  color: var(--color-text);
}

.trust-badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-pastel-sky);
}

/* ==========================================================================
   FEATURE GRID — 6 Cards
   ========================================================================== */
.features {
  padding: var(--space-7) 0;
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.features-header .section-sub {
  margin: var(--space-2) auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-3);
}

/* Feature-Card */
.feature-card {
  padding: var(--space-4);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border-top: 2px solid transparent;
}

/* Aurora-Border-Top via border-image */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(110deg, #7C3AED, #3B82F6, #06B6D4);
  opacity: 0.6;
  transition: opacity 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(124,58,237,0.3),
    0 0 40px rgba(124,58,237,0.18);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Subtiler Glow-Hintergrund auf der Card beim Hover */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(59,130,246,0.15) 100%);
  border: 1px solid rgba(167,139,250,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-pastel-violet);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS — 3 Schritte
   ========================================================================== */
.how-it-works {
  padding: var(--space-7) 0;
  position: relative;
  z-index: 1;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.how-it-works-header .section-sub {
  margin: var(--space-2) auto 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
  position: relative;
}

/* Verbindungslinie zwischen Steps (Desktop) */
.steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.3) 20%, rgba(125,211,252,0.3) 80%, transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: var(--space-4);
  position: relative;
  z-index: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #7C3AED, #3B82F6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 auto var(--space-3);
  box-shadow: 0 0 28px rgba(124,58,237,0.45);
  flex-shrink: 0;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ==========================================================================
   ZIELGRUPPEN-SEKTION
   ========================================================================== */
.audiences {
  padding: var(--space-7) 0;
  position: relative;
  z-index: 1;
}

.audiences-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.audiences-header .section-sub {
  margin: var(--space-2) auto 0;
}

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
}

.audience-card {
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: transform 0.18s ease;
}

.audience-card:hover {
  transform: translateY(-3px);
}

.audience-emoji {
  font-size: 2.4rem;
  margin-bottom: var(--space-2);
  display: block;
  line-height: 1;
}

.audience-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.audience-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ==========================================================================
   CTA-BAND (Abschluss)
   ========================================================================== */
.cta-band {
  padding: var(--space-7) 0;
  position: relative;
  z-index: 1;
}

.cta-band-inner {
  text-align: center;
  padding: var(--space-7) var(--space-4);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

/* Aurora-Glow-Hintergrund im CTA-Band */
.cta-band-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(124,58,237,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(6,182,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-kicker {
  margin-bottom: var(--space-2);
}

.cta-band-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text);
  text-shadow: 0 2px 40px rgba(124,58,237,0.2);
  margin-bottom: var(--space-3);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-sub {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-ctas {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-5) 0 var(--space-4);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-brand .logo-word {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--color-muted);
  transition: color 0.15s ease;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(170, 181, 203, 0.55);
  width: 100%;
  text-align: center;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: var(--space-2);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet: 768px */
@media (max-width: 768px) {
  :root {
    --max-w: 100%;
  }

  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  /* Nav verstecken auf Mobile, Burger anzeigen */
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    padding: 72px 0 56px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps { gap: var(--space-4); }
  .steps::before { display: none; }

  .audiences-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-stripe-inner {
    gap: var(--space-2);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cta-band-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-band-ctas .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Mobile: 375px */
@media (max-width: 480px) {
  .audiences-grid {
    grid-template-columns: 1fr;
  }

  .trust-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-hint {
    font-size: 0.75rem;
  }
}

/* Desktop: 1280px+ */
@media (min-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .audiences-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Barrierefreiheit — reduced-motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .hero-kicker,
  .hero-headline,
  .hero-sub,
  .hero-ctas,
  .hero-hint {
    animation: none !important;
  }

  .btn,
  .feature-card,
  .audience-card,
  .trust-badge {
    transition: none !important;
  }
}
