@font-face {
  font-family: 'Outfit';
  src: url('https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0O4G0EwJoKo7vKg.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg-deep: #050810;
  --bg-primary: #0a0e1a;
  --bg-card: #0d1524;
  --bg-card-hover: #111d33;
  --emerald: #10b981;
  --emerald-dim: #0a7a55;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  --cyan: #06b6d4;
  --cyan-dim: #0891b2;
  --gold: #d4a853;
  --text-primary: #e8edf5;
  --text-secondary: #7a8ba8;
  --text-muted: #4a5568;
  --border: rgba(255,255,255,0.06);
  --glass: rgba(10, 14, 26, 0.7);
  --glass-border: rgba(255,255,255,0.08);
  /* Legacy variables needed by modal.css */
  --color-black: #000000;
  --color-dark-1: #0a0e1a;
  --color-dark-2: #0d1a2d;
  --color-medium: #143250;
  --color-primary: #10b981;
  --color-accent: #06b6d4;
  --color-white: #ffffff;
  --color-text: #e0e0e0;
  --color-text-dark: #b0b0b0;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--emerald-dim) var(--bg-deep);
}

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

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--emerald-dim); border-radius: 3px; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
  padding: 14px 48px;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo sup {
  font-size: 0.6em;
  color: var(--emerald);
  font-weight: 600;
  vertical-align: super;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--emerald);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--emerald);
  border-radius: 8px;
  color: var(--emerald) !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--emerald) !important;
  color: var(--bg-deep) !important;
  box-shadow: 0 0 24px var(--emerald-glow);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-zoom-layer {
  position: absolute;
  inset: -10%;
  z-index: 1;
  transition: none;
  will-change: transform, opacity;
}

/* Hero background image with zoom on scroll */
.hero-bg-image {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 115%;
  max-width: 1600px;
  z-index: 2;
  opacity: 0.4;
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0,0,0,0.7) 48%, black 60%, black 78%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0,0,0,0.7) 48%, black 60%, black 78%, transparent 95%);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Floating data elements */
.floating-data {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.data-item {
  position: absolute;
  font-family: 'Outfit', monospace;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.8s;
  white-space: nowrap;
  will-change: transform;
}

.data-item.active { opacity: 1; }

.data-item.style-a {
  font-size: 1.8rem;
  color: rgba(16, 185, 129, 0.07);
}

.data-item.style-b {
  font-size: 1.1rem;
  color: rgba(6, 182, 212, 0.06);
  font-weight: 600;
}

.data-item.style-c {
  font-size: 2.4rem;
  color: rgba(212, 168, 83, 0.05);
  letter-spacing: -1px;
}

.data-item.style-d {
  font-size: 0.9rem;
  color: rgba(16, 185, 129, 0.08);
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(16, 185, 129, 0.06);
  border-radius: 6px;
}

/* Atmospheric gradient layers */
.hero-atmo-1 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(16, 185, 129, 0.12) 0%, transparent 40%);
  z-index: 3;
}

.hero-atmo-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5,8,16,0.3) 0%,
    transparent 30%,
    transparent 60%,
    rgba(5,8,16,0.95) 100%
  );
  z-index: 4;
}

/* Animated aurora streaks */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.4;
  filter: blur(80px);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  animation: auroraFloat 12s ease-in-out infinite;
}

.aurora-blob:nth-child(1) {
  width: 600px; height: 300px;
  top: 10%; left: -5%;
  background: radial-gradient(ellipse, rgba(16,185,129,0.3), transparent 70%);
  animation-duration: 14s;
}

.aurora-blob:nth-child(2) {
  width: 500px; height: 250px;
  top: 30%; right: -10%;
  background: radial-gradient(ellipse, rgba(6,182,212,0.25), transparent 70%);
  animation-duration: 18s;
  animation-delay: -5s;
}

.aurora-blob:nth-child(3) {
  width: 400px; height: 200px;
  bottom: 20%; left: 30%;
  background: radial-gradient(ellipse, rgba(212,168,83,0.15), transparent 70%);
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Particle canvas - fixed full viewport, clicks pass through */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: rgba(16,185,129,0.06);
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero-tag .pulse-dot {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--emerald-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.hero-title .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.55s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.7s; }

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title .accent { color: var(--emerald); }
.hero-title .accent-cyan { color: var(--cyan); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  position: relative;
  padding: 16px 36px;
  background: var(--emerald);
  color: var(--bg-deep);
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.2px;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: var(--emerald);
  z-index: -1;
  opacity: 0.4;
  filter: blur(16px);
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--emerald-glow);
}

.btn-primary:hover::before { opacity: 0.7; }

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

.hero-trust .num { color: var(--emerald); font-weight: 700; }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--emerald), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ============ SECTION COMMON ============ */
.section {
  position: relative;
  padding: 120px 48px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--emerald);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  position: relative;
  padding: 0 48px;
  margin-top: -60px;
  z-index: 20;
}

.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.trust-item {
  background: rgba(13, 21, 36, 0.9);
  backdrop-filter: blur(12px);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.3s;
}

.trust-item:hover { background: rgba(16, 185, 129, 0.05); }

.trust-icon-wrap {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.trust-value {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-value.emerald { color: var(--emerald); }
.trust-value.cyan { color: var(--cyan); }
.trust-value.gold { color: var(--gold); }
.trust-value.white { color: var(--text-primary); }

.trust-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============ FEATURES ============ */
.features { padding-top: 140px; }

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header .section-subtitle { margin: 0 auto; }

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  perspective: 800px;
  cursor: default;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(16,185,129,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(16,185,129,0.05);
}

.feature-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 22px;
  font-size: 1.4rem;
  position: relative;
}

.feature-icon.emerald-bg {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.15);
}

.feature-icon.cyan-bg {
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.15);
}

.feature-icon.gold-bg {
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.15);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============ HOW IT WORKS - CINEMATIC ============ */
.how-it-works {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header .section-subtitle { margin: 0 auto; }

.steps-cinema {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.cinema-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.cinema-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(12px);
}

.cinema-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
}

/* Step text fades in with its phase */
.steps-cinema.pipeline-active .step-pdf h3,
.steps-cinema.pipeline-active .step-pdf p { animation: fadeUp 0.5s ease 1s forwards; }
.steps-cinema.pipeline-active .step-analyze h3,
.steps-cinema.pipeline-active .step-analyze p { animation: fadeUp 0.5s ease 2.8s forwards; }
.steps-cinema.pipeline-active .step-profit h3,
.steps-cinema.pipeline-active .step-profit p { animation: fadeUp 0.5s ease 6s forwards; }

/* Visual containers */
.cinema-visual {
  width: 160px;
  height: 160px;
  margin: 0 auto 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Step 1: PDF Upload ---- */
.pdf-scene {
  position: relative;
  width: 80px;
  height: 100px;
}

.pdf-doc {
  width: 80px;
  height: 100px;
  background: var(--bg-card);
  border: 1.5px solid rgba(16,185,129,0.25);
  border-radius: 6px 14px 6px 6px;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: none;
}

/* ===== PIPELINE ANIMATION SEQUENCE ===== */
/* Phase 1: PDF appears (0s - 1.2s) */
.steps-cinema.pipeline-active .step-pdf .pdf-doc {
  animation: pdfFlyIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}

@keyframes pdfFlyIn {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Folded corner */
.pdf-doc::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 18px; height: 18px;
  background: linear-gradient(225deg, var(--bg-deep) 50%, rgba(16,185,129,0.3) 50%);
  border-radius: 0 12px 0 4px;
}

/* Text lines inside PDF */
.pdf-lines {
  position: absolute;
  top: 26px; left: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdf-lines span {
  height: 2px;
  border-radius: 1px;
  background: rgba(16,185,129,0.15);
  transform: scaleX(0);
  transform-origin: left;
}

.steps-cinema.pipeline-active .step-pdf .pdf-lines span {
  animation: lineGrow 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}

.steps-cinema.pipeline-active .step-pdf .pdf-lines span:nth-child(1) { animation-delay: 0.6s; width: 100%; }
.steps-cinema.pipeline-active .step-pdf .pdf-lines span:nth-child(2) { animation-delay: 0.7s; width: 75%; }
.steps-cinema.pipeline-active .step-pdf .pdf-lines span:nth-child(3) { animation-delay: 0.8s; width: 88%; }
.steps-cinema.pipeline-active .step-pdf .pdf-lines span:nth-child(4) { animation-delay: 0.9s; width: 60%; }

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

/* PDF badge */
.pdf-badge {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--emerald);
  letter-spacing: 1.5px;
  opacity: 0;
}

.steps-cinema.pipeline-active .step-pdf .pdf-badge {
  animation: fadeUp 0.4s ease 0.7s forwards;
}

/* Upload arrow */
.upload-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--bg-deep);
  font-weight: 800;
  opacity: 0;
  box-shadow: 0 0 20px var(--emerald-glow);
}

.steps-cinema.pipeline-active .step-pdf .upload-arrow {
  animation: arrowPop 0.5s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}

@keyframes arrowPop {
  0% { transform: translateX(-50%) translateY(10px) scale(0.5); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
}

/* ---- Data Cable Connectors ---- */
.data-cable {
  position: absolute;
  top: 80px;
  height: 4px;
  z-index: 1;
}

.data-cable-1 {
  left: 23%;
  width: 19%;
}

.data-cable-2 {
  left: 58%;
  width: 19%;
}

.cable-track {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: rgba(16,185,129,0.08);
  overflow: hidden;
}

/* Glowing core of the cable */
.cable-track::before {
  content: '';
  position: absolute;
  top: 1px; bottom: 1px;
  left: 0; right: 0;
  background: linear-gradient(90deg, rgba(16,185,129,0.15), rgba(6,182,212,0.15));
  border-radius: 1px;
}

/* Data packets flowing through */
.cable-packet {
  position: absolute;
  top: -1px;
  width: 20px;
  height: 6px;
  border-radius: 3px;
  opacity: 0;
}

.cable-packet.p1 {
  width: 30px;
  background: linear-gradient(90deg, transparent, var(--emerald), var(--cyan), transparent);
  box-shadow: 0 0 12px var(--emerald-glow);
}

/* Phase 2: Cable 1 packet flows (1.5s - 2.7s) */
.steps-cinema.pipeline-active .data-cable-1 .cable-packet.p1 {
  animation: packetFlow 1.2s cubic-bezier(0.25,0.1,0.25,1) 1.5s forwards;
}

/* Phase 4: Cable 2 packet flows (4.8s - 6.0s) */
.steps-cinema.pipeline-active .data-cable-2 .cable-packet.p1 {
  animation: packetFlow 1.2s cubic-bezier(0.25,0.1,0.25,1) 4.8s forwards;
}

@keyframes packetFlow {
  0% { left: -30px; opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% + 4px); opacity: 0; }
}

/* Cable end nodes (small dots at each end) */
.cable-node {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 6px var(--emerald-glow);
}

.cable-node.left { left: -3px; }
.cable-node.right { right: -3px; background: var(--cyan); box-shadow: 0 0 6px rgba(6,182,212,0.4); }

/* Cable visibility - triggered by pipeline */
.steps-cinema .data-cable { opacity: 0; }
.steps-cinema.pipeline-active .data-cable-1 {
  animation: cableFadeIn 0.6s cubic-bezier(0.22,1,0.36,1) 1.3s forwards;
}
.steps-cinema.pipeline-active .data-cable-2 {
  animation: cableFadeIn 0.6s cubic-bezier(0.22,1,0.36,1) 4.5s forwards;
}

@keyframes cableFadeIn {
  0% { opacity: 0; transform: scaleX(0.3); }
  100% { opacity: 1; transform: scaleX(1); }
}

/* ---- Step 2: Analysis / Scanning ---- */
.scan-scene {
  position: relative;
  width: 80px;
  height: 100px;
}

.scan-doc {
  width: 80px;
  height: 100px;
  background: var(--bg-card);
  border: 1.5px solid rgba(6,182,212,0.25);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

/* Phase 3: Analysis plays (2.7s - 4.5s) */
.steps-cinema.pipeline-active .step-analyze .scan-doc {
  animation: fadeUp 0.5s ease 2.6s forwards;
}

/* Scanning line */
.scan-beam {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--emerald), transparent);
  box-shadow: 0 0 12px var(--cyan), 0 0 30px rgba(6,182,212,0.3);
  opacity: 0;
  transform: translateY(-2px);
}

.steps-cinema.pipeline-active .step-analyze .scan-beam {
  animation: scanSweep 1.5s cubic-bezier(0.4,0,0.2,1) 3s 1;
}

@keyframes scanSweep {
  0% { transform: translateY(-2px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100px); opacity: 0; }
}

/* Data points flying out */
.data-fly {
  position: absolute;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
}

.data-fly.d1 { top: 15px; right: -40px; color: var(--emerald); background: rgba(16,185,129,0.1); }
.data-fly.d2 { top: 40px; left: -44px; color: var(--cyan); background: rgba(6,182,212,0.1); }
.data-fly.d3 { top: 65px; right: -30px; color: var(--gold); background: rgba(212,168,83,0.1); }

.steps-cinema.pipeline-active .step-analyze .data-fly.d1 { animation: dataFlyRight 0.5s cubic-bezier(0.22,1,0.36,1) 3.5s forwards; }
.steps-cinema.pipeline-active .step-analyze .data-fly.d2 { animation: dataFlyLeft 0.5s cubic-bezier(0.22,1,0.36,1) 3.8s forwards; }
.steps-cinema.pipeline-active .step-analyze .data-fly.d3 { animation: dataFlyRight 0.5s cubic-bezier(0.22,1,0.36,1) 4.1s forwards; }

@keyframes dataFlyRight {
  0% { transform: translateX(-10px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes dataFlyLeft {
  0% { transform: translateX(10px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ---- Step 3: Profit / Growth ---- */
.profit-scene {
  position: relative;
  width: 120px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.chart-bar {
  width: 16px;
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
}

.chart-bar.b1 { height: 30px; background: rgba(16,185,129,0.3); }
.chart-bar.b2 { height: 45px; background: rgba(16,185,129,0.4); }
.chart-bar.b3 { height: 38px; background: rgba(6,182,212,0.35); }
.chart-bar.b4 { height: 60px; background: rgba(16,185,129,0.5); }
.chart-bar.b5 { height: 82px; background: linear-gradient(to top, var(--emerald), var(--cyan)); }

/* Phase 5: Charts grow sequentially (6.0s - 7.2s) */
.steps-cinema.pipeline-active .step-profit .chart-bar.b1 { animation: barGrow 0.5s cubic-bezier(0.22,1,0.36,1) 5.9s forwards; }
.steps-cinema.pipeline-active .step-profit .chart-bar.b2 { animation: barGrow 0.5s cubic-bezier(0.22,1,0.36,1) 6.1s forwards; }
.steps-cinema.pipeline-active .step-profit .chart-bar.b3 { animation: barGrow 0.5s cubic-bezier(0.22,1,0.36,1) 6.3s forwards; }
.steps-cinema.pipeline-active .step-profit .chart-bar.b4 { animation: barGrow 0.5s cubic-bezier(0.22,1,0.36,1) 6.5s forwards; }
.steps-cinema.pipeline-active .step-profit .chart-bar.b5 { animation: barGrow 0.6s cubic-bezier(0.22,1,0.36,1) 6.7s forwards; }

@keyframes barGrow {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

/* Euro badge on top of highest bar */
.profit-badge {
  position: absolute;
  top: -8px;
  right: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--emerald);
  opacity: 0;
  transform: translateY(8px);
}

.steps-cinema.pipeline-active .step-profit .profit-badge {
  animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) 7.1s forwards;
}

/* Trend arrow */
.trend-arrow {
  position: absolute;
  top: 0; right: -8px;
  font-size: 1.2rem;
  color: var(--emerald);
  opacity: 0;
  transform: translateY(6px);
}

.steps-cinema.pipeline-active .step-profit .trend-arrow {
  animation: fadeUp 0.5s ease 7.3s forwards;
}

/* ============ PRICING ============ */
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header .section-subtitle { margin: 0 auto; }

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 36px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.pricing-card.featured {
  border-color: rgba(16,185,129,0.3);
  background: linear-gradient(170deg, rgba(16,185,129,0.06) 0%, var(--bg-card) 40%);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.pricing-price .currency { font-size: 1.6rem; vertical-align: super; margin-right: 2px; }
.pricing-price .period { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; letter-spacing: 0; }

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features li .check {
  color: var(--emerald);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}

.pricing-btn.primary {
  background: var(--emerald);
  color: var(--bg-deep);
}

.pricing-btn.primary:hover {
  box-shadow: 0 8px 32px var(--emerald-glow);
  transform: translateY(-2px);
}

.pricing-btn.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.pricing-btn.outline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.pricing-btn.gold-outline {
  background: transparent;
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--gold);
}

.pricing-btn.gold-outline:hover {
  border-color: var(--gold);
  background: rgba(212,168,83,0.06);
}

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center;
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(16,185,129,0.08), transparent 70%);
}

.final-cta .section-title {
  max-width: 700px;
  margin: 0 auto 20px;
}

.final-cta .section-subtitle {
  max-width: 500px;
  margin: 0 auto 44px;
  text-align: center;
}

.cta-btn-pulse {
  position: relative;
  display: inline-block;
}

.cta-btn-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 2px solid var(--emerald);
  opacity: 0;
  animation: ctaPulse 2.5s ease-out infinite;
}

@keyframes ctaPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}

.cta-btn-pulse .btn-primary {
  padding: 18px 48px;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 48px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer ul { list-style: none; }

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============ GRAIN OVERLAY ============ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ============ CINEMATIC MODAL OVERRIDES ============ */

/* Override modal.css: use opacity/visibility instead of display for smooth transitions */
.modal-overlay {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    background: rgba(0,0,0,0) !important;
    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
                visibility 0.6s,
                background 1.4s cubic-bezier(0.16,1,0.3,1),
                backdrop-filter 1.4s cubic-bezier(0.16,1,0.3,1),
                -webkit-backdrop-filter 1.4s cubic-bezier(0.16,1,0.3,1) !important;
}

.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(0,0,0,0.7) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

/* Panel — cinematic scale + shadow */
.modal {
    background: var(--bg-card) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    padding: 44px 40px !important;
    max-width: 420px !important;
    width: 92% !important;
    transform: scale(0.85) translateY(40px) !important;
    opacity: 0 !important;
    transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s,
                opacity 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s,
                box-shadow 0.7s ease 0.1s !important;
    box-shadow: 0 0 0 rgba(16,185,129,0) !important;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(16,185,129,0.08), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

/* Emerald accent line on top */
.modal::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald), var(--cyan), transparent);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.5s ease 0.4s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s;
}

.modal-overlay.active .modal::before {
    opacity: 1;
    transform: scaleX(1);
}

/* Close animation */
.modal-overlay:not(.active) .modal {
    transform: scale(0.92) translateY(20px) !important;
    transition-delay: 0s !important;
}

/* Staggered field animations */
.modal .modal-header,
.modal .form-group,
.modal .form-actions,
.modal .form-divider,
.modal .social-login,
.modal .form-links {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.modal-overlay.active .modal .modal-header { opacity:1; transform:translateY(0); transition-delay:0.25s; }
.modal-overlay.active .modal .form-group:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.30s; }
.modal-overlay.active .modal .form-group:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.32s; }
.modal-overlay.active .modal .form-group:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.34s; }
.modal-overlay.active .modal .form-group:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.36s; }
.modal-overlay.active .modal .form-group:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.38s; }
.modal-overlay.active .modal .form-group:nth-child(6) { opacity:1; transform:translateY(0); transition-delay:0.40s; }
.modal-overlay.active .modal .form-group:nth-child(7) { opacity:1; transform:translateY(0); transition-delay:0.42s; }
.modal-overlay.active .modal .form-group:nth-child(8) { opacity:1; transform:translateY(0); transition-delay:0.44s; }
.modal-overlay.active .modal .form-error { opacity:1; transform:translateY(0); transition-delay:0.28s; }
.modal-overlay.active .modal .form-actions { opacity:1; transform:translateY(0); transition-delay:0.46s; }
.modal-overlay.active .modal .form-links { opacity:1; transform:translateY(0); transition-delay:0.50s; }
.modal-overlay.active .modal .form-divider { opacity:1; transform:translateY(0); transition-delay:0.54s; }
.modal-overlay.active .modal .social-login { opacity:1; transform:translateY(0); transition-delay:0.58s; }
.modal-overlay.active .modal .form-links:last-child { opacity:1; transform:translateY(0); transition-delay:0.62s; }

/* Logo styling */
.modal-header h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: unset !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}

.modal-header .ai-badge {
    font-size: 0.5em;
    color: var(--emerald);
    font-weight: 600;
    vertical-align: super;
    margin-left: 1px;
}

.modal-header p {
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
}

/* Close button */
.modal-close {
    color: var(--text-muted) !important;
    font-size: 1.5rem !important;
    transition: color 0.2s, transform 0.3s !important;
}
.modal-close:hover {
    color: var(--text-primary) !important;
    transform: rotate(90deg) !important;
}

/* Input fields — match preview look */
.modal .form-group input,
.modal .form-group textarea {
    background: var(--bg-deep) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px !important;
    color: var(--text-primary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.92rem !important;
    padding: 13px 16px !important;
}

.modal .form-group input:focus,
.modal .form-group textarea:focus {
    border-color: var(--emerald) !important;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1) !important;
    background: var(--bg-deep) !important;
}

.modal .form-group input::placeholder,
.modal .form-group textarea::placeholder {
    color: var(--text-muted) !important;
}

.modal .form-group label {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: var(--text-secondary) !important;
}

/* Submit button */
.modal button[type="submit"],
.modal .form-actions .btnPrimary {
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(6,182,212,0.1)) !important;
    border: 1px solid rgba(16,185,129,0.3) !important;
    color: var(--emerald) !important;
    border-radius: 10px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.modal button[type="submit"]:hover,
.modal .form-actions .btnPrimary:hover {
    background: linear-gradient(135deg, rgba(16,185,129,0.25), rgba(6,182,212,0.18)) !important;
    box-shadow: 0 4px 16px rgba(16,185,129,0.2) !important;
}

/* Google OAuth button in modal */
.modal .btn-google {
    border-radius: 10px !important;
}

/* Form divider */
.modal .form-divider {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
}

.modal .form-divider::before,
.modal .form-divider::after {
    border-color: var(--border) !important;
}

/* Form links */
.modal .form-links a {
    color: var(--emerald) !important;
    font-weight: 600 !important;
}

.modal .form-links a:hover {
    text-decoration: underline !important;
    color: var(--emerald) !important;
}

/* PayPal modal wider */
#paypalModal .modal {
    max-width: 600px !important;
}

/* ===== Mobile Menu ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-backdrop.active {
  display: block;
  opacity: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-deep);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links #nav-login {
    margin-top: 12px;
    padding: 14px 24px !important;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--emerald);
    border-radius: 12px;
    color: var(--emerald) !important;
    text-align: center;
    font-weight: 700 !important;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .floating-data {
    display: none;
  }

  .section { padding: 80px 24px; }
  .trust-bar { padding: 0 24px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; max-width: 400px; }
  .steps-container { grid-template-columns: 1fr; max-width: 340px; }
  .steps-container::before { display: none; }
  .step-arrow { display: none; }

  /* Workflow/Cinema Steps untereinander auf Mobile */
  .steps-cinema {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
    gap: 40px;
  }
  .data-cable {
    display: none;
  }
  .cinema-visual {
    width: 140px;
    height: 140px;
  }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { letter-spacing: -1.5px; }
}

@media (max-width: 600px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .trust-item { padding: 24px 16px; }
  .trust-value { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 768px) {
  /* Logo groesser auf Mobile, Navbar Padding reduzieren */
  .navbar {
    padding: 16px 16px;
  }
  .nav-logo {
    font-size: 1.8rem;
    flex: 1;
  }
  .nav-hamburger {
    flex-shrink: 0;
  }

  .hero {
    min-height: 600px;
  }
  .hero-bg-image {
    width: 100%;
  }
  .hero-zoom-layer {
    inset: 0;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-subtitle br {
    display: none;
  }
  .scroll-indicator {
    display: none;
  }
  .data-item,
  .aurora-blob,
  .hero-zoom-layer {
    will-change: auto;
  }

}

@media (max-width: 480px) {
  .modal {
    padding: 28px 20px !important;
    border-radius: 16px !important;
  }
  .modal-header h2 {
    font-size: 1.3rem !important;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
