@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600&display=swap');

/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
  --cute-bg: #FBF7F2;
  --cute-bg-accent: #FFF0E8;
  --cute-bg-card: #FFFFFF;
  --cute-bg-sage: #EDF5EE;
  --cute-bg-warm: #FFF8F0;
  --cute-border: #E8E0D6;
  --cute-border-light: #F0EBE4;
  --cute-gold: #E8B94E;
  --cute-lavender: #C5B5D9;
  --cute-pink: #E8856E;
  --cute-pink-light: #FDDDD5;
  --cute-sage: #7C9E82;
  --cute-sage-light: #D4E8D6;
  --cute-text-body: #6B5B50;
  --cute-text-dark: #3D2E22;
  --cute-text-muted: #A8977E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cute-text-body);
  background-color: var(--cute-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cute-text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ========================================
   GRAIN OVERLAY
   ======================================== */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--cute-bg-card);
  border-bottom: 1px solid var(--cute-border-light);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(61, 46, 34, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__brand svg {
  width: 28px;
  height: 28px;
  color: var(--cute-pink);
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cute-text-dark);
}

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

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cute-text-body);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--cute-pink);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--cute-pink);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}

.nav__cta:hover {
  background: #D6745C;
  transform: translateY(-1px);
}

.nav__cta svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

/* Mobile nav overlay (hidden on desktop) */
.nav__links-wrap {
  display: none;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cute-text-dark);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--cute-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 500;
}

.lang-toggle button {
  padding: 0.3rem 0.65rem;
  color: var(--cute-text-muted);
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: var(--cute-pink);
  color: #FFFFFF;
}

.lang-toggle button:hover:not(.active) {
  background: var(--cute-bg-warm);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  display: grid;
  grid-template-columns: 660fr 780fr;
  min-height: 640px;
  background: var(--cute-bg-warm);
  margin-top: 72px;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cute-pink-light);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 24px;
  line-height: 1;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  color: var(--cute-pink);
  display: block;
  flex-shrink: 0;
}

.hero__badge span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cute-pink);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--cute-text-dark);
  margin-bottom: 0;
}

.hero__title-accent {
  color: var(--cute-pink);
  display: block;
  font-style: italic;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--cute-text-body);
  line-height: 1.7;
  max-width: 440px;
  margin-top: 24px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.btn--pink {
  background: var(--cute-pink);
  color: #FFFFFF;
}

.btn--pink:hover {
  background: #D6745C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 133, 110, 0.3);
}

.btn--outline {
  background: var(--cute-bg-card);
  color: var(--cute-text-dark);
  border: 1px solid var(--cute-border);
}

.btn--outline:hover {
  border-color: var(--cute-pink);
  color: var(--cute-pink);
  transform: translateY(-2px);
}

.btn--white {
  background: #FFFFFF;
  color: var(--cute-pink);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========================================
   STATS BAR
   ======================================== */

.stats {
  background: var(--cute-bg-card);
  border-bottom: 1px solid var(--cute-border-light);
  padding: 24px 0;
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
}

.stat-card--warm { background: var(--cute-bg-accent); }
.stat-card--sage { background: var(--cute-bg-sage); }
.stat-card--pink { background: var(--cute-pink-light); }
.stat-card--sage-light { background: var(--cute-sage-light); }

.stat-card__icon {
  flex-shrink: 0;
}

.stat-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.stat-card__icon--gold { color: var(--cute-gold); }
.stat-card__icon--sage { color: var(--cute-sage); }
.stat-card__icon--pink { color: var(--cute-pink); }

.stat-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cute-text-dark);
  line-height: 1.2;
}

.stat-card__sub {
  font-size: 0.75rem;
  color: var(--cute-text-muted);
}

/* ========================================
   SERVICES
   ======================================== */

.services {
  background: var(--cute-bg);
  padding: 80px 0;
}

.services__header {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
  width: fit-content;
}

.eyebrow svg {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}

.eyebrow--sage {
  background: var(--cute-sage-light);
  color: var(--cute-sage);
}

.eyebrow--pink {
  background: var(--cute-pink-light);
  color: var(--cute-pink);
}

.eyebrow--gold {
  background: var(--cute-gold);
  color: #FFFFFF;
}

.eyebrow--white {
  background: rgba(255, 255, 255, 0.19);
  color: #FFFFFF;
}

.services__header h2 {
  margin-bottom: 12px;
}

.services__header p {
  font-size: 1rem;
  color: var(--cute-text-body);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--cute-bg-card);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--cute-border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(61, 46, 34, 0.06);
}

.svc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card__icon svg {
  width: 24px;
  height: 24px;
}

.svc-card__icon--pink { background: var(--cute-pink-light); color: var(--cute-pink); }
.svc-card__icon--sage { background: var(--cute-bg-sage); color: var(--cute-sage); }
.svc-card__icon--warm { background: var(--cute-bg-accent); color: var(--cute-pink); }
.svc-card__icon--sage-light { background: var(--cute-sage-light); color: var(--cute-sage); }

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.svc-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--cute-text-body);
}

/* ========================================
   WHY SECTION
   ======================================== */

.why {
  background: var(--cute-bg-warm);
  padding: 0 56px;
}

.why__inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  max-width: 1328px;
  margin: 0 auto;
  min-height: 540px;
}

.why__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 56px;
}

.why__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.375rem);
  letter-spacing: -1px;
  line-height: 1.15;
}

.why__content > p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cute-text-body);
  max-width: 460px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why__item {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.why__item svg {
  width: 18px;
  height: 18px;
  color: var(--cute-sage);
  flex-shrink: 0;
  display: block;
}

.why__item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cute-text-dark);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  background: var(--cute-bg-card);
  padding: 80px 0;
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.testimonials__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials__header-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.375rem);
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 400px;
}

.testimonials__stars {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.testimonials__stars-icons {
  color: var(--cute-gold);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 4px;
}

.testimonials__stars-label {
  font-size: 0.8125rem;
  color: var(--cute-text-muted);
}

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

.test-card {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.test-card--warm { background: var(--cute-bg-warm); }
.test-card--sage { background: var(--cute-bg-sage); }
.test-card--accent { background: var(--cute-bg-accent); }

.test-card__stars {
  color: var(--cute-gold);
  font-size: 1rem;
  font-weight: 500;
}

.test-card__quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cute-text-dark);
}

.test-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.test-card__name {
  font-size: 0.8125rem;
  font-weight: 600;
}

.test-card__name--pink { color: var(--cute-pink); }
.test-card__name--sage { color: var(--cute-sage); }

.test-card__source {
  font-size: 0.75rem;
  color: var(--cute-text-muted);
}

/* ========================================
   EMERGENCY BANNER
   ======================================== */

.emergency {
  background: var(--cute-pink);
  color: #FFFFFF;
  padding: 0;
  height: 180px;
  display: flex;
  align-items: center;
}

.emergency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.emergency__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.emergency__left h3 {
  color: #FFFFFF;
  font-size: clamp(1.2rem, 2.5vw, 1.875rem);
  letter-spacing: -0.5px;
}

.emergency__left p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.emergency__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.emergency__right .btn {
  padding: 16px 32px;
}

.emergency__right .btn svg {
  color: var(--cute-pink);
}

.emergency__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
  background: var(--cute-bg-warm);
  padding: 100px 0;
  text-align: center;
}

.final-cta__paw {
  width: 40px;
  height: 40px;
  color: var(--cute-pink-light);
  margin: 0 auto 24px;
}

.final-cta__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--cute-text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 16px;
}

.final-cta > .container > p {
  font-size: 1rem;
  color: var(--cute-text-body);
  margin-bottom: 40px;
}

.final-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--cute-bg-card);
  border-top: 1px solid var(--cute-border-light);
  padding: 56px 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo svg {
  width: 22px;
  height: 22px;
  color: var(--cute-pink);
}

.footer__logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cute-text-dark);
}

.footer__tagline {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--cute-text-muted);
  max-width: 200px;
}

.footer__cols {
  display: flex;
  gap: 64px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cute-text-dark);
  margin-bottom: 14px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.8125rem;
  color: var(--cute-text-muted);
}

.footer__col a {
  color: var(--cute-text-muted);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--cute-pink);
}

.footer__divider {
  height: 1px;
  background: var(--cute-border-light);
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--cute-text-muted);
}

.footer__bottom a {
  color: var(--cute-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom a:hover {
  color: var(--cute-pink);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   BILINGUAL TOGGLE
   ======================================== */

[lang="en"] { display: none; }
html[data-lang="en"] [lang="en"] { display: revert; }
html[data-lang="en"] [lang="es"] { display: none; }

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.wa-float {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .container { padding: 0 32px; }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__inner {
    grid-template-columns: 1fr;
  }

  .why__image {
    height: 360px;
  }

  .why { padding: 0 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  /* Nav mobile */
  .nav__toggle { display: flex; }

  .nav__links-wrap {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--cute-bg-card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
  }

  .nav__links-wrap.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__links-wrap .nav__link {
    font-size: 1.3rem;
  }

  .nav__links-wrap .nav__cta {
    font-size: 1rem;
    padding: 14px 32px;
  }

  .nav__links { display: none; }
  .nav__cta-desktop { display: none; }

  /* Hero mobile */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__right {
    height: 50vh;
    order: -1;
  }

  .hero__left {
    padding: var(--space-xl) 24px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  /* Stats mobile */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services mobile */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services { padding: 60px 0; }

  /* Why mobile */
  .why { padding: 0 24px; }

  .why__content {
    padding: 40px 0;
  }

  /* Testimonials mobile */
  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonials__stars {
    align-items: flex-start;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials { padding: 60px 0; }

  /* Emergency mobile */
  .emergency {
    height: auto;
    padding: 40px 0;
  }

  .emergency__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .emergency__right {
    align-items: center;
  }

  /* Final CTA mobile */
  .final-cta {
    padding: 60px 0;
  }

  .final-cta__btns {
    flex-direction: column;
    align-items: center;
  }

  /* Footer mobile */
  .footer__top {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .footer__cols {
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .hero__ctas {
    flex-direction: column;
  }

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