/* ==========================================================================
   styles.css — Cerrajeros Campello 24H
   One stylesheet, organised top-to-bottom in the same order as the page.
   Design tokens live in :root so the palette/typography can be changed
   in one place.
   ========================================================================== */

:root {
  /* Palette — warm red primary (trust + urgency without alarm),
     gold accent, ink only for text and the footer so the page stays light. */
  --cream: #FFFDF5;
  --white: #FFFFFF;
  --ink: #0F172A;
  --ink-soft: #46546B;
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-tint: #FEF2F2;
  --amber: #FACC15;
  --amber-soft: #FDE68A;
  --amber-tint: #FEF8DC;
  --line: #ECE7D6;

  /* Typography */
  --font-head: "Righteous", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, sans-serif;

  /* Shape & elevation — squared-off for a stronger, more structural feel */
  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lift: 0 16px 40px rgba(15, 23, 42, 0.14);

  /* Layout */
  --container: 1140px;
  --container-pad: 24px;
}

/* ---------- Reset & base ---------- */

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

html { scroll-behavior: smooth; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 0;
  border-radius: 6px;
  font: 700 16px/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); }

.btn--amber { background: var(--amber); color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 24px;
}

/* Button spinner — shown inline during form submission */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  flex: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Section heading pattern (kicker + title + lead) ---------- */

.section { padding: 88px 0; }

/* ======================================================================
   ANIMATION SYSTEM
   ======================================================================
   .reveal elements are invisible until the IntersectionObserver (in ui.jsx)
   adds .revealed. Each type of animation is a utility class.
   Children can stagger via --s (integer delay index, multiplied by 80ms). */

/* ---------- Keyframes ---------- */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slide-left {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slide-right {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pop-in {
  0%   { opacity: 0; transform: scale(0.8); }
  60%  { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---------- Reveal base ---------- */

.reveal {
  opacity: 0;
}

.reveal.revealed {
  animation: fade-up 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* Variation utilities — add alongside .reveal */
.reveal--slide-left.revealed  { animation-name: slide-left; }
.reveal--slide-right.revealed { animation-name: slide-right; }
.reveal--fade-in.revealed     { animation-name: fade-in; }
.reveal--scale-in.revealed    { animation-name: scale-in; }
.reveal--pop-in.revealed      { animation-name: pop-in; }

/* Stagger: --s is a zero-based child index.
   Each step adds 60ms delay so cards cascade in from top-left. */
.reveal.revealed[style*="--s:"] {
  animation-delay: calc(var(--s) * 0.06s);
}

/* ---------- Hero: immediate entrance (no observer needed) ---------- */

.hero__text > * {
  opacity: 0;
  animation: fade-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero__text > :nth-child(1) { animation-delay: 0.05s; }  /* kicker */
.hero__text > :nth-child(2) { animation-delay: 0.15s; }  /* h1 */
.hero__text > :nth-child(3) { animation-delay: 0.25s; }  /* lead */
.hero__text > :nth-child(4) { animation-delay: 0.35s; }  /* ctas */
.hero__text > :nth-child(5) { animation-delay: 0.45s; }  /* bullets */

/* Hero visual slides in from the right */
.hero__visual {
  opacity: 0;
  animation: slide-left 0.75s 0.25s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* Hero badge pops in last */
.hero__badge {
  opacity: 0;
  animation: pop-in 0.5s 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Stats band entrance */
.stats .container > * {
  opacity: 0;
}

.stats.reveal.revealed .container > * {
  animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.stats.reveal.revealed .container > :nth-child(1) { animation-delay: 0.05s; }
.stats.reveal.revealed .container > :nth-child(2) { animation-delay: 0.15s; }
.stats.reveal.revealed .container > :nth-child(3) { animation-delay: 0.25s; }
.stats.reveal.revealed .container > :nth-child(4) { animation-delay: 0.35s; }


.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-block;
  font: 700 13px/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-dark);
  background: var(--red-tint);
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.section-head h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 400; }

.section-head .lead { margin-top: 14px; color: var(--ink-soft); }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--ink);
  color: #E2E8F0;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 42px;
}

.topbar__item { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.topbar__item svg { color: var(--amber); }
.topbar__spacer { flex: 1; }
.topbar__hours { color: var(--amber); font-weight: 600; }

/* Language toggle */
.lang-toggle { display: inline-flex; gap: 4px; }
.lang-toggle button {
  background: transparent;
  border: 0;
  color: #94A3B8;
  font: 700 13px/1 var(--font-body);
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
}
.lang-toggle button[aria-pressed="true"] { color: var(--ink); background: var(--amber); }

/* ---------- Header / nav ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* When the user has scrolled, make the header fully solid with a subtle shadow. */
.header--scrolled {
  background: var(--cream);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: none;
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__name { font: 400 18px/1.1 var(--font-head); }
.brand__name span { color: var(--red-dark); }

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--red-dark); }

.header .btn { padding: 12px 22px; }

.nav-burger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
}

/* ---------- Hero ---------- */

.hero { padding: 72px 0 88px; overflow: hidden; }

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 400; }
.hero h1 em { font-style: normal; color: var(--red-dark); }

.hero .lead { margin-top: 18px; font-size: 19px; color: var(--ink-soft); max-width: 52ch; }

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

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }
.hero__bullets svg { color: var(--red); flex: none; }

/* Hero visual: photo + floating badge */
.hero__visual { position: relative; }

.hero__badge {
  position: absolute;
  top: 18px;
  left: -14px;
  background: var(--amber);
  color: var(--ink);
  font: 700 14px/1 var(--font-body);
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-dark);
}

/* ---------- Image placeholder (swap for real <img> later) ---------- */

.placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  justify-items: center;
  background:
    repeating-linear-gradient(45deg, var(--red-tint) 0 14px, transparent 14px 28px),
    var(--white);
  border: 2px dashed var(--red);
  border-radius: var(--radius);
  color: var(--red-dark);
  text-align: center;
  padding: 24px;
  font: 600 14px/1.4 var(--font-body);
}
.placeholder--hero { aspect-ratio: 4 / 3.4; box-shadow: var(--shadow); }

/* ---------- Stats band ---------- */

.stats { background: var(--red); color: var(--white); padding: 36px 0; }

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat__value { font: 400 34px/1.1 var(--font-head); }
.stat__label { font-size: 14.5px; opacity: 0.92; margin-top: 4px; }

/* ---------- Services ---------- */

.services { background: var(--white); }

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

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lift);
  border-color: var(--red);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service-card:nth-child(even) .service-card__icon { background: var(--amber); color: var(--ink); }

.service-card h3 { font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Trust (Por Qué Nosotros) ---------- */

.trust { background: var(--white); }

.trust__logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
}
.trust__logo img { width: 100%; height: 100%; object-fit: contain; }

.trust__list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 28px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              border-color 0.2s ease;
}
.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--red);
}

.trust-item__title {
  font: 400 18px/1.2 var(--font-head);
  color: var(--red-dark);
  margin-bottom: 10px;
}

.trust-item__desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Coverage ---------- */

.coverage { background: var(--cream); }

.coverage__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.coverage-pill {
  display: inline-block;
  font: 600 16px/1 var(--font-body);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 12px 22px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease,
              color 0.2s ease;
}
.coverage-pill:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--red);
  color: var(--red-dark);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.12);
}

/* ---------- Reviews ---------- */

.reviews { background: var(--amber-tint); }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-lift);
}

.review-card__stars { display: flex; gap: 3px; color: var(--amber); }
.review-card__text { color: var(--ink-soft); font-size: 15.5px; }

.review-card__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red-dark);
  display: grid;
  place-items: center;
  font: 700 16px/1 var(--font-head);
}
.review-card__name { font-weight: 700; font-size: 15px; }
.review-card__where { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */

.faq { background: var(--white); }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  transform: translateX(6px);
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  font: 700 16.5px/1.4 var(--font-body);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-item__q svg { flex: none; color: var(--red-dark); transition: transform 0.2s ease; }
.faq-item--open .faq-item__q svg { transform: rotate(180deg); }

.faq-item__a { padding: 0 22px 18px; color: var(--ink-soft); }

/* ---------- Contact: form + info card + map ---------- */

.contact { background: var(--cream); }

.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field label { font: 600 14px/1 var(--font-body); color: var(--ink); }

.field input,
.field select,
.field textarea {
  font: 500 16px/1.45 var(--font-body);
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}

.contact-form .btn { align-self: flex-start; }

/* Form status messages (aria-live region) */
.form-status { font-weight: 600; font-size: 15px; }
.form-status--error { color: #B91C1C; }
.form-status--success {
  color: var(--red-dark);
  background: var(--red-tint);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.form-status--success a { color: inherit; }

/* Info card (dark accent card, mirrors the reference layout) */
.contact-aside { display: flex; flex-direction: column; gap: 24px; }

.info-card {
  background: var(--ink);
  color: #E2E8F0;
  border-radius: var(--radius);
  padding: 30px 28px;
}
.info-card__logo { width: 100px; height: 100px; margin-bottom: 14px; }
.info-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(255,255,255,0.3));
}
.info-card h3 { color: var(--white); font-size: 20px; margin-bottom: 18px; }

.info-card__list { display: flex; flex-direction: column; gap: 16px; margin: 0; }

.info-card__item { display: flex; gap: 14px; }
.info-card__item svg { color: var(--amber); flex: none; margin-top: 3px; }
.info-card__item dt { font: 700 13px/1.3 var(--font-body); text-transform: uppercase; letter-spacing: 0.06em; color: #94A3B8; }
.info-card__item dd { margin: 2px 0 0; }
.info-card__item a { color: var(--white); text-decoration: none; font-weight: 600; }
.info-card__item a:hover { color: var(--amber); }

.info-card .btn { margin-top: 22px; }

/* Google Maps embed */
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--white);
}
.map-card iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ---------- Footer ---------- */

.footer { background: var(--ink); color: #CBD5E1; padding: 64px 0 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer .brand__name { color: var(--white); }
.footer__tagline { margin-top: 14px; font-size: 15px; max-width: 36ch; }

.footer h4 { font: 400 15px/1 var(--font-head); color: var(--white); margin: 0 0 16px; }

.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer ul a { text-decoration: none; }
.footer ul a:hover { color: var(--amber); }

.footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}

/* ---------- Floating WhatsApp button ---------- */

@keyframes fab-pulse {
  0%   { transform: scale(1); }
  12%  { transform: scale(1.10); }
  24%  { transform: scale(1); }
  36%  { transform: scale(1.08); }
  48%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366; /* official WhatsApp green */
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* Single attention pulse ~3 s after page load; the class is added by JS. */
.whatsapp-fab--pulse {
  animation: fab-pulse 1.2s ease;
  animation-delay: 2.8s;
  animation-fill-mode: backwards;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .section { padding: 64px 0; }

  .hero { padding: 48px 0 64px; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { display: none; }
  .hero__badge { left: 10px; top: 10px; font-size: 13px; padding: 10px 14px; }

  .services__grid, .reviews__grid { grid-template-columns: 1fr 1fr; }

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

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

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

  /* Collapse nav into a burger-toggled panel */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow);
  }
  .nav--open { display: flex; }
  .nav a { padding: 10px 0; font-size: 17px; }
  .nav .btn { margin-top: 8px; }
  .nav-burger { display: block; }

  .topbar__hide-sm { display: none; }
}

@media (max-width: 600px) {
  :root { --container-pad: 16px; }
  .section { padding: 48px 0; }

  .hero { padding: 36px 0 48px; }
  .hero h1 { font-size: 28px; }
  .hero .lead { font-size: 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; width: 100%; }
  .hero__bullets { flex-direction: column; gap: 8px; }

  .stats { padding: 28px 0; }
  .stats .container { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .stat__value { font-size: 28px; }

  .services__grid, .reviews__grid { grid-template-columns: 1fr; }

  .trust__list { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }

  .field__row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 0 0; }

  .nav a { font-size: 16px; padding: 12px 0; }
  .nav .btn { width: 100%; justify-content: center; }

  .whatsapp-fab { right: 14px; bottom: 14px; width: 52px; height: 52px; }

  .topbar { font-size: 13px; }
  .topbar .container { min-height: 38px; gap: 12px; }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .service-card, .trust-item, .coverage-pill, .whatsapp-fab, .review-card, .faq-item { transition: none; }
  .section { animation: none !important; }
  .whatsapp-fab--pulse { animation: none; }
  .btn-spinner { animation: none; display: none; }
  .hero__text > *,
  .hero__visual,
  .hero__badge,
  .reveal,
  .reveal.revealed,
  .stats.reveal.revealed .container > * { opacity: 1; animation: none; }
}
