/* SmartCondo — sistema basado en la referencia diseno.png
   Paleta del logo: azul #2a6bb5 + lima #8dc63f sobre azul profundo, cards blancas, Poppins auto-hospedada. */

@font-face { font-family: "Poppins"; src: url("webfonts/poppins-400-latin.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("webfonts/poppins-500-latin.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("webfonts/poppins-600-latin.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("webfonts/poppins-700-latin.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --navy: #122e4e;
  --navy-deep: #0c2138;
  --navy-soft: #1d4573;
  --azul: #2a6bb5;
  --azul-dark: #1e5292;
  --lima: #8dc63f;
  --ink: #1b2534;
  --muted: #64707e;
  --line: #e8ebef;
  --bg-light: #f6f7f9;
  --shadow: 0 20px 55px rgba(12, 33, 56, .12);
  --shadow-soft: 0 10px 30px rgba(12, 33, 56, .08);
  --radius: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}

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

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

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2 { font-weight: 700; line-height: 1.15; letter-spacing: -.01em; }
h1 { max-width: 620px; font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 1rem; color: #fff; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: .9rem; }
h3 { font-weight: 600; font-size: 1.13rem; margin-bottom: .6rem; }
p { color: var(--muted); }

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

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 18px rgba(12, 33, 56, .08);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { width: 150px; height: auto; }
.menu { display: flex; align-items: center; gap: 1.6rem; font-size: .88rem; font-weight: 500; color: var(--ink); }
.menu a { position: relative; padding: 6px 0; transition: color .2s ease; }
.menu a:not(.phone-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--lima);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.menu a:not(.phone-link):hover::after,
.menu a:not(.phone-link):focus-visible::after,
.menu a.is-active::after { transform: scaleX(1); }
.menu a:hover, .menu a.is-active { color: var(--azul); }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--navy);
}
.phone-link svg { width: 17px; height: 17px; color: var(--lima); }
.phone-link:hover { color: var(--azul); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .6rem; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ——— Botones ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .8rem 1.5rem;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--lima); color: var(--navy-deep); box-shadow: 0 12px 28px rgba(141, 198, 63, .32); }
.btn-primary:hover { background: #9ed455; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 12px 28px rgba(12, 33, 56, .22); }
.btn-navy:hover { background: var(--navy-soft); }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 33, 56, .9) 0%, rgba(12, 33, 56, .72) 42%, rgba(12, 33, 56, .22) 80%),
    linear-gradient(0deg, rgba(12, 33, 56, .65) 0%, rgba(12, 33, 56, .1) 45%),
    url("imagenes-smartcondo/hero-smartcondo.webp") center 20% / cover no-repeat;
}
.hero .hero-content { position: relative; z-index: 1; padding: 4.5rem 1.25rem 6.5rem; }
.hero-pill {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: .42rem .95rem;
  border-radius: 999px;
  background: var(--lima);
  color: var(--navy-deep);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-lead { max-width: 540px; color: rgba(255,255,255,.85); font-size: .98rem; margin-bottom: 1.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ——— Banda de ventajas superpuesta ——— */
.search-wrap { position: relative; z-index: 5; margin-top: -60px; }
.advantage-panel {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr) 150px;
  align-items: stretch;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(12, 31, 48, .08);
}
.advantage-panel.reveal,
.advantage-panel.reveal.is-visible { transform: none; }
.advantage-kicker {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .18rem;
  padding: 1rem 1.2rem;
  background: var(--azul);
  color: #fff;
}
.advantage-kicker span {
  color: var(--lima);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.advantage-kicker strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.05;
}
.advantage-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .8rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.advantage-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--lima) 18%, white);
  color: var(--azul);
  border: 1px solid color-mix(in srgb, var(--lima) 38%, white);
}
.advantage-logo svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.advantage-item strong { display: block; margin-bottom: .18rem; font-size: .9rem; line-height: 1.18; }
.advantage-item p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.35; }
.advantage-cta {
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--lima);
  color: var(--azul-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  transition: background .2s ease, transform .2s ease;
}
.advantage-cta:hover { background: #f0c536; transform: translateY(-1px); }

/* ——— Secciones ——— */
.section { padding: clamp(3.2rem, 6.5vw, 5.2rem) 0; }
.section-soft { background: var(--bg-light); }
.section-heading { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: .6rem; }
.section-heading p:last-child { max-width: 560px; margin-left: auto; margin-right: auto; }
.section-copy { max-width: 660px; }
.eyebrow {
  display: block;
  margin-bottom: .5rem;
  color: var(--azul);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--lima); }
.center-cta { text-align: center; margin-top: 2.4rem; }

/* ——— Intro (Nos especializamos / Qué hacemos) ——— */
.intro-section { background: #fff; padding-top: clamp(5.5rem, 9vw, 7rem); }
.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.intro-media img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; object-position: center 30%; }

/* ——— Cards de pilares (estilo listado de propiedades) ——— */
.pillars-section { background: #fff; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2rem; }
.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar-media { position: relative; }
.pillar-media img { width: 100%; height: 168px; object-fit: cover; object-position: center 25%; }
.pillar-media img.pos-top { object-position: center top; }
.badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  padding: .28rem .7rem;
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.badge-lima { background: var(--lima); color: var(--navy-deep); }
.badge-azul { background: var(--azul); color: #fff; }
.pillar-body { padding: 1.05rem 1.15rem 1.2rem; }
.pillar-body h3 { font-size: 1rem; margin-bottom: .85rem; }
.pillar-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  margin: 0;
  padding: .85rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 500;
}
.pillar-specs li { display: flex; align-items: center; gap: .4rem; }
.pillar-specs li::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--lima); }

/* ——— Servicios ——— */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2rem; }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 1.6rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--azul);
  color: #fff;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.02rem; }
.service-card p { font-size: .88rem; }
.service-card a {
  margin-top: auto;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.service-card a span { color: var(--azul); }
.service-card a:hover { color: var(--azul); }

/* ——— Banda de stats ——— */
.stats-band { background: var(--navy); color: #fff; padding: 2.6rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stats-grid > div { display: flex; align-items: center; gap: .95rem; }
.stat-icon {
  width: 52px;
  height: 52px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(141, 198, 63, .55);
  color: var(--lima);
}
.stat-icon svg { width: 24px; height: 24px; }
.stats-grid strong { display: block; font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 700; line-height: 1.1; }
.stats-grid div div span { color: rgba(255,255,255,.72); font-size: .82rem; }

/* ——— Nosotros ——— */
.story-section { background: #fff; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.story-image {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.story-image img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.values-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.values-list span {
  border: 1px solid var(--line);
  background: var(--bg-light);
  border-radius: 999px;
  padding: .45rem .9rem;
  color: var(--navy);
  font-weight: 500;
  font-size: .84rem;
}
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: clamp(2rem, 4vw, 3rem); }
.mission-card {
  padding: 1.7rem 1.6rem;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-top: 3px solid var(--lima);
  border-radius: var(--radius);
}
.mission-card h3 { color: var(--azul); }
.mission-card p { margin-bottom: 0; font-size: .92rem; }

/* ——— Directorio de comunidades ——— */
.directory-section { background: var(--navy); color: #fff; }
.directory-section h2 { color: #fff; }
.directory-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.1rem;
}
.directory-head h2 { margin-bottom: 0; }
.directory-stat { text-align: right; }
.directory-stat strong {
  display: block;
  color: var(--lima);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}
.directory-stat span { display: inline-block; max-width: 300px; color: rgba(255,255,255,.75); font-size: .88rem; }
.directory-board { border-top: 2px solid var(--lima); padding-top: .4rem; }
.directory-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4.5rem);
  counter-reset: dir;
}
.directory-list li {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .74rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  break-inside: avoid;
  counter-increment: dir;
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255,255,255,.92);
}
.directory-list li::before {
  content: counter(dir, decimal-leading-zero);
  order: 3;
  color: var(--lima);
  font-size: .76rem;
  font-weight: 600;
}
.directory-list li::after {
  content: "";
  order: 2;
  flex: 1;
  border-bottom: 2px dotted rgba(255,255,255,.26);
  translate: 0 -4px;
}
.directory-foot {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2.2rem;
  margin-top: 1.7rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ——— Beneficios (estilo testimonios) ——— */
.benefits-section { background: var(--bg-light); padding: clamp(5rem, 9vw, 7.5rem) 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 2rem; }
.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.7rem 1.5rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.quote-mark {
  display: block;
  height: .9em;
  color: var(--lima);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
.benefit-card p { font-size: .9rem; margin: .4rem 0 1.2rem; }
.benefit-card footer {
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.benefit-card footer strong { color: var(--navy); font-size: .9rem; font-weight: 600; }
.benefit-card footer span { color: var(--azul); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* ——— Banda CTA final ——— */
.cta-band {
  padding: clamp(3.5rem, 7vw, 8.5rem) 0;
  background:
    linear-gradient(rgba(12, 33, 56, .88), rgba(12, 33, 56, .88)),
    url("imagenes-smartcondo/Clte/web/1-18-band.webp") center / cover no-repeat;
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 760px; margin: 0 auto 1.6rem; }

/* ——— Contacto ——— */
.contact-section { background: var(--navy-deep); color: #fff; }
.contact-section h2, .contact-section h3 { color: #fff; }
.contact-section p { color: rgba(255,255,255,.75); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.contact-list { display: grid; gap: .75rem; margin-top: 1.5rem; }
.contact-list a { color: #fff; font-weight: 600; }
.contact-list a:hover { color: var(--lima); }
.contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: block; margin-bottom: 1rem; color: var(--navy); font-weight: 500; font-size: .82rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .78rem .85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--ink);
  font: inherit;
  font-size: .92rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(141, 198, 63, .6); border-color: var(--lima); }
.contact-form .btn { width: 100%; }
.hp-field { position: absolute; left: -9999px; }
.form-status { min-height: 1.4em; margin: .8rem 0 0; font-size: .88rem; font-weight: 600; }
.form-status.is-ok { color: #2e7d4f; }
.form-status.is-error { color: #c0392b; }

/* ——— WhatsApp flotante ——— */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 35px rgba(12, 33, 56, .3);
}
.whatsapp-float img { width: 31px; height: 31px; }

/* ——— Footer ——— */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 3.2rem 0 1.3rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr .9fr; gap: 2rem; }
.footer-logo { width: 150px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer h4 { color: #fff; font-size: .92rem; font-weight: 600; margin: 0 0 .9rem; }
.site-footer p { color: rgba(255,255,255,.62); max-width: 320px; font-size: .88rem; }
.site-footer nav, .footer-contact { display: grid; gap: .55rem; align-content: start; }
.site-footer nav a, .footer-contact a { color: rgba(255,255,255,.78); font-size: .88rem; }
.site-footer a:hover { color: var(--lima); }
.footer-contact p { margin: 0; }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin-bottom: 0; font-size: .82rem; }

/* ——— Páginas legales (privacy.html / terms.html) ——— */
.menu.is-static { display: flex; }

.legal {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 1.25rem 90px;
}
.legal h1 {
  color: var(--navy-deep);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 6px 0 4px;
}
.legal-updated {
  color: var(--azul);
  font-size: .9rem;
  margin-bottom: 28px;
}
.legal h2 {
  color: var(--navy);
  font-size: 1.15rem;
  margin: 30px 0 8px;
}
.legal p { line-height: 1.7; margin-bottom: 12px; }
.legal a { color: var(--azul-dark); font-weight: 600; }
.legal a:hover { color: var(--lima); }

.footer-compact { padding: 1.6rem 0; text-align: center; }
.footer-compact p { margin: 0; font-size: .82rem; }
.footer-compact a { color: rgba(255, 255, 255, .85); font-weight: 500; }

.footer-bottom a { color: rgba(255, 255, 255, .85); }

/* ——— Reveal ——— */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem 1.25rem;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .menu.is-open { display: flex; }
  .menu a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .menu a:last-child { border-bottom: 0; }
  .menu a:not(.phone-link)::after { display: none; }
  .menu.is-static {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .menu.is-static a { padding: 0; border-bottom: 0; }
  .hero { min-height: auto; }
  .hero .hero-content { padding: 3.5rem 1.25rem 6rem; }
  .search-wrap { margin-top: -70px; }
  .advantage-panel { grid-template-columns: 1fr; }
  .advantage-kicker { min-height: 92px; }
  .advantage-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .advantage-cta { min-height: 58px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .contact-grid, .intro-grid, .mission-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .directory-head { grid-template-columns: 1fr; align-items: start; }
  .directory-stat { text-align: left; }
  .directory-list { columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { padding: 0 1rem; }
  .brand img { width: 130px; }
  .hero-bg { background-position: 62% center; }
  .hero-pill { font-size: .6rem; letter-spacing: .06em; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .pillar-grid, .service-grid, .stats-grid, .form-row { grid-template-columns: 1fr; }
  .story-image, .story-image img { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 52px; height: 52px; right: .9rem; bottom: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
