/* ==========================================================================
   Jardinería Chiclana — Design system
   ========================================================================== */

:root {
  --forest: #0c2a1f;
  --forest-2: #123a2b;
  --brand: #035439;
  --moss: #2c6a4d;
  --sage: #9fb49a;
  --sage-soft: #dfe7d8;
  --cream: #f3ede2;
  --paper: #faf7f1;
  --white: #ffffff;
  --ink: #17221d;
  --ink-soft: #4a5750;
  --line: rgba(23, 34, 29, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --clay: #c8733f;
  --gold: #c9a55e;

  --ff-display: "Bree Serif", "Iowan Old Style", Georgia, serif;
  --ff-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-s: 10px;
  --radius: 18px;
  --radius-l: 28px;
  --shadow-s: 0 2px 10px rgba(12, 42, 31, 0.06);
  --shadow: 0 18px 50px -18px rgba(12, 42, 31, 0.28);
  --shadow-l: 0 40px 90px -30px rgba(12, 42, 31, 0.45);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(80px, 11vw, 150px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

::selection { background: var(--brand); color: var(--white); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--forest); color: #fff; padding: 10px 18px; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

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

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Typography ---------- */

.display {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
/* Bree Serif no tiene cursiva: el énfasis se marca solo con el color. */
.display em, .h2 em, .h3 em { font-style: normal; font-weight: 400; color: var(--moss); }
.on-dark .display em, .on-dark .h2 em, .on-dark .h3 em { color: var(--sage); }

.h1 { font-size: clamp(2.5rem, 5.8vw, 5rem); }
.h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.95rem, 3.8vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--moss);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7;
}
.on-dark .eyebrow { color: var(--sage); }

.lead { font-size: clamp(1.05rem, 1.35vw, 1.2rem); color: var(--ink-soft); line-height: 1.75; }
.on-dark .lead { color: rgba(255, 255, 255, .78); }

.muted { color: var(--ink-soft); }

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

.btn {
  --bg: var(--brand); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: .95rem; letter-spacing: .01em; line-height: 1;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .4s var(--ease);
  white-space: nowrap; isolation: isolate; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .4s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(3, 84, 57, .6); }
.btn:hover svg.arrow { transform: translateX(4px); }

.btn--clay { --bg: var(--clay); }
.btn--clay:hover { box-shadow: 0 16px 30px -14px rgba(200, 115, 63, .7); }
.btn--light { --bg: #fff; --fg: var(--forest); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); box-shadow: none; }
.on-dark .btn--ghost, .btn--ghost-light { --bg: rgba(255,255,255,.06); --fg: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.on-dark .btn--ghost:hover, .btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn--wa { --bg: #146c43; }
.btn--sm { padding: 12px 20px; font-size: .88rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem;
  color: var(--brand); border-bottom: 1px solid currentColor; padding-bottom: 4px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Topbar ---------- */

.topbar {
  background: var(--forest); color: rgba(255,255,255,.72); font-size: .82rem;
  position: relative; z-index: 60;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 20px; }
.topbar__group { display: flex; gap: 26px; align-items: center; }
.topbar a:hover { color: #fff; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--sage); }

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

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px -20px rgba(12,42,31,.3); background: rgba(250,247,241,.95); }
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.header__logo img { height: 50px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; font-weight: 600; font-size: .95rem; color: var(--ink);
  border-radius: 999px; transition: background .25s, color .25s; background: none; border: 0;
}
.nav__link:hover, .nav__link[aria-current="page"] { background: rgba(3, 84, 57, .07); color: var(--brand); }
.nav__link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }

.nav__item { position: relative; }
.nav__item:hover > .nav__link svg, .nav__item.is-open > .nav__link svg { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 14px); left: 50%;
  width: min(880px, 92vw);
  transform: translate(-50%, 10px);
  background: #fff; border-radius: var(--radius-l); box-shadow: var(--shadow-l);
  border: 1px solid var(--line);
  padding: 14px; display: grid; grid-template-columns: 1.1fr 2fr; gap: 14px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .4s var(--ease), visibility .3s;
}
.mega::before { content: ""; position: absolute; inset: -16px 0 auto 0; height: 16px; }
.nav__item:hover .mega, .nav__item:focus-within .mega, .nav__item.is-open .mega {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.mega__feature {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.mega__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.mega__feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(12,42,31,.9)); }
.mega__feature { isolation: isolate; }
.mega__feature p { font-size: .9rem; opacity: .85; margin-top: 8px; line-height: 1.5; }
.mega__list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; align-content: start; padding: 6px; }
.mega__link {
  display: flex; gap: 14px; align-items: center; padding: 12px; border-radius: 14px;
  transition: background .25s;
}
.mega__link:hover { background: var(--paper); }
.mega__thumb { width: 52px; height: 52px; border-radius: 12px; overflow: hidden; flex: none; }
.mega__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mega__link:hover .mega__thumb img { transform: scale(1.12); }
.mega__link strong { display: block; font-size: .95rem; font-weight: 700; line-height: 1.3; }
.mega__link span { font-size: .8rem; color: var(--ink-soft); }

.header__actions { display: flex; align-items: center; gap: 10px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem; padding: 8px 10px;
}
.header__phone .ico {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sage-soft); color: var(--brand);
}
.header__phone .ico svg { width: 18px; height: 18px; }
.header__phone small { display: block; font-weight: 500; font-size: .72rem; color: var(--ink-soft); letter-spacing: .04em; }

.burger {
  display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; place-items: center; position: relative;
}
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 45; background: var(--forest); color: #fff;
  padding: 130px var(--gutter) 40px; overflow-y: auto;
  clip-path: circle(0 at calc(100% - 44px) 60px);
  transition: clip-path .7s var(--ease); visibility: hidden;
}
.menu-open .drawer { clip-path: circle(150% at calc(100% - 44px) 60px); visibility: visible; }
.menu-open { overflow: hidden; }
.drawer__nav > li { border-bottom: 1px solid var(--line-light); }
.drawer__nav > li > a, .drawer__nav summary {
  display: flex; justify-content: space-between; align-items: center; padding: 18px 0;
  font-family: var(--ff-display); font-size: 1.8rem; font-weight: 350; cursor: pointer; list-style: none;
}
.drawer__nav summary::-webkit-details-marker { display: none; }
.drawer__nav summary svg { width: 22px; transition: transform .3s; }
.drawer__nav details[open] summary svg { transform: rotate(45deg); }
.drawer__sub { padding: 0 0 18px; display: grid; gap: 4px; }
.drawer__sub a { display: block; padding: 8px 0; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.drawer__foot { margin-top: 36px; display: grid; gap: 12px; }
.drawer__foot .btn { justify-content: center; }

/* ---------- Hero (home) ---------- */

.hero {
  position: relative; min-height: calc(100svh - 84px); min-height: min(920px, calc(100svh - 84px));
  display: flex; align-items: flex-end; color: #fff; isolation: isolate; overflow: hidden;
  padding: 140px 0 70px;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 12s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 30, 22, .9) 0%, rgba(8, 30, 22, .55) 45%, rgba(8,30,22,.15) 100%),
    linear-gradient(0deg, rgba(8, 30, 22, .75) 0%, transparent 45%);
}
.hero__grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 60px; align-items: end; }
.hero__title { max-width: 14ch; margin: 22px 0 28px; }
.hero__lead { max-width: 560px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.hero__card {
  justify-self: end; width: 100%; max-width: 380px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-l); padding: 28px;
}
.hero__card-row { display: flex; gap: 16px; align-items: center; }
.hero__card-row + .hero__card-row { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__card .ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.12); color: var(--sage); flex: none; }
.hero__card .ico svg { width: 22px; height: 22px; }
.hero__card strong { display: block; font-weight: 700; font-size: 1rem; }
.hero__card span { font-size: .85rem; opacity: .75; line-height: 1.4; display: block; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 20px;
}
.hero__scroll::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px;
  background: #fff; border-radius: 2px; animation: scrollDot 2s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  position: relative; color: #fff; isolation: isolate; overflow: hidden;
  padding: clamp(120px, 14vw, 190px) 0 clamp(70px, 8vw, 110px);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(8,30,22,.93) 0%, rgba(8,30,22,.7) 50%, rgba(8,30,22,.35) 100%);
}
.page-hero__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: end; }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.8rem); max-width: 16ch; margin: 22px 0 26px; }
.page-hero .lead { max-width: 640px; }
.page-hero .hero__ctas { margin-top: 34px; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; opacity: .5; }

.page-hero__aside {
  justify-self: end; max-width: 360px; width: 100%;
  border-left: 1px solid rgba(255,255,255,.25); padding-left: 32px;
}
.page-hero__aside li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; font-size: .96rem; color: rgba(255,255,255,.88); line-height: 1.5; }
.page-hero__aside svg { width: 20px; height: 20px; color: var(--sage); flex: none; margin-top: 2px; }

/* ---------- Marquee ---------- */

.marquee { background: var(--brand); color: #fff; overflow: hidden; padding: 22px 0; position: relative; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 22px; padding-right: 22px;
  font-family: var(--ff-display); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 350; white-space: nowrap;
}
.marquee__item svg { width: 22px; height: 22px; color: var(--sage); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */

.section { padding: var(--section) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--forest); color: #fff; }
.section--tight { padding: calc(var(--section) * .6) 0; }

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 80px; align-items: end; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .h2 { margin-top: 0; }
.split__body .h2, .process__sticky .h2, .faq-layout__head .h2, .cta-band .h2 { margin-top: 0 !important; }
.hero__title, .page-hero h1 { margin-top: 0 !important; }
.section-head--center { grid-template-columns: 1fr; text-align: center; justify-items: center; max-width: 820px; margin-inline: auto; }
.section-head--center .lead { max-width: 640px; }

/* ---------- About split ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.split__media { position: relative; }
.split__img { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute; right: -28px; bottom: 48px; background: #fff; border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow-l); display: flex; align-items: center; gap: 18px;
}
.split__badge img { width: 58px; height: 58px; }
.split__badge strong { font-family: var(--ff-display); font-size: 2.6rem; line-height: 1; color: var(--brand); font-weight: 400; display: block; }
.split__badge span { font-size: .85rem; color: var(--ink-soft); line-height: 1.3; display: block; }
.split__deco { position: absolute; left: -40px; top: -40px; width: 180px; opacity: .5; z-index: -1; }

.split__body .h2 { margin: 18px 0 26px; }
.split__body .lead + .lead { margin-top: 18px; }

.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 36px 0 40px; }
.checks li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .98rem; }
.checks .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--sage-soft); color: var(--brand); display: grid; place-items: center; flex: none; }
.checks .tick svg { width: 14px; height: 14px; }

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

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: clamp(60px, 8vw, 100px); }
.stat { padding: 36px 28px 0; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num { font-family: var(--ff-display); font-weight: 300; font-size: clamp(3rem, 6vw, 5.2rem); line-height: 1; color: var(--brand); letter-spacing: -0.03em; }
.stat__num sup { font-size: .45em; vertical-align: top; position: relative; top: .35em; margin-right: 2px; color: var(--clay); }
.stat__label { margin-top: 14px; font-weight: 600; color: var(--ink-soft); font-size: .95rem; }
.on-dark .stats { border-color: var(--line-light); }
.on-dark .stat { border-color: var(--line-light); }
.on-dark .stat__num { color: #fff; }
.on-dark .stat__label { color: rgba(255,255,255,.65); }

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

.services {
  --services-w: min(1720px, calc(100vw - 2 * var(--gutter)));
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
  width: var(--services-w); margin-inline: calc((100% - var(--services-w)) / 2);
}
.services .svc { min-height: 440px; }
.services .svc::after { background: linear-gradient(180deg, rgba(8,30,22,0) 45%, rgba(8,30,22,.6) 70%, rgba(8,30,22,.95) 100%); }
.svc {
  grid-column: span 3; position: relative; border-radius: var(--radius-l); overflow: hidden;
  min-height: 460px; color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; isolation: isolate; background: var(--forest);
}
.svc__img { position: absolute; inset: 0; z-index: -2; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,30,22,0) 25%, rgba(8,30,22,.55) 55%, rgba(8,30,22,.95) 100%);
  transition: opacity .5s;
}
.svc:hover .svc__img img { transform: scale(1.08); }
.svc__num { position: absolute; top: 26px; left: 30px; font-size: .8rem; font-weight: 700; letter-spacing: .15em; opacity: .8; }
.svc__go {
  position: absolute; top: 22px; right: 22px; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.14); backdrop-filter: blur(10px); display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25); transition: background .4s, transform .5s var(--ease), color .3s;
}
.svc__go svg { width: 20px; height: 20px; transform: rotate(-45deg); transition: transform .5s var(--ease); }
.svc:hover .svc__go { background: #fff; color: var(--forest); }
.svc:hover .svc__go svg { transform: rotate(0); }
.svc h3 { font-family: var(--ff-display); font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
.svc p { margin-top: 12px; font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,.8); max-width: 44ch; }

/* ---------- CTA band ---------- */

.cta-band { position: relative; isolation: isolate; overflow: hidden; color: #fff; border-radius: var(--radius-l); padding: clamp(50px, 7vw, 100px); }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(8,30,22,.95) 0%, rgba(8,30,22,.78) 55%, rgba(8,30,22,.4) 100%); }
.cta-band__grid { display: grid; grid-template-columns: minmax(0, 720px); gap: 50px; align-items: end; }
.cta-band__btn { margin-top: 34px; }
.cta-band .h2 { margin: 18px 0 22px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; justify-self: end; width: 100%; max-width: 330px; }
.cta-band__actions .btn { justify-content: center; }

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

.reviews-wrap { position: relative; }
.reviews {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 40px) / 3); gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 2px 20px;
}
.reviews::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: start; background: #fff; border-radius: var(--radius-l); padding: 34px;
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px; min-height: 290px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review__quote { width: 36px; height: 36px; color: var(--sage); }
.review__text { font-family: var(--ff-display); font-size: 1.22rem; font-weight: 350; line-height: 1.5; flex: 1; }
.review__author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.review__author strong { display: block; font-size: .98rem; text-transform: capitalize; }
.review__author span { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--ink-soft); }
.review__author .g { width: 14px; height: 14px; }
.reviews-nav { display: flex; gap: 10px; }
.reviews-nav button {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s;
}
.reviews-nav button:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.reviews-nav svg { width: 20px; height: 20px; }
.reviews-nav button:first-child svg { transform: rotate(180deg); }
.reviews-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.reviews-source { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-soft); }
.reviews-source svg { width: 20px; height: 20px; }

/* ---------- Pillars (Misión / Visión / Valores) ---------- */

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar {
  position: relative; background: var(--forest-2); border: 1px solid var(--line-light);
  border-radius: var(--radius-l); padding: 40px 34px; overflow: hidden;
  transition: transform .5s var(--ease), background .5s;
}
.pillar:hover { transform: translateY(-6px); background: #164533; }
.pillar__num { font-family: var(--ff-display); font-size: 5rem; line-height: 1; font-weight: 300; color: rgba(255,255,255,.08); position: absolute; right: 26px; top: 20px; }
.pillar__ico { width: 58px; height: 58px; border-radius: 16px; background: rgba(159,180,154,.15); color: var(--sage); display: grid; place-items: center; margin-bottom: 28px; }
.pillar__ico svg { width: 28px; height: 28px; }
.pillar h3 { font-family: var(--ff-display); font-size: 2rem; font-weight: 350; }
.pillar p { margin-top: 14px; color: rgba(255,255,255,.72); font-size: .98rem; }
.pillar ul { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line-light); display: grid; gap: 10px; }
.pillar li { display: flex; gap: 10px; align-items: center; font-size: .93rem; font-weight: 600; }
.pillar li svg { width: 16px; height: 16px; color: var(--sage); flex: none; }
.pillar__label { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-top: 26px; }

/* ---------- Process (steps) ---------- */

.process { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.process__sticky { position: sticky; top: 120px; }
.process__sticky .h2 { margin: 18px 0 24px; }
.process__img { margin-top: 40px; border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--shadow); }
.process__img img { width: 100%; height: 100%; object-fit: cover; }
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 38px 38px 38px 118px; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.step:hover { transform: translateX(8px); box-shadow: var(--shadow); border-color: transparent; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; left: 34px; top: 34px; font-family: var(--ff-display); font-size: 2.6rem; line-height: 1; font-weight: 300; color: var(--brand);
}
.step h3 { font-family: var(--ff-display); font-size: 1.55rem; font-weight: 400; line-height: 1.2; margin-bottom: 12px; }
.step p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Feature cards ---------- */

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  position: relative; background: #fff; border-radius: var(--radius-l); padding: 36px 30px 34px;
  border: 1px solid var(--line); overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), color .4s;
}
.feature::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--forest);
  transform: translateY(101%); transition: transform .6s var(--ease);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-l); color: #fff; }
.feature:hover::before { transform: translateY(0); }
.feature__ico {
  width: 64px; height: 64px; border-radius: 18px; background: var(--sage-soft); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 30px; transition: background .4s, color .4s;
}
.feature__ico svg { width: 30px; height: 30px; }
.feature:hover .feature__ico { background: rgba(159,180,154,.18); color: var(--sage); }
.feature h3 { font-family: var(--ff-display); font-size: 1.45rem; font-weight: 400; line-height: 1.2; margin-bottom: 14px; }
.feature p { color: var(--ink-soft); font-size: .96rem; transition: color .4s; }
.feature:hover p { color: rgba(255,255,255,.75); }
.feature__n { position: absolute; top: 26px; right: 28px; font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: var(--ink-soft); opacity: .6; transition: color .4s; }
.feature:hover .feature__n { color: #fff; }

/* ---------- Audience ---------- */

.audience { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.aud { padding: 40px 30px 10px; border-left: 1px solid var(--line); }
.aud:first-child { border-left: 0; padding-left: 0; }
.aud__ico { width: 44px; height: 44px; color: var(--brand); margin-bottom: 24px; }
.aud h3 { font-family: var(--ff-display); font-size: 1.45rem; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.aud p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Values (about) ---------- */

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

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

.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.faq-layout__head { position: sticky; top: 120px; }
.faq-layout__head .h2 { margin: 18px 0 22px; }
.faq-contact { margin-top: 36px; padding: 28px; background: var(--cream); border-radius: var(--radius); }
.faq-contact strong { font-family: var(--ff-display); font-weight: 400; font-size: 1.35rem; display: block; margin-bottom: 8px; }
.faq-contact p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 18px; }
.section--cream .faq-contact { background: #fff; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px 0; font-family: var(--ff-display); font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 400; line-height: 1.35;
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq__icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: none; transition: background .3s, color .3s, transform .45s var(--ease), border-color .3s; }
.faq__icon svg { width: 18px; height: 18px; }
.faq details[open] .faq__icon { background: var(--brand); color: #fff; border-color: var(--brand); transform: rotate(45deg); }
.faq__body { overflow: hidden; }
.faq__body p { padding: 0 70px 30px 0; color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Areas ---------- */

.areas { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
/* Cuatro y cuatro, con una línea fina por fila: sin repetir ocho veces el pin. */
.areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; margin-top: 36px; }
.areas__grid li { padding: 15px 2px; border-top: 1px solid var(--line); font-weight: 600; font-size: 1rem; }
.areas__map { position: relative; }
.areas__map img { width: 100%; opacity: .5; filter: invert(1) brightness(1.4); mix-blend-mode: screen; }
.areas__pin {
  position: absolute; left: 47%; top: 38%; width: 18px; height: 18px; border-radius: 50%; background: var(--clay);
  box-shadow: 0 0 0 0 rgba(200,115,63,.6); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(200,115,63,.6); } 70% { box-shadow: 0 0 0 26px rgba(200,115,63,0); } 100% { box-shadow: 0 0 0 0 rgba(200,115,63,0); } }

/* ---------- Related services ---------- */

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related .svc { grid-column: auto; min-height: 380px; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ccard {
  display: flex; align-items: center; gap: 20px; padding: 24px 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
a.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.ccard__ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--sage-soft); color: var(--brand); flex: none; }
.ccard__ico svg { width: 24px; height: 24px; }
.contact-grid > *, .split > *, .process > *, .faq-layout > *, .section-head > *, .cta-band__grid > * { min-width: 0; }
.ccard > span:last-child { min-width: 0; }
.ccard strong { overflow-wrap: anywhere; }
.ccard__go { margin-left: auto; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: none; transition: background .3s, color .3s; }
.ccard__go svg { width: 18px; height: 18px; }
a.ccard:hover .ccard__go { background: var(--forest); color: #fff; border-color: var(--forest); }
.contact-grid { align-items: stretch; }
.map.map--tall { margin-top: 0; aspect-ratio: auto; min-height: 420px; position: relative; }
.map.map--tall iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
/* El mapa vive en el pie, así que Contacto queda a una sola columna centrada. */
.contact-grid { grid-template-columns: minmax(0, 1fr); max-width: 860px; margin-inline: auto; text-align: center; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.ccard small { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.ccard strong { display: block; font-size: 1.12rem; font-weight: 700; margin-top: 2px; line-height: 1.4; }
.ccard--wa .ccard__ico { background: #dcf3e5; color: #146c43; }

.form-card { background: var(--forest); color: #fff; border-radius: var(--radius-l); padding: clamp(32px, 5vw, 56px); }
.form-card .h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin: 16px 0 12px; }
.form-card > p { color: rgba(255,255,255,.7); margin-bottom: 34px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.75); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: #fff; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 16px 18px; transition: border-color .3s, background .3s;
}
.field select option { color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); background: rgba(255,255,255,.1); }
.form__legal { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; font-size: .85rem; color: rgba(255,255,255,.65); }
.form__legal input { margin-top: 4px; accent-color: var(--sage); width: 18px; height: 18px; flex: none; }
.form__legal a { text-decoration: underline; }
.form .btn { grid-column: 1 / -1; justify-content: center; margin-top: 8px; }
.form__note { grid-column: 1 / -1; font-size: .85rem; color: var(--sage); min-height: 1.2em; }

.map { margin-top: 14px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; background: var(--cream); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

.hours { display: flex; gap: 14px; align-items: center; margin-top: 14px; padding: 18px 24px; border-radius: var(--radius); background: var(--cream); font-weight: 600; font-size: .95rem; }
.hours svg { width: 20px; height: 20px; color: var(--brand); }

/* ---------- Legal ---------- */

.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 400; margin: 48px 0 16px; }
.legal h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; margin: 32px 0 12px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.legal a { color: var(--brand); text-decoration: underline; }

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

.footer { background: var(--forest); color: rgba(255,255,255,.72); position: relative; overflow: hidden; }
.footer__cta {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end;
  padding: clamp(70px, 9vw, 120px) 0 clamp(50px, 6vw, 80px); border-bottom: 1px solid var(--line-light);
}
.footer__cta .display { color: #fff; font-size: clamp(2.4rem, 5.5vw, 5rem); margin: 0; }
.footer__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.footer__grid { display: grid; grid-template-columns: 1.35fr 1.15fr .85fr 1.35fr; gap: 46px; padding: 70px 0 60px; align-items: start; }
.footer__logo img { height: 56px; width: auto; }
.footer__about { margin-top: 22px; font-size: .95rem; max-width: 34ch; line-height: 1.7; }
.footer__title { color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 22px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { font-size: .95rem; transition: color .25s, padding .3s var(--ease); }
.footer__links a:hover { color: #fff; padding-left: 6px; }
.footer__contact { display: grid; gap: 16px; margin-top: 30px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; line-height: 1.5; }
.footer__contact svg { width: 18px; height: 18px; color: var(--sage); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 0 30px; border-top: 1px solid var(--line-light); font-size: .85rem; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }
.footer__areas li { font-size: .95rem; }
.footer__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-light); aspect-ratio: 4/3; min-height: 290px; }
.footer__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Floating actions ---------- */

.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 16px 40px -10px rgba(37,211,102,.7);
  transition: transform .4s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
.fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: fabRing 2.6s infinite; }
@keyframes fabRing { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

.mobile-bar { display: none; }

/* ---------- Reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.no-js .reveal { opacity: 1; transform: none; }

.split-line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.split-line > span { display: block; transform: translateY(105%); animation: lineUp 1.1s var(--ease) forwards; }
.split-line:nth-child(2) > span { animation-delay: .1s; }
.split-line:nth-child(3) > span { animation-delay: .2s; }
@keyframes lineUp { to { transform: none; } }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 1s var(--ease) forwards; }
.fade-up.d1 { animation-delay: .3s; } .fade-up.d2 { animation-delay: .45s; } .fade-up.d3 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

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

@media (max-width: 1180px) {
  .header__phone small, .header__phone > span { display: none; }
  .nav__link { padding: 10px 12px; }
  .features, .values { grid-template-columns: repeat(2, 1fr); }
  .svc { grid-column: span 6; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav, .header__phone { display: none; }
  .burger { display: grid; }
  .topbar__group--secondary { display: none; }
  .hero__grid, .page-hero__grid, .split, .process, .faq-layout, .areas, .contact-grid, .cta-band__grid, .footer__cta, .section-head { grid-template-columns: 1fr; }
  .hero__card, .page-hero__aside { justify-self: start; }
  .page-hero__aside { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.25); padding-top: 18px; }
  .process__sticky, .faq-layout__head { position: static; }
  .split__badge { right: 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat { padding-bottom: 30px; }
  .pillars, .related { grid-template-columns: 1fr; }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .aud:nth-child(3) { border-left: 0; padding-left: 0; }
  .reviews { grid-auto-columns: calc((100% - 20px) / 2); }
  .cta-band__actions { justify-self: start; }
  .footer__cta-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .header .container { min-height: 72px; }
  .header__logo img { height: 42px; }
  .header__actions .btn { display: none; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero__scroll { display: none; }
  .hero__ctas .btn { flex: 1 1 100%; justify-content: center; }
  .services { grid-template-columns: 1fr; }
  .svc { grid-column: auto; min-height: 400px; }
  .features, .values, .audience { grid-template-columns: 1fr; }
  .aud { border-left: 0; padding-left: 0; border-bottom: 1px solid var(--line); padding-bottom: 30px; }
  .checks { grid-template-columns: 1fr; }
  .step { padding: 30px 26px 30px 26px; }
  .step::before { position: static; display: block; margin-bottom: 14px; }
  .reviews { grid-auto-columns: 88%; }
  .form { grid-template-columns: 1fr; }
  .faq__body p { padding-right: 0; }
  .split__badge { position: relative; right: auto; bottom: auto; margin: -40px 16px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .fab { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); width: 58px; height: 58px; }
}

/* ---------- Lead modal ---------- */

.lead-modal {
  width: min(440px, calc(100vw - 32px));
  padding: 0; border: 0; border-radius: var(--radius-l);
  background: transparent; color: var(--ink);
  box-shadow: var(--shadow-l);
}
.lead-modal::backdrop { background: rgba(8, 30, 22, .55); backdrop-filter: blur(3px); }
.lead-modal[open] { animation: leadIn .35s var(--ease); }
@keyframes leadIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

.lead__card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: clamp(26px, 5vw, 38px);
}
.lead__close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft); font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center; transition: background .25s, color .25s, border-color .25s;
}
.lead__close:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

.lead__title { font-family: var(--ff-display); font-weight: 400; font-size: 1.9rem; line-height: 1.1; letter-spacing: -0.01em; padding-right: 30px; }
.lead__text { color: var(--ink-soft); font-size: .98rem; margin-top: 10px; }

.lead__label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); margin: 22px 0 8px; }
.lead__input {
  width: 100%; font: inherit; font-size: 1.05rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 15px 18px; transition: border-color .25s, box-shadow .25s;
}
.lead__input::placeholder { color: #8a938c; }
.lead__input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(3, 84, 57, .16); }
.lead__error { color: #a32b17; font-size: .88rem; font-weight: 600; margin-top: 10px; }

.lead__submit {
  width: 100%; margin-top: 22px; padding: 16px 24px; border: 0; border-radius: 999px;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 1rem; line-height: 1;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lead__submit:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(3, 84, 57, .6); }

.lead__legal { margin-top: 16px; font-size: .8rem; color: var(--ink-soft); text-align: center; }
.lead__legal a { color: var(--brand); text-decoration: underline; }

/* ---------- Encabezados centrados en móvil ---------- */

@media (max-width: 680px) {
  .hero__title, .hero__lead,
  .page-hero h1, .page-hero .lead,
  .section-head, .section-head .h2, .section-head .lead,
  .split__body .h2, .split__body > .lead,
  .process__sticky .h2, .process__sticky > .lead,
  .faq-layout__head .h2, .faq-contact,
  .cta-band .h2, .cta-band .lead,
  .form-card .h2, .form-card > p { text-align: center; }

  .hero__title, .page-hero h1 { margin-inline: auto; }
  .breadcrumb { justify-content: center; }

  /* Los botones son inline-flex: para centrarlos con márgenes automáticos
     hay que pasarlos a flex y dejar que midan lo que ocupa su contenido. */
  .cta-band__btn, .split__body .btn, .split__body .link-arrow, .faq-contact .btn {
    display: flex; width: fit-content; margin-inline: auto;
  }

  .checks li, .page-hero__aside li { justify-content: center; }
  .areas__grid { grid-template-columns: 1fr; }
  .areas__grid li { text-align: center; }
  .contact-cards { grid-template-columns: 1fr; }
}
