/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #F5F7FB;
  --bg-2:        #E8EDF6;
  --bg-dark:     #0E2247;
  --bg-dark-2:   #081833;
  --surface:     #FFFFFF;

  --ink:         #0D1B30;
  --ink-soft:    #29344A;
  --ink-mute:    #5C6B84;
  --cream:       #F5F7FB;

  --primary:     #0E2247;
  --primary-2:   #1A3563;
  --primary-light: #E6ECF7;

  --accent:      #2451D9;
  --accent-dark: #1B3FB0;
  --accent-light: #E3EBFC;

  --steel:       #8B95A3;
  --steel-light: #DDE2E9;

  --whatsapp:      #25D366;
  --whatsapp-dark: #1EBE57;

  --star:        #F5A623;
  --line:        rgba(13,27,48,0.12);
  --line-strong: rgba(13,27,48,0.22);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Manrope", var(--sans);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --container: 1180px;
  --nav-height: 88px;
  --mobile-bar-height: 64px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  padding-bottom: var(--mobile-bar-height);
}
@media (min-width: 960px) { body { padding-bottom: 0; } }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--ink);
}
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: var(--radius-sm); font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section { padding-block: 3.5rem; }
@media (min-width: 960px) { .section { padding-block: 6rem; } }
.section-tight { padding-block: 2.5rem; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--primary); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

.section-head { max-width: 62ch; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: .8rem; }
.section-head p { color: var(--ink-mute); font-size: 1.05rem; }

[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
.lede { font-size: 1.15rem; color: var(--ink-mute); }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700; font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(14,34,71,0.12), 0 1px 3px rgba(14,34,71,0.08);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft), background-color .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); box-shadow: 0 20px 40px rgba(36,81,217,0.28); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 20px 40px rgba(37,211,102,0.3); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); box-shadow: 0 20px 40px rgba(14,34,71,0.28); }

.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: none; border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--ink-mute); }

.btn-ghost-light {
  background: rgba(255,255,255,0.08); color: #fff;
  box-shadow: none; border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); }

.btn-lg { padding: 1.15rem 2rem; font-size: 1.05rem; }
.btn-icon { width: 1.15em; height: 1.15em; flex: none; }

.btn-group { display: flex; flex-wrap: wrap; gap: .85rem; }

/* --- Badges / trust chips --- */
.badge-row { display: flex; flex-wrap: wrap; gap: .6rem 1rem; }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .5rem .85rem;
  border-radius: var(--radius-full);
}
.badge svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.section-dark .badge {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: #fff;
}
.section-dark .badge svg { color: #A9C6FF; }

/* --- Coverage chips --- */
.coverage-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.coverage-chip {
  font-size: .9rem; font-weight: 600; color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(14,34,71,0.14);
  padding: .55rem 1rem;
  border-radius: var(--radius-full);
  transition: transform .3s var(--ease-soft), background-color .3s;
}
.coverage-chip:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* --- Cards --- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(14,34,71,0.22);
  border-color: transparent;
}
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--primary-light); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3, .card h2 { margin-bottom: .5rem; }
.card h2 { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.05; letter-spacing: -0.01em; }
.card p { color: var(--ink-mute); font-size: .96rem; }

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

/* --- Stat counters --- */
.stats-row {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem 1rem;
}
@media (min-width: 540px) { .stats-row { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; }
.stat-num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent);
  display: inline-flex; align-items: baseline; gap: .15rem;
}
.stat-label { font-size: .88rem; color: var(--ink-mute); margin-top: .3rem; font-weight: 600; }
.section-dark .stat-label { color: rgba(255,255,255,0.75); }

/* --- Steps / process --- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; counter-reset: step; }
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: .5rem; }
.step-num {
  font-family: var(--display); font-weight: 800; font-size: 2.6rem;
  color: var(--primary-light); -webkit-text-stroke: 1.5px var(--primary);
  line-height: 1; margin-bottom: .6rem; display: block;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-mute); font-size: .95rem; }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; }
.stars { display: flex; gap: .2rem; margin-bottom: .9rem; }
.stars svg { width: 18px; height: 18px; color: var(--star); }
.testimonial p { font-size: .98rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.testimonial-author { display: flex; align-items: center; gap: .7rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: grid; place-items: center; font-weight: 800; font-size: .9rem; flex: none;
}
.testimonial-name { font-weight: 700; font-size: .92rem; }
.testimonial-loc { font-size: .82rem; color: var(--ink-mute); }
.testimonial-note {
  font-size: .78rem; color: var(--ink-mute); font-style: italic;
  margin-top: 2rem; text-align: center;
}

/* --- FAQ accordion --- */
.faq-list { border-top: 1px solid var(--line); max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 0; text-align: left;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
}
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  background: var(--bg-2); display: grid; place-items: center;
  transition: transform .4s var(--ease-soft), background-color .3s;
}
.faq-q-icon svg { width: 14px; height: 14px; transition: transform .4s var(--ease-soft); }
.faq-item.is-open .faq-q-icon { background: var(--accent); color: #fff; }
.faq-item.is-open .faq-q-icon svg { transform: rotate(45deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows .45s var(--ease-soft);
}
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding-bottom: 1.3rem; color: var(--ink-mute); max-width: 68ch; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

/* =============================================================
   6. Navigation
   ============================================================= */
.topbar {
  display: none;
  background: var(--primary);
  color: rgba(255,255,255,0.92);
  font-size: .84rem; font-weight: 600;
}
@media (min-width: 720px) { .topbar { display: block; } }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-block: .5rem; }
.topbar-links { display: flex; gap: 1.5rem; }
.topbar-item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-item svg { width: 14px; height: 14px; }
.topbar-item:hover { color: #fff; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,247,251,0.9);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, box-shadow .4s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(14,34,71,0.06); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); gap: 1rem; }

.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-family: var(--display); font-size: 1.08rem; color: var(--primary); }
.brand-mark {
  width: 76px; height: 76px; border-radius: var(--radius-md); flex: none;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 2px 8px rgba(14,34,71,0.12);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 2px; }

.nav-links { display: none; align-items: center; gap: 1.4rem; flex-wrap: nowrap; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-weight: 600; font-size: .93rem; color: var(--ink-soft); padding: .3rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--primary); }

/* --- Nav dropdown (Servicios) --- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600; font-size: .93rem; color: var(--ink-soft);
  padding: .3rem 0; background: none; border: 0; cursor: pointer;
}
.nav-dropdown-trigger svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.nav-dropdown:hover .nav-dropdown-trigger, .nav-dropdown.is-open .nav-dropdown-trigger, .nav-dropdown-trigger.is-active { color: var(--primary); }
.nav-dropdown:hover .nav-dropdown-trigger svg, .nav-dropdown.is-open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 240px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: .5rem; box-shadow: 0 24px 48px -12px rgba(14,34,71,0.22);
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
  z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: .6rem .8rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; color: var(--ink-soft);
}
.nav-dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
.nav-dropdown-menu a.is-active { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-call {
  display: none; align-items: center; gap: .5rem; font-weight: 800; color: var(--primary); font-size: .95rem;
}
@media (min-width: 560px) { .nav-call { display: inline-flex; } }
.nav-call svg { width: 18px; height: 18px; color: var(--accent); }

.nav-actions .btn-whatsapp { display: none; }
@media (min-width: 960px) { .nav-actions .btn-whatsapp { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--bg-2);
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger svg { width: 20px; height: 20px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 150;
  background: var(--primary); color: #fff;
  padding: 5.5rem 1.5rem 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
  overflow-y: auto;
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-close {
  position: absolute; top: 1.4rem; right: 1.4rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); display: grid; place-items: center;
}
.nav-mobile-close svg { width: 20px; height: 20px; }
.nav-mobile-links { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 2rem; }
.nav-mobile-links a {
  font-family: var(--display); font-weight: 700; font-size: 1.35rem;
  padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.nav-mobile .btn-group { flex-direction: column; }
.nav-mobile .btn { width: 100%; }

/* --- Sticky mobile CTA bar --- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
  display: grid; grid-template-columns: 1fr 1fr;
  height: var(--mobile-bar-height);
  box-shadow: 0 -8px 30px rgba(14,34,71,0.18);
}
@media (min-width: 960px) { .mobile-cta-bar { display: none; } }
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 800; font-size: .95rem; color: #fff;
}
.mobile-cta-bar a svg { width: 20px; height: 20px; }
.mobile-cta-call { background: var(--primary); }
.mobile-cta-whatsapp { background: var(--whatsapp); position: relative; }
.mobile-cta-whatsapp .pulse-dot {
  position: absolute; top: 10px; right: calc(50% - 46px);
  width: 9px; height: 9px; border-radius: 50%; background: #fff;
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-top: 2.5rem; padding-bottom: 3.5rem;
  overflow: clip;
}
@media (min-width: 960px) { .hero { padding-block: 4.5rem 5.5rem; } }
.hero .container {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) { .hero .container { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--accent-light);
  padding: .5rem .9rem; border-radius: var(--radius-full);
  margin-bottom: 1.1rem;
}
.hero-kicker svg { width: 14px; height: 14px; }
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero .lede { margin-bottom: 1.6rem; max-width: 52ch; }
.hero .badge-row { margin-top: 1.7rem; }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3.2; box-shadow: 0 40px 80px -30px rgba(14,34,71,0.35);
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; left: -1rem; bottom: -1.2rem;
  background: var(--surface); border-radius: var(--radius-md);
  padding: 1rem 1.2rem; box-shadow: 0 20px 40px -12px rgba(14,34,71,0.25);
  display: flex; align-items: center; gap: .8rem;
  max-width: 250px;
}
@media (min-width: 720px) { .hero-float-card { left: -1.8rem; } }
.hero-float-card .stars { margin-bottom: .2rem; }
.hero-float-card strong { display: block; font-size: .92rem; }
.hero-float-card span { font-size: .78rem; color: var(--ink-mute); }

/* Alt hero for dark sections (e.g. urgent page) */
.hero-dark { background: linear-gradient(155deg, var(--primary) 0%, var(--bg-dark-2) 100%); color: #fff; }
.hero-dark h1, .hero-dark h2 { color: #fff; }
.hero-dark h1 em { color: var(--accent); }
.hero-dark .lede { color: rgba(255,255,255,0.82); }
.hero-dark .hero-kicker { background: rgba(255,255,255,0.12); color: #A9C6FF; }

/* =============================================================
   8. Sections misc
   ============================================================= */
.split {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 60px -20px rgba(14,34,71,0.25); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark-2) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 3rem 1.75rem; text-align: center;
  position: relative; overflow: clip;
}
@media (min-width: 720px) { .final-cta { padding: 4rem 3rem; } }
.final-cta h2 { color: #fff; margin-bottom: .8rem; }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 52ch; margin-inline: auto; margin-bottom: 1.8rem; }
.final-cta .btn-group { justify-content: center; }

.footer {
  background: var(--ink); color: rgba(255,255,255,0.72);
  padding-block: 3.5rem 2rem; font-size: .92rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer h4 { color: #fff; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-family: var(--display); font-weight: 800; margin-bottom: .8rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a:hover { color: #fff; }
.footer-coverage { display: flex; flex-wrap: wrap; gap: .4rem .6rem; }
.footer-coverage span { font-size: .84rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; font-size: .82rem;
}
.footer-bottom a:hover { color: #fff; }

/* =============================================================
   9. Effects
   ============================================================= */
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.04); }
  50% { transform: scale(1.1); }
}
.ambient-on { animation: ambientZoom 24s ease-in-out infinite; }

/* =============================================================
   10. Responsive tweaks
   ============================================================= */
@media (max-width: 959px) {
  .split-reverse { direction: ltr; }
}

/* =============================================================
   11. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .ambient-on { animation: none; }
  .mobile-cta-whatsapp .pulse-dot { animation: none; }
}
