:root {
  --bg: #f0fdf4;
  --surface: #ffffff;
  --surface-glass: rgba(255,255,255,0.72);
  --text: #1e293b;
  --text-muted: #64748b;
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-soft: rgba(16,185,129,0.12);
  --primary-very-soft: rgba(16,185,129,0.06);
  --secondary: #0f172a;
  --secondary-soft: rgba(15,23,42,0.08);
  --success: #10b981;
  --border: rgba(30,41,59,0.08);
  --border-light: rgba(255,255,255,0.6);
  --shadow-color: rgba(16,185,129,0.18);
  --shadow-sm: 0 8px 24px rgba(16,185,129,0.06);
  --shadow: 0 24px 60px -16px rgba(16,185,129,0.1);
  --shadow-lg: 0 40px 90px -24px rgba(16,185,129,0.18);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1200px;
  --header-height: 78px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #34d399, transparent 70%);
  top: -220px; right: -220px;
}

body::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6ee7b7, transparent 70%);
  bottom: 5%; left: -180px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; position: relative; }
.section-header { max-width: 720px; margin: 0 auto 64px; text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--primary-very-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--text);
}

.section-title span,
.hero-title span,
.text-accent { color: var(--primary); }

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover { transform: translateY(-3px); }
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 32px -10px rgba(16,185,129,0.45);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-primary:hover { box-shadow: 0 24px 54px -12px rgba(16,185,129,0.55); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 32px -10px rgba(16,185,129,0.45); }
  50% { box-shadow: 0 16px 40px -8px rgba(16,185,129,0.65); }
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: none;
}

.btn-secondary:hover { border-color: var(--primary); color: var(--primary-dark); box-shadow: var(--shadow-sm); }

.btn-lg { padding: 20px 36px; font-size: 17px; }
.btn-sm { padding: 13px 22px; font-size: 14px; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 30px rgba(15,23,42,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}

.logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(16,185,129,0.35);
}

.logo-icon svg { width: 22px; height: 22px; }

.nav-desktop { display: flex; align-items: center; gap: 36px; }

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--primary-dark); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: none;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.burger-line {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: var(--surface);
  z-index: 1002;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -20px 0 60px rgba(15,23,42,0.12);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-close {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: none;
  background: var(--primary-very-soft);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.mobile-close svg { width: 22px; height: 22px; }

.mobile-nav { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.mobile-link {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-link:hover { background: var(--primary-very-soft); color: var(--primary-dark); }

.mobile-cta { margin-top: 28px; width: 100%; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.35);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* Hero */
.hero { padding: 170px 0 110px; overflow: hidden; }

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 22px;
  color: var(--text);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 34px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item { display: flex; flex-direction: column; gap: 6px; }

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-label { font-size: 14px; font-weight: 500; color: var(--text-muted); }

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 340px;
  width: 100%;
  display: grid;
  place-items: center;
}

.hero-icon {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.12);
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.12);
  color: #10b981;
  animation: float 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-icon svg {
  width: 26px;
  height: 26px;
}

.hero-icon:nth-child(1) { top: 4%; left: 5%; }
.hero-icon:nth-child(2) { top: 7%; left: 34%; }
.hero-icon:nth-child(3) { top: 5%; left: 64%; }
.hero-icon:nth-child(4) { top: 8%; left: 85%; }
.hero-icon:nth-child(5) { top: 41%; left: 14%; }
.hero-icon:nth-child(6) { top: 37%; left: 46%; }
.hero-icon:nth-child(7) { top: 43%; left: 78%; }
.hero-icon:nth-child(8) { bottom: 9%; left: 6%; }
.hero-icon:nth-child(9) { bottom: 6%; left: 38%; }
.hero-icon:nth-child(10) { bottom: 8%; left: 74%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Cards common */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::after { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-very-soft);
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.card-icon svg { width: 26px; height: 26px; }

.card-title { font-size: 20px; font-weight: 800; margin: 0 0 10px; line-height: 1.3; }
.card-text { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card { padding: 34px; }

.problem-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-very-soft);
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.problem-icon svg { width: 26px; height: 26px; }

.problem-title { font-size: 20px; font-weight: 800; margin: 0 0 10px; }
.problem-text { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* Features bento */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bento-card { display: flex; flex-direction: column; }
.bento-card.large { grid-column: span 2; grid-row: span 1; }
.bento-card:nth-child(4),
.bento-card:nth-child(5) { grid-column: span 2; }

.bento-visual {
  margin-top: auto;
  padding-top: 28px;
  position: relative;
  height: 60px;
}

.bento-pulse {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  left: 0; top: 50%;
  transform: translateY(-50%);
  animation: bento-pulse 2s ease-out infinite;
}

.bento-pulse.delay { animation-delay: 1s; left: 40px; }

@keyframes bento-pulse {
  0% { transform: translateY(-50%) scale(1); opacity: 1; }
  100% { transform: translateY(-50%) scale(3); opacity: 0; }
}

/* Use cases */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.use-card { padding: 34px; }

.use-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-very-soft);
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.use-icon svg { width: 28px; height: 28px; }

.use-title { font-size: 21px; font-weight: 800; margin: 0 0 10px; }
.use-text { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* Benefits / proof numbers */
.proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proof-number-item {
  text-align: center;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-number-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.benefit-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-very-soft);
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.benefit-icon svg { width: 28px; height: 28px; }

.proof-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.proof-number-label { font-size: 15px; font-weight: 500; color: var(--text-muted); }

/* How timeline */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.timeline-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px -10px rgba(16,185,129,0.4);
}

.timeline-content { padding-top: 6px; }
.timeline-content h3 { margin: 0 0 8px; font-size: 21px; font-weight: 800; }
.timeline-content p { margin: 0; font-size: 16px; color: var(--text-muted); line-height: 1.6; }

.how-cta { text-align: center; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] .faq-question::after { content: '−'; }

.faq-answer { padding-top: 14px; font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.faq-answer p { margin: 0; }

/* Final CTA */
.final-cta { padding-bottom: 130px; }

.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: 72px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  filter: blur(40px);
}

.final-cta-content { max-width: 580px; position: relative; z-index: 1; }

.final-cta-title {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
}

.final-cta-subtitle {
  font-size: 17px;
  opacity: 0.92;
  margin: 0 0 32px;
  line-height: 1.65;
}

.final-cta-card .btn {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 12px 32px -8px rgba(15,23,42,0.25);
}

.final-cta-card .btn:hover { box-shadow: 0 20px 48px -10px rgba(15,23,42,0.35); }

.final-cta-glow {
  position: absolute;
  bottom: -120px; right: 60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  filter: blur(60px);
}

/* Footer */
.footer {
  background: var(--secondary);
  color: #fff;
  padding: 64px 0 32px;
}

.footer .logo { color: #fff; margin-bottom: 18px; }
.footer .logo-icon { background: var(--primary); }

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-desc {
  max-width: 320px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  justify-content: flex-end;
}

.footer-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copy { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }
.footer-disclaimer { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

/* Mobile bottom CTA */
.mobile-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(15,23,42,0.08);
}

.mobile-bottom-cta .btn { width: 100%; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; min-height: 340px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.large { grid-column: span 2; }
  .bento-card:nth-child(4),
  .bento-card:nth-child(5) { grid-column: span 2; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-numbers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .nav-desktop { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .section { padding: 90px 0; }
  .section-title { font-size: 36px; }
  .hero { padding-top: 140px; }
  .hero-title { font-size: 44px; }
  .final-cta-card { padding: 52px; }
  .final-cta-title { font-size: 32px; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 767px) {
  .container { padding: 0 16px; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
  .section-title { font-size: 30px; }
  .section-subtitle { font-size: 16px; }
  .hero { padding: 120px 0 70px; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 24px; justify-content: center; }
  .stat-value { font-size: 26px; }
  .hero-visual { min-height: 280px; }
  .hero-icon {
    width: 50px;
    height: 50px;
  }
  .hero-icon svg {
    width: 22px;
    height: 22px;
  }
  .problem-grid,
  .use-grid,
  .bento-grid,
  .proof-numbers { grid-template-columns: 1fr; }
  .bento-card.large { grid-column: span 1; }
  .bento-card:nth-child(4),
  .bento-card:nth-child(5) { grid-column: span 1; }
  .card { padding: 24px; }
  .card-title { font-size: 18px; }
  .use-title { font-size: 19px; }
  .proof-number { font-size: 34px; }
  .timeline { gap: 24px; }
  .timeline-line { left: 22px; }
  .timeline-marker { width: 46px; height: 46px; font-size: 17px; }
  .timeline-content h3 { font-size: 18px; }
  .faq-question { font-size: 16px; }
  .final-cta { padding-bottom: 100px; }
  .final-cta-card { padding: 36px 24px; text-align: center; }
  .final-cta-title { font-size: 26px; }
  .final-cta-card .btn { width: 100%; }
  .footer { padding: 48px 0 100px; }
  .footer-grid { margin-bottom: 28px; }
  .footer-nav { gap: 10px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .mobile-bottom-cta { display: block; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
}
