/* ────────────────────────────────────────────────────────
   GhostPulse — Design System
   Aesthetic: Dark Cinematic / Editorial / Data-Driven
   Fonts: Space Grotesk (display) + DM Sans (body)
   Palette: #0a0a0f (dark), #ff6b35 (fire), #f7c948 (gold), #e0e0e0 (light)
   ──────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #161620;
  --bg-card-hover: #1c1c28;
  --text-primary: #eaeaea;
  --text-secondary: #9999aa;
  --text-muted: #666677;
  --accent-fire: #ff6b35;
  --accent-gold: #f7c948;
  --accent-ember: #e85d26;
  --accent-cyan: #4fc3f7;
  --border: #222233;
  --border-glow: rgba(255, 107, 53, 0.15);
  --gradient-fire: linear-gradient(135deg, #ff6b35, #f7c948);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent-fire); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-gold); }

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

::selection { background: var(--accent-fire); color: white; }

/* ─── Typography ────────────────────────────────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.h-sub {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

.text-gradient {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ─── Layout ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm { padding: 60px 0; }

/* ─── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-smooth);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-fire);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.nav-cta {
  padding: 8px 20px !important;
  background: var(--accent-fire) !important;
  color: white !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--accent-ember) !important;
  transform: translateY(-1px);
}

/* ─── Hero Section ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--accent-fire);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  background: var(--accent-fire);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255, 107, 53, 0); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Audit Form ────────────────────────────────────── */
.audit-form {
  position: relative;
  z-index: 2;
}

.audit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.audit-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.audit-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.audit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-fire);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder { color: var(--text-muted); }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-fire);
  color: white;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

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

.btn-secondary:hover {
  border-color: var(--accent-fire);
  color: var(--accent-fire);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 16px;
}

.btn-ghost:hover { color: var(--text-primary); }

/* ─── Stats Bar ─────────────────────────────────────── */
.stats-bar {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-item { text-align: left; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ─── Section: How It Works ─────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-fire);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.step-card:hover {
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-4px);
}

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

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ─── Section: What We Analyze ──────────────────────── */
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.analysis-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition-smooth);
}

.analysis-card:hover {
  border-color: rgba(255, 107, 53, 0.15);
  background: var(--bg-card-hover);
}

.analysis-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.08);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.analysis-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.analysis-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Section: Pricing ──────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card.featured {
  border-color: var(--accent-fire);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-fire);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-fire);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.pricing-btn-primary {
  background: var(--gradient-fire);
  color: white;
}

.pricing-btn-primary:hover { box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25); }

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

.pricing-btn-secondary:hover { border-color: var(--accent-fire); color: var(--accent-fire); }

/* ─── Section: Social Proof ─────────────────────────── */
.social-proof {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.proof-logos {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.4;
}

.proof-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ─── CTA Section ───────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-fire);
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Footer ────────────────────────────────────────── */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

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

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

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

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

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

/* ─── Section Headers ───────────────────────────────── */
.section-header {
  max-width: 600px;
  margin-bottom: 16px;
}

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

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-fire);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Loading & Scanning Animation ──────────────────── */
.scanning-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.scanning-overlay.hidden { display: none; }

.scanner-ring {
  width: 80px;
  height: 80px;
  border: 3px solid var(--border);
  border-top-color: var(--accent-fire);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.scanning-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.scanning-step {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 300px;
  text-align: center;
}

/* ─── Report Page Styles ────────────────────────────── */
.report-header {
  padding: 100px 0 40px;
  text-align: center;
}

.score-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.score-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: conic-gradient(var(--accent-fire) calc(var(--score-pct) * 1%), var(--border) 0) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 4px;
}

.score-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.score-grade {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 4px;
}

.score-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Platform visibility bars */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.platform-name {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.platform-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
}

.platform-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  margin-top: 10px;
  overflow: hidden;
}

.platform-bar-fill {
  height: 100%;
  background: var(--gradient-fire);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dimension detail cards */
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.dimension-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.dimension-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dimension-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.dimension-score-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent-fire);
}

.dimension-bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  margin-bottom: 12px;
  overflow: hidden;
}

.dimension-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.finding {
  font-size: 0.83rem;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.finding-icon {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
}

.finding-positive .finding-icon { color: #4caf50; }
.finding-negative .finding-icon { color: #f44336; }
.finding-warning .finding-icon { color: var(--accent-gold); }

/* Recommendations */
.recs-list {
  margin-top: 32px;
}

.rec-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rec-priority {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 2px;
}

.rec-priority.critical { background: rgba(244, 67, 54, 0.12); color: #f44336; }
.rec-priority.important { background: rgba(247, 201, 72, 0.12); color: var(--accent-gold); }
.rec-priority.suggested { background: rgba(79, 195, 247, 0.12); color: var(--accent-cyan); }

.rec-content { flex: 1; }

.rec-dimension {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.rec-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Email capture on report */
.report-cta {
  background: var(--bg-card);
  border: 1px solid var(--accent-fire);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  box-shadow: var(--shadow-glow);
}

.report-cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.report-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.email-row {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.email-row .form-input { flex: 1; }

.email-row .btn {
  flex-shrink: 0;
  padding: 12px 24px;
}

.success-msg {
  color: #4caf50;
  font-size: 0.9rem;
  margin-top: 12px;
  display: none;
}

/* ─── Animations ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .analysis-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .dimensions-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 20px; }
  .nav-links { display: none; }
  .section { padding: 60px 0; }
  .email-row { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .proof-logos { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .audit-card { padding: 24px; }
  .hero { min-height: auto; padding: 100px 0 60px; }
}
