/* ================================================================
   WEBTRAFFIC.PRO — main.css v1.0
   Global Design System · 2026 Dark SaaS Aesthetic
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-root:       #020c1b;
  --bg-deep:       #050f1f;
  --bg-surface:    #081526;
  --bg-card:       #0c1d35;
  --bg-card-h:     #102440;
  --bg-glass:      rgba(8, 21, 38, 0.75);

  /* Brand */
  --blue:          #3b82f6;
  --blue-light:    #60a5fa;
  --blue-dark:     #2563eb;
  --blue-glow:     rgba(59, 130, 246, 0.25);
  --cyan:          #06b6d4;
  --cyan-glow:     rgba(6, 182, 212, 0.2);

  /* Semantic */
  --green:         #10b981;
  --green-glow:    rgba(16, 185, 129, 0.2);
  --red:           #ef4444;
  --yellow:        #f59e0b;
  --purple:        #8b5cf6;

  /* Text */
  --text:          #f1f5f9;
  --text-sub:      #94a3b8;
  --text-muted:    #475569;
  --text-dim:      #1e3a5f;

  /* Borders */
  --border:        #0f2744;
  --border-bright: #1e3d6b;
  --border-glow:   rgba(59, 130, 246, 0.4);

  /* Typography */
  --font:          'Inter', system-ui, sans-serif;
  --font-display:  'Space Grotesk', system-ui, sans-serif;
  --font-code:     'JetBrains Mono', monospace;

  /* Spacing */
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-pill:   999px;

  /* Effects */
  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-blue:   0 0 40px rgba(59,130,246,0.2);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
  --transition:    0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-s:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-root);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }
::selection { background: var(--blue-glow); color: var(--blue-light); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-root); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── GRID ─────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--text);
}

.section-title .grad {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-sub);
  line-height: 1.75;
  max-width: 600px;
  margin-top: 14px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 28px rgba(59,130,246,0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(59,130,246,0.1);
  color: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.3);
}
.btn-secondary:hover {
  background: rgba(59,130,246,0.18);
  border-color: var(--blue);
}

.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border-glow); }

.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-xl { padding: 18px 40px; font-size: 17px; border-radius: var(--radius-lg); }

/* ── BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-blue   { background: rgba(59,130,246,0.15); color: var(--blue-light); border: 1px solid rgba(59,130,246,0.3); }
.badge-green  { background: rgba(16,185,129,0.15); color: var(--green);      border: 1px solid rgba(16,185,129,0.3); }
.badge-cyan   { background: rgba(6,182,212,0.15);  color: var(--cyan);       border: 1px solid rgba(6,182,212,0.3); }
.badge-purple { background: rgba(139,92,246,0.15); color: var(--purple);     border: 1px solid rgba(139,92,246,0.3); }
.badge-yellow { background: rgba(245,158,11,0.15); color: var(--yellow);     border: 1px solid rgba(245,158,11,0.3); }

/* ── CARD ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.card:hover { border-color: var(--border-bright); box-shadow: var(--shadow-card); }
.card-glow:hover { border-color: var(--border-glow); box-shadow: var(--shadow-blue); }

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(2,12,27,0.85);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-s);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 20px var(--blue-glow);
}

.nav-logo span { color: var(--blue-light); }

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

.nav-links a {
  display: block;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 65%);
}

.hero-glow-2 {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.07) 0%, transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -3px;
  max-width: 900px;
  margin: 0 auto 22px;
}

.hero-title .line-grad {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 60%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer-text 4s linear infinite;
}

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

.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-sub);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  width: 16px; height: 16px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--green);
}

/* ── HERO DASHBOARD PREVIEW ───────────────────────────────── */
.hero-preview {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  z-index: 2;
}

.hero-preview-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(59,130,246,0.12);
}

.preview-topbar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-dots { display: flex; gap: 6px; }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.preview-url {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-code);
  text-align: center;
}

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

.preview-metric {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.preview-metric-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.preview-metric-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.preview-metric-delta {
  font-size: 11px;
  margin-top: 4px;
}

.delta-up   { color: var(--green); }
.delta-down { color: var(--red); }

.preview-chart-area {
  grid-column: 1 / -1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.mini-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  padding-top: 8px;
}

.mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(59,130,246,0.3) 100%);
  transition: height 0.5s ease;
  opacity: 0.8;
}

/* ── SOCIAL PROOF BAR ─────────────────────────────────────── */
.social-proof {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.proof-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.proof-logo:hover { opacity: 0.8; }

/* ── FEATURES ─────────────────────────────────────────────── */
.features { padding: 100px 0; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-s);
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}

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

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-blue   { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); }
.icon-cyan   { background: rgba(6,182,212,0.12);  border: 1px solid rgba(6,182,212,0.25); }
.icon-green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); }
.icon-purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); }
.icon-yellow { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); }
.icon-red    { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.25); }

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sub);
}

.feature-list li::before {
  content: '→';
  color: var(--blue);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

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

.stat-item {
  padding: 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.stat-desc  { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works { padding: 100px 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; position: relative; }

.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(59,130,246,0.3);
  position: relative;
  z-index: 2;
}

.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

.step-code {
  margin-top: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-code);
  font-size: 12px;
  color: var(--cyan);
  text-align: left;
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing { padding: 100px 0; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.toggle-label { font-size: 14px; color: var(--text-sub); }
.toggle-label.active { color: var(--text); font-weight: 600; }

.toggle-switch {
  width: 44px; height: 24px;
  background: var(--blue);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch.monthly::after { transform: translateX(20px); }

.save-badge {
  background: rgba(16,185,129,0.15);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 99px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--transition-s);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 50px rgba(59,130,246,0.15);
  background: linear-gradient(135deg, #0c1d35 0%, #0e2240 100%);
}

.popular-label {
  position: absolute;
  top: -12px;
  left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: white;
  border-radius: 99px;
  padding: 3px 16px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-plan { font-size: 13px; font-weight: 600; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.8px; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  margin: 12px 0 4px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.pricing-price sup { font-size: 18px; font-weight: 600; margin-top: 8px; }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-top: 4px; margin-bottom: 16px; font-weight: 400; }
.pricing-desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; margin-bottom: 20px; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
}

.pricing-features .check {
  width: 18px; height: 18px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features .cross {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(71,85,105,0.1);
}

.pricing-cta {
  margin-top: auto;
  padding-top: 24px;
}

.pricing-cta .btn { width: 100%; justify-content: center; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--bg-deep); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-s);
}
.testimonial-card:hover { border-color: var(--border-bright); transform: translateY(-2px); }

.testimonial-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; }

.testimonial-quote {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.av-blue   { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.av-green  { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.av-purple { background: linear-gradient(135deg, var(--purple), var(--blue)); }

.author-name  { font-size: 14px; font-weight: 600; color: var(--text); }
.author-title { font-size: 12px; color: var(--text-muted); }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  border-radius: 28px;
  padding: 64px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
}

.cta-box .section-title { margin-bottom: 16px; }
.cta-box .section-sub { margin: 0 auto 36px; }

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue-light); }

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

.footer-compliance {
  display: flex;
  align-items: center;
  gap: 16px;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .grid-3, .steps, .testimonials-grid { grid-template-columns: 1fr; }
  .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-body { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .hero { padding: 110px 0 60px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .grid-2, .pricing-grid, .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .hero-title { letter-spacing: -2px; }
  .cta-box { padding: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
