/* ============================================================
   Design tokens — copied verbatim from src/styles.css
   ============================================================ */
:root {
  --radius: 0.875rem;
  --background: oklch(0.985 0.012 90);
  --foreground: oklch(0.22 0.04 160);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.04 160);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.22 0.04 160);
  --primary: oklch(0.58 0.13 158);
  --primary-foreground: oklch(0.99 0.01 90);
  --primary-glow: oklch(0.72 0.14 158);
  --secondary: oklch(0.95 0.03 80);
  --secondary-foreground: oklch(0.28 0.06 158);
  --muted: oklch(0.96 0.018 90);
  --muted-foreground: oklch(0.5 0.03 158);
  --accent: oklch(0.74 0.16 38);
  --accent-foreground: oklch(0.99 0.01 90);
  --accent-soft: oklch(0.93 0.06 38);
  --destructive: oklch(0.6 0.22 27);
  --destructive-foreground: oklch(0.99 0.01 90);
  --border: oklch(0.9 0.025 130);
  --input: oklch(0.9 0.025 130);
  --ring: oklch(0.58 0.13 158);
  --gradient-hero: linear-gradient(135deg, oklch(0.96 0.04 145) 0%, oklch(0.94 0.06 60) 100%);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --shadow-soft: 0 10px 30px -12px color-mix(in oklab, var(--primary) 25%, transparent);
  --shadow-warm: 0 12px 40px -16px color-mix(in oklab, var(--accent) 35%, transparent);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: oklch(0.129 0.042 264.695);
    --foreground: oklch(0.984 0.003 247.858);
    --card: oklch(0.208 0.042 265.755);
    --card-foreground: oklch(0.984 0.003 247.858);
    --primary: oklch(0.929 0.013 255.508);
    --primary-foreground: oklch(0.208 0.042 265.755);
    --secondary: oklch(0.279 0.041 260.031);
    --secondary-foreground: oklch(0.984 0.003 247.858);
    --muted: oklch(0.279 0.041 260.031);
    --muted-foreground: oklch(0.704 0.04 256.788);
    --accent: oklch(0.279 0.041 260.031);
    --accent-foreground: oklch(0.984 0.003 247.858);
    --border: oklch(1 0 0 / 10%);
    --input: oklch(1 0 0 / 15%);
    --ring: oklch(0.551 0.027 264.364);
  }
}

/* ============================================================
   Base resets
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes popUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes accordionDown {
  from { grid-template-rows: 0fr; opacity: 0; }
  to   { grid-template-rows: 1fr; opacity: 1; }
}
@keyframes accordionUp {
  from { grid-template-rows: 1fr; opacity: 1; }
  to   { grid-template-rows: 0fr; opacity: 0; }
}

.animate-hero-text  { animation: fadeSlideUp 0.6s ease both; }
.animate-hero-image { animation: scaleIn    0.7s 0.15s ease both; }
.animate-payment    { animation: popUp      0.5s 0.6s  ease both; }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }

/* ============================================================
   Layout utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.container-sm {
  width: 100%;
  max-width: 48rem; /* max-w-3xl */
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .container-sm { padding-inline: 1.5rem; } }

.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-2 { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background-color: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo-link { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background-image: var(--gradient-primary);
  color: var(--primary-foreground);
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.site-name { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-desktop a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.15s; }
.nav-desktop a:hover { color: var(--foreground); }

.header-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .header-actions { display: flex; } }

.menu-toggle { display: flex; align-items: center; justify-content: center; color: var(--foreground); }
@media (min-width: 768px) { .menu-toggle { display: none; } }

.mobile-menu { display: none; border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); }
.mobile-menu.open { display: block; }
.mobile-menu .inner { padding: 0.75rem 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: background-color 0.15s, color 0.15s;
}
.mobile-menu a:hover { background-color: var(--muted); color: var(--foreground); }
.mobile-menu .actions { display: flex; gap: 0.5rem; padding-top: 0.5rem; }
.mobile-menu .actions .btn { flex: 1; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.15s, color 0.15s, opacity 0.15s, border-color 0.15s;
  outline-offset: 2px;
  height: 2.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn:focus-visible { outline: 2px solid var(--ring); }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; pointer-events: none; }

/* sizes */
.btn-sm  { height: 2rem;  padding: 0.25rem 0.75rem; font-size: 0.75rem; }
.btn-lg  { height: 2.5rem; padding: 0.5rem 2rem; font-size: 1rem; border-radius: 0.375rem; }
.btn-full { width: 100%; }

/* pill modifier */
.btn-pill { border-radius: 9999px; }

/* variants */
.btn-primary { background-color: var(--primary); color: var(--primary-foreground); box-shadow: 0 1px 2px rgba(0,0,0,.1); }
.btn-primary:hover { background-color: color-mix(in oklab, var(--primary) 90%, black); }

.btn-ghost { background: transparent; border-color: transparent; }
.btn-ghost:hover { background-color: color-mix(in oklab, var(--primary) 15%, transparent); color: var(--primary); }

.btn-outline {
  background-color: var(--background);
  border-color: var(--input);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.btn-outline:hover { background-color: color-mix(in oklab, var(--primary) 15%, transparent); color: var(--primary); }

.btn-secondary { background-color: var(--secondary); color: var(--secondary-foreground); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.btn-secondary:hover { background-color: color-mix(in oklab, var(--secondary) 80%, black); }

.btn-dark {
  background-color: var(--foreground);
  color: var(--background);
  border-color: transparent;
}
.btn-dark:hover { background-color: color-mix(in oklab, var(--foreground) 90%, black); }

.btn-ghost-light {
  background: transparent;
  border-color: color-mix(in oklab, var(--primary-foreground) 40%, transparent);
  color: var(--primary-foreground);
}
.btn-ghost-light:hover { background-color: color-mix(in oklab, var(--primary-foreground) 10%, transparent); }

.btn-card { background-color: var(--card); color: var(--foreground); }
.btn-card:hover { background-color: color-mix(in oklab, var(--card) 90%, black); }

/* ============================================================
   Hero section
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background-image: var(--gradient-hero);
}
.hero .grid { align-items: center; }
.hero .grid > * { min-width: 0; }
@media (min-width: 1024px) { .hero .grid { grid-template-columns: repeat(2, 1fr); } }

.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 5rem 0; }
@media (min-width: 1024px) { .hero-content { padding: 7rem 0; } }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  width: fit-content;
  box-shadow: var(--shadow-soft);
}
.badge svg { width: 0.875rem; height: 0.875rem; color: var(--accent); }

.hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero h1 span { color: var(--primary); }
.hero p { margin-top: 1.25rem; max-width: 36rem; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.6; }

.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-trust { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.hero-trust svg { width: 1rem; height: 1rem; color: var(--primary); }

/* Invoice mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}
@media (min-width: 1024px) { .hero-visual { padding: 7rem 0; } }

.invoice-wrap { position: relative; max-width: 28rem; width: 100%; margin-inline: auto; }
.invoice-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 1.5rem;
  opacity: 0.6;
  filter: blur(48px);
  background: var(--gradient-primary);
}
.invoice-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-warm);
}
.invoice-header { display: flex; align-items: flex-start; justify-content: space-between; }
.invoice-header .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); }
.invoice-header .number { font-size: 1.125rem; font-weight: 600; }
.invoice-status {
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--primary) 10%, transparent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}
.invoice-rows { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.invoice-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.invoice-row .row-label { color: var(--muted-foreground); }
.invoice-row .row-value { font-weight: 500; color: var(--foreground); }
.invoice-total { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; background-color: var(--muted); border-radius: 0.75rem; padding: 0.75rem 1rem; }
.invoice-total .total-label { font-size: 0.875rem; color: var(--muted-foreground); }
.invoice-total .total-amount { font-size: 1.5rem; font-weight: 600; color: var(--foreground); }
.invoice-actions { margin-top: 1.25rem; display: flex; gap: 0.5rem; }
.invoice-actions .btn { flex: 1; }

.payment-popup {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: none;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .payment-popup { display: block; } }
.payment-popup .inner { display: flex; align-items: center; gap: 0.75rem; }
.payment-popup .icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background-color: color-mix(in oklab, var(--accent) 15%, transparent);
  color: var(--accent);
  flex-shrink: 0;
}
.payment-popup .icon svg { width: 1.25rem; height: 1.25rem; }
.payment-popup .sub-label { font-size: 0.75rem; color: var(--muted-foreground); }
.payment-popup .amount { font-size: 0.875rem; font-weight: 600; }

/* ============================================================
   Social proof
   ============================================================ */
.social-proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--muted) 40%, transparent);
  padding: 2.5rem 0;
}
.social-proof .tagline { text-align: center; font-size: 0.875rem; color: var(--muted-foreground); }
.social-proof .tagline strong { font-weight: 600; color: var(--foreground); }
.social-proof .names {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  opacity: 0.7;
}
.social-proof .names span { font-size: 0.875rem; font-weight: 600; letter-spacing: -0.02em; color: color-mix(in oklab, var(--foreground) 70%, transparent); }

/* ============================================================
   Sections generic
   ============================================================ */
.section { padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }
.section-muted { background-color: color-mix(in oklab, var(--muted) 40%, transparent); }

.section-header { max-width: 40rem; margin-inline: auto; text-align: center; }
.section-header .eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.section-header h2 { margin-top: 0.75rem; font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.section-header p { margin-top: 1rem; font-size: 1rem; color: var(--muted-foreground); line-height: 1.6; }

/* ============================================================
   Feature cards
   ============================================================ */
.feature-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-soft); }
.feature-card .icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 1rem;
  background-image: var(--gradient-primary);
  color: var(--primary-foreground);
}
.feature-card .icon svg { width: 1.5rem; height: 1.5rem; }
.feature-card h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.feature-card > p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.feature-card ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.feature-card li svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }

/* ============================================================
   How it works
   ============================================================ */
.step-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
}
.step-card .step-n { font-size: 3rem; font-weight: 700; color: color-mix(in oklab, var(--primary) 20%, transparent); line-height: 1; }
.step-card h3 { margin-top: 1rem; font-size: 1.25rem; font-weight: 600; }
.step-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ============================================================
   Mexico section
   ============================================================ */
.mexico-section .text-col > .eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.mexico-section .text-col h2 { margin-top: 0.75rem; font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.mexico-section .text-col > p { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.6; }
.mexico-items { display: flex; flex-direction: column; gap: 1.25rem; }
.mexico-item { display: flex; gap: 1rem; border-radius: 1rem; border: 1px solid var(--border); background-color: var(--card); padding: 1.25rem; }
.mexico-item .icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; flex-shrink: 0;
  background-color: color-mix(in oklab, var(--accent) 15%, transparent);
  color: var(--accent);
}
.mexico-item .icon svg { width: 1.25rem; height: 1.25rem; }
.mexico-item h3 { font-weight: 600; font-size: 0.9375rem; }
.mexico-item p { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.125rem; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 3.5rem; }

.pricing-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  width: 100%;
  max-width: 24rem;
}
.pricing-card.featured { border-color: color-mix(in oklab, var(--primary) 40%, transparent); box-shadow: var(--shadow-warm); }
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background-color: var(--accent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-foreground);
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.125rem; font-weight: 600; }
.pricing-card .plan-desc { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }
.price-row { margin-top: 1.5rem; display: flex; align-items: baseline; gap: 0.5rem; }
.price-amount { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.03em; }
.price-period { font-size: 0.875rem; color: var(--muted-foreground); }
.pricing-card .btn { margin-top: 1.5rem; }
.pricing-card ul { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-card li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; }
.pricing-card li svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-card { border-radius: 1.5rem; border: 1px solid var(--border); background-color: var(--card); padding: 1.75rem; }
.testimonial-card blockquote { font-size: 1rem; line-height: 1.7; color: var(--foreground); }
.testimonial-card figcaption { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px; flex-shrink: 0;
  background-image: var(--gradient-primary);
  color: var(--primary-foreground);
  font-size: 0.875rem; font-weight: 600;
}
.testimonial-card .t-name { font-size: 0.875rem; font-weight: 600; }
.testimonial-card .t-role { font-size: 0.75rem; color: var(--muted-foreground); }

/* ============================================================
   FAQ / Accordion
   ============================================================ */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
details.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 0 1.25rem;
}
details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "";
  width: 1rem; height: 1rem; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s;
}
details.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding-bottom: 1rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta-section { padding: 5rem 1rem; }
@media (min-width: 640px) { .final-cta-section { padding: 7rem 1.5rem; } }
@media (min-width: 1024px) { .final-cta-section { padding: 7rem 2rem; } }

.final-cta-box {
  max-width: 64rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  background-image: var(--gradient-primary);
  box-shadow: var(--shadow-warm);
}
@media (min-width: 640px) { .final-cta-box { padding: 4rem; } }
.final-cta-box h2 { font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 600; letter-spacing: -0.02em; color: var(--primary-foreground); }
.final-cta-box p { margin-top: 1rem; max-width: 36rem; margin-inline: auto; color: color-mix(in oklab, var(--primary-foreground) 90%, transparent); line-height: 1.6; }
.final-cta-box .ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background-color: var(--card);
}
.site-footer .inner { padding: 3.5rem 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand p { margin-top: 1rem; max-width: 16rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.footer-col h4 { font-size: 0.875rem; font-weight: 600; }
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.15s; }
.footer-col a:hover { color: var(--foreground); }

.footer-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
