/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-light-2: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --accent-blue: #3B82F6;
  --accent-violet: #7C3AED;
  --success: #10B981;
  --warning: #F59E0B;
  --border: #E2E8F0;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 10px 40px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 4px 12px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.08);
  --gradient: linear-gradient(135deg, #3B82F6, #7C3AED);
  --gradient-text: linear-gradient(135deg, #3B82F6, #7C3AED);
  --max-width: 1200px;
  --section-padding: 120px;
  --radius: 16px;
  --btn-radius: 12px;
  --nav-glass: rgba(241, 245, 249, 0.8);
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
}
.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-subtext {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}
.section-header-center { text-align: center; }
.section-header-center .section-subtext { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--btn-radius);
  transition: all 0.3s ease;
  border: none;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.3); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--bg-white);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--btn-radius);
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--accent-blue); color: var(--accent-blue); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeRotate {
  0% { opacity: 0; transform: translateY(12px); }
  10% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(0); }
  40% { opacity: 0; transform: translateY(-12px); }
  100% { opacity: 0; transform: translateY(-12px); }
}

/* ===== NAVBAR (GLASS) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: var(--nav-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(15,23,42,0.04), 0 4px 20px rgba(15,23,42,0.04);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}
.nav-logo img { height: 45px; width: auto; display: block; }
.nav-logo .ai {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-login {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.nav-login:hover { color: var(--text-primary); }
.nav-cta {
  padding: 10px 24px;
  background: var(--gradient);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--btn-radius);
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.nav-back {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.nav-back:hover { color: var(--accent-blue); }
.hamburger { display: none; background: none; border: none; padding: 4px; }
.hamburger i { width: 24px; height: 24px; color: var(--text-primary); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,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(124,58,237,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}
.hero-eyebrow span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hero-rotating-wrapper {
  display: inline-block;
  position: relative;
  height: 1.1em;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-rotating-text {
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-rotating-text.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-subtext {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-visual { position: relative; }
.hero-dashboard {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
}
.floating-stat {
  position: absolute;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}
.floating-stat .stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}
.floating-stat .stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-1 { top: 10%; left: -30px; animation-delay: 0s; }
.stat-2 { top: 45%; right: -20px; animation-delay: 1.3s; }
.stat-3 { bottom: 8%; left: 10%; animation-delay: 2.6s; }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 80px 0;
  background: var(--bg-light);
}
.social-proof-label {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.stat-card { text-align: center; }
.stat-card .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.social-proof-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.social-proof-image img { width: 100%; }

/* ===== EMPATHY ===== */
.empathy {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}
.empathy-content { max-width: 800px; margin: 0 auto; text-align: center; }
.empathy-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.empathy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.empathy-stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.empathy-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}
.step-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== STAKES ===== */
.stakes {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}
.stakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.stake-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}
.stake-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.stake-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.stake-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.stake-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.stakes-callout {
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--gradient);
  border-radius: var(--radius);
  text-align: center;
}
.stakes-callout p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.5;
}

/* ===== FEATURES ===== */
.features {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}
.features-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}
.features .container { position: relative; z-index: 1; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.feature-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-blue);
}
.feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== SUCCESS ===== */
.success {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}
.success-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.success-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}
.success-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.success-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.success-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.success-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.success-identity {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.success-identity-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.success-image {
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.success-image img { width: 100%; }

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}
.testimonial-content { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-quote-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 80px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: -10px;
}
.testimonial-text {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author-info { text-align: left; }
.testimonial-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 14px;
  color: var(--text-muted);
}
.testimonial-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.testimonial-metric-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.testimonial-metric-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 44px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.pricing-card.featured {
  border: 2px solid var(--accent-blue);
  box-shadow: 0 4px 12px rgba(59,130,246,0.1), 0 20px 60px rgba(59,130,246,0.08);
}
.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing-badge.amber {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}
.pricing-badge.gradient {
  background: var(--gradient);
  color: #FFFFFF;
}
.pricing-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pricing-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}
.pricing-features { margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
}
.pricing-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ECFDF5;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-check i { width: 14px; height: 14px; }
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}
.pricing-card .btn-primary, .pricing-card .btn-secondary { width: 100%; justify-content: center; }

/* ===== FAQ ===== */
.faq {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}
.faq-list {
  max-width: 780px;
  margin: 64px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  gap: 16px;
}
.faq-question:hover { color: var(--accent-blue); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}
.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,250,252,0.9) 0%, rgba(248,250,252,0.95) 100%);
}
.final-cta .container { position: relative; z-index: 1; text-align: center; }
.final-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.final-cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
}
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.final-cta-fine {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-logo img { height: 80px; width: auto; display: block; }
.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}
.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent-blue); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-padding: 100px; }
  .hero h1 { font-size: 52px; }
  .section-heading { font-size: 40px; }
}
@media (max-width: 768px) {
  :root { --section-padding: 80px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 40px; }
  .hero { padding: 130px 0 80px; }
  .section-heading { font-size: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-card .stat-number { font-size: 36px; }
  .empathy-stats { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .stakes-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .success-cards { grid-template-columns: 1fr; gap: 20px; }
  .success-identity { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-text { font-size: 18px; }
  .testimonial-metrics { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .floating-stat { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .section-heading { font-size: 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn-primary, .final-cta-buttons .btn-secondary { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 28px; }
}
