/* ========================================
   CVBuilder AI — Landing Page Styles
   Design: Dark Mode, Glassmorphism, Premium
======================================== */

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

:root {
  --primary: #6C63FF;
  --primary-light: #8B85FF;
  --primary-dark: #5048E5;
  --accent: #FF6B9D;
  --accent2: #00D2FF;
  --bg: #080B14;
  --bg-2: #0D1117;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(108,99,255,0.4);
  --text: #F0F2FF;
  --text-muted: rgba(240,242,255,0.55);
  --text-dim: rgba(240,242,255,0.35);
  --gradient: linear-gradient(135deg, #6C63FF, #FF6B9D);
  --gradient2: linear-gradient(135deg, #6C63FF, #00D2FF);
  --glow: 0 0 60px rgba(108,99,255,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Be Vietnam Pro', sans-serif;
}

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(8,11,20,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.4rem; font-weight: 800; color: var(--text);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.logo-icon { color: var(--primary); font-size: 1.2rem; }
.logo-ai {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--gradient);
  color: white; text-decoration: none;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(108,99,255,0.4);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,99,255,0.5); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -200px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: var(--accent); bottom: -150px; right: -100px; animation-delay: -3s; }
.blob-3 { width: 400px; height: 400px; background: var(--accent2); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -6s; }
@keyframes blobFloat { 0%,100% { transform: scale(1) translate(0,0); } 33% { transform: scale(1.1) translate(20px,-20px); } 66% { transform: scale(0.9) translate(-20px,20px); } }
.blob-1 { animation-name: blobFloat; }
.blob-2 { animation-name: blobFloat2; }
.blob-3 { animation-name: blobFloat3; }
@keyframes blobFloat2 { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15) translate(-30px,-10px); } }
@keyframes blobFloat3 { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.2); } }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(108,99,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(108,99,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,99,255,0.15);
  border: 1px solid rgba(108,99,255,0.3);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--primary-light); margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}
.badge-dot {
  width: 8px; height: 8px; background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ADE80;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-text {
  position: relative;
  background: var(--gradient2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 32px; line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient);
  color: white; text-decoration: none;
  padding: 16px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 30px rgba(108,99,255,0.4);
  transition: all 0.3s ease; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(108,99,255,0.5); }
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); text-decoration: none;
  padding: 16px 24px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.btn-ghost:hover { color: var(--text); border-color: var(--primary); background: rgba(108,99,255,0.1); }

.hero-social-proof {
  display: flex; align-items: center; gap: 12px;
  animation: fadeInUp 0.7s ease 0.4s both;
  font-size: 0.9rem; color: var(--text-muted);
}
.avatars { display: flex; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: white;
  margin-left: -8px; border: 2px solid var(--bg);
  transition: transform 0.2s;
}
.avatar:first-child { margin-left: 0; }
.avatar:hover { transform: translateY(-4px) scale(1.1); z-index: 1; }
.av1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.av2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.av3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.av4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.av5 { background: linear-gradient(135deg, #fa709a, #fee140); }

/* ─── HERO VISUAL ─── */
.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; }
.cv-preview-mockup {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--glow);
  width: 340px; overflow: hidden;
  animation: fadeInRight 0.8s ease 0.2s both;
}
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.mockup-header {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA41; }
.mockup-title { flex: 1; text-align: center; font-size: 0.8rem; color: var(--text-muted); }

.mockup-content { padding: 20px; }
.mock-profile { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.mock-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient);
  animation: shimmer 2s infinite;
}
.mock-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mock-name { height: 12px; background: rgba(255,255,255,0.2); border-radius: 6px; width: 70%; animation: shimmer 2s infinite 0.2s; }
.mock-role { height: 8px; background: rgba(108,99,255,0.4); border-radius: 4px; width: 50%; animation: shimmer 2s infinite 0.4s; }
.mock-contact { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; width: 80%; animation: shimmer 2s infinite 0.6s; }

.mock-section { margin-bottom: 16px; }
.mock-section-title { height: 10px; background: rgba(108,99,255,0.5); border-radius: 5px; width: 40%; margin-bottom: 10px; animation: shimmer 2s infinite; }
.mock-line { height: 7px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 6px; animation: shimmer 2s infinite; }
.mock-line.long { width: 100%; }
.mock-line.medium { width: 75%; }
.mock-line.short { width: 50%; }

.mock-skills { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-skill-tag {
  height: 22px; border-radius: 50px; background: rgba(108,99,255,0.2);
  border: 1px solid rgba(108,99,255,0.3);
  width: 60px; animation: shimmer 2s infinite;
}
.mock-skill-tag.w2 { width: 80px; animation-delay: 0.2s; }
.mock-skill-tag.w3 { width: 50px; animation-delay: 0.4s; }

@keyframes shimmer {
  0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; }
}

.ai-badge-float {
  position: absolute; bottom: 16px; right: -20px;
  background: linear-gradient(135deg, #6C63FF, #FF6B9D);
  color: white; padding: 8px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(108,99,255,0.5);
  animation: aiFloat 3s ease-in-out infinite;
}
@keyframes aiFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.floating-cards { position: absolute; top: 0; right: -40px; display: flex; flex-direction: column; gap: 12px; }
.float-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 10px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--text);
  white-space: nowrap;
  animation: cardFloat 3s ease-in-out infinite;
}
.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: -1s; }
.card-3 { animation-delay: -2s; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ─── STATS BAR ─── */
.stats-bar {
  background: rgba(108,99,255,0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.stats-container {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.stat { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 2.5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ─── SECTION COMMON ─── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-block;
  background: rgba(108,99,255,0.15);
  border: 1px solid rgba(108,99,255,0.3);
  color: var(--primary-light);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ─── FEATURES ─── */
.features { padding: 100px 24px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px; position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient);
  opacity: 0; transition: opacity 0.3s;
  border-radius: var(--radius);
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(108,99,255,0.2); }
.feature-card.featured { border-color: rgba(108,99,255,0.4); background: rgba(108,99,255,0.08); grid-column: span 1; }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.feature-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--gradient);
  color: white; padding: 4px 12px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}

/* ─── HOW IT WORKS ─── */
.how-it-works { padding: 100px 24px; background: rgba(255,255,255,0.02); }
.steps { display: flex; align-items: center; gap: 24px; justify-content: center; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 220px; max-width: 280px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.step:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-number { font-size: 3rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); }
.step-visual { font-size: 2.5rem; margin-top: 16px; }
.step-arrow { font-size: 2rem; color: var(--primary); opacity: 0.5; }

/* ─── TEMPLATES ─── */
.templates-section { padding: 100px 24px; }
.templates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.template-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s ease; cursor: pointer;
}
.template-card:hover, .template-card.active-template { border-color: var(--primary); box-shadow: 0 0 40px rgba(108,99,255,0.2); transform: translateY(-4px); }
.template-preview { height: 260px; padding: 20px; background: rgba(255,255,255,0.02); display: flex; gap: 12px; }
.template-info { padding: 20px; }
.template-info h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.template-info p { font-size: 0.85rem; color: var(--text-muted); }
.template-badge {
  display: inline-block; margin-top: 10px;
  background: var(--gradient); color: white;
  padding: 3px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}

/* Template Modern */
.tp-modern { background: #1a1a2e; border-radius: 8px; }
.tp-sidebar { width: 35%; background: rgba(108,99,255,0.3); border-radius: 6px 0 0 6px; padding: 12px; }
.tp-avatar-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); margin: 0 auto 10px; }
.tp-name-block { height: 8px; background: rgba(255,255,255,0.4); border-radius: 4px; margin-bottom: 6px; }
.tp-contact-lines { display: flex; flex-direction: column; gap: 5px; }
.tp-line { height: 5px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.tp-line.short { width: 60%; }
.tp-line.medium { width: 75%; }
.tp-line.long { width: 100%; }
.tp-main { flex: 1; padding: 12px; }
.tp-section-title { height: 8px; background: rgba(108,99,255,0.6); border-radius: 4px; width: 60%; margin-bottom: 10px; }
.tp-section-title.mt { margin-top: 14px; }
.tp-content-lines { display: flex; flex-direction: column; gap: 5px; }

/* Template Classic */
.tp-classic { background: #fafafa; border-radius: 8px; flex-direction: column; gap: 8px; }
.tp-header-classic { padding-bottom: 10px; border-bottom: 2px solid #e0e0e0; }
.tp-name-classic { height: 12px; background: #333; border-radius: 4px; width: 60%; margin-bottom: 6px; }
.tp-role-classic { height: 7px; background: #999; border-radius: 4px; width: 40%; }
.tp-body-classic { display: flex; gap: 12px; flex: 1; }
.tp-left-col, .tp-right-col { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.tp-section-title-c { height: 7px; background: #444; border-radius: 4px; width: 70%; }
.tp-left-col .tp-line, .tp-right-col .tp-line { background: #ddd; }

/* Template Creative */
.tp-creative { background: #0f0f1a; border-radius: 8px; flex-direction: column; gap: 0; padding: 0; }
.tp-top-bar { height: 8px; background: var(--gradient); border-radius: 8px 8px 0 0; }
.tp-creative-body { display: flex; flex: 1; gap: 0; overflow: hidden; }
.tp-accent-col { width: 35%; background: rgba(108,99,255,0.2); padding: 12px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.tp-avatar-sq { width: 44px; height: 44px; border-radius: 8px; background: var(--gradient); }
.tp-skill-dots { display: flex; flex-direction: column; gap: 6px; }
.tp-skill-row { display: flex; gap: 4px; }
.tp-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.tp-dot.filled { background: var(--primary); }
.tp-creative-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 7px; }
.tp-divider-line { height: 1px; background: rgba(255,255,255,0.1); }

.templates-cta { text-align: center; margin-top: 40px; }

/* ─── PRICING ─── */
.pricing { padding: 100px 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.pricing-card.popular-plan {
  border-color: var(--primary);
  background: rgba(108,99,255,0.08);
  box-shadow: 0 0 60px rgba(108,99,255,0.2);
  transform: scale(1.02);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: white;
  padding: 6px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.plan-price { font-size: 2.4rem; font-weight: 900; margin-bottom: 24px; }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { font-size: 0.95rem; color: var(--text-muted); }
.btn-plan-free, .btn-plan-pro {
  display: block; text-align: center; text-decoration: none;
  padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s ease;
}
.btn-plan-free { border: 1px solid var(--border); color: var(--text); }
.btn-plan-free:hover { border-color: var(--primary); color: var(--primary); }
.btn-plan-pro { background: var(--gradient); color: white; box-shadow: 0 8px 24px rgba(108,99,255,0.4); }
.btn-plan-pro:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(108,99,255,0.5); }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 24px; background: rgba(255,255,255,0.02); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.testimonial-card .stars { margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 0.9rem;
}
.a1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.a2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.a3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-dim); }

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 120px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-blob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.2), transparent 70%);
  pointer-events: none;
}
.final-cta h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.final-cta p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; }
.btn-primary.large { font-size: 1.1rem; padding: 20px 48px; }

/* ─── FOOTER ─── */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); }
.footer-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem; }
.footer p { color: var(--text-dim); font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 100px 20px 60px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .stats-container { justify-content: center; gap: 32px; }
  .stat-divider { display: none; }
  .footer-container { flex-direction: column; text-align: center; }
}
