/* =========================================================
   CLICK Soluciones Inteligentes — Sistema de diseño
   ========================================================= */

:root {
  /* Marca */
  --brand:        #1f63c9;
  --brand-600:    #1a56b0;
  --brand-700:    #154a99;
  --brand-soft:   #e9f1fd;
  --accent:       #38b6ff;
  --accent-2:     #6ee7ff;

  /* Neutros */
  --ink:          #0d1b2e;
  --ink-2:        #33445e;
  --muted:        #64748b;
  --line:         #e6ebf3;
  --bg:           #ffffff;
  --bg-soft:      #f5f8fd;
  --bg-deep:      #0b1830;

  /* UI */
  --radius:       18px;
  --radius-sm:    12px;
  --shadow-sm:    0 1px 2px rgba(13,27,46,.06), 0 4px 14px rgba(13,27,46,.05);
  --shadow-md:    0 10px 30px rgba(13,27,46,.10);
  --shadow-lg:    0 24px 60px rgba(21,74,153,.18);
  --ring:         0 0 0 4px rgba(31,99,201,.16);

  --maxw:         1180px;
  --font-head:    "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  font-weight: 700;
}

p { margin: 0 0 1rem; }

a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-700); }

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

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

section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-head p { font-size: 1.08rem; color: var(--muted); margin-bottom: 0; }

/* ---------- Botones ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  box-shadow: 0 8px 20px rgba(31,99,201,.28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(31,99,201,.36); color:#fff; }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { --btn-fg: var(--brand); border-color: var(--brand); background: var(--brand-soft); }

.btn--light {
  --btn-bg: #fff; --btn-fg: var(--brand);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn--light:hover { --btn-fg: var(--brand-700); }

.btn--wide { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(13,27,46,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 24px;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500; font-size: .95rem; color: var(--ink-2);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px; background: var(--brand);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--brand); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative; transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__img { height: 54px; width: auto; display: block; }
.footer .logo__img { height: 54px; }
@media (max-width: 760px){ .logo__img { height: 40px; } }

/* Logo de marca dentro de tarjetas de producto */
.product__logo { height: 46px; display: flex; align-items: center; margin-bottom: 22px; }
.product__logo img { max-height: 46px; max-width: 220px; width: auto; height: auto; display: block; }

/* Logo real dentro de sub-tarjetas Nexuz */
.nexuz-item__logo { height: 42px; display: flex; align-items: center; margin-bottom: 10px; }
.nexuz-item__logo img { max-height: 42px; max-width: 160px; width: auto; height: auto; display: block; }
.logo__mark { width: 42px; height: 42px; flex: none; }
.logo__word { display: flex; flex-direction: column; line-height: 1; }
.logo__word b {
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
  color: var(--brand); letter-spacing: .02em;
}
.logo__word small {
  font-size: .58rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600; margin-top: 2px;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 70px); }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(56,182,255,.20), transparent 60%),
    radial-gradient(50% 50% at 8% 20%, rgba(31,99,201,.14), transparent 60%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 55%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero__content h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
}
.hero__content h1 .grad {
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: 1.18rem; color: var(--ink-2); max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero__stats .stat b { font-family: var(--font-head); font-size: 1.7rem; color: var(--ink); display: block; }
.hero__stats .stat span { font-size: .9rem; color: var(--muted); }

/* Panel visual del hero */
.hero__visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-lg); padding: 26px; position: relative; z-index: 2;
}
.hero-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card__dots { display: flex; gap: 6px; }
.hero-card__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); display: block; }
.hero-card__dots i:nth-child(1){ background:#ff6b6b;} .hero-card__dots i:nth-child(2){ background:#ffd166;} .hero-card__dots i:nth-child(3){ background:#06d6a0;}
.hero-chip { font-size:.72rem; font-family:var(--font-head); font-weight:600; color:var(--brand); background:var(--brand-soft); padding:5px 10px; border-radius:999px; }
.hero-row {
  display: flex; align-items: center; gap: 14px; padding: 14px;
  border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-row:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.hero-row:last-child { margin-bottom: 0; }
.hero-row__icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: none; }
.hero-row__icon svg { width: 22px; height: 22px; }
.hero-row__txt b { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--ink); }
.hero-row__txt span { font-size: .84rem; color: var(--muted); }
.hero-row__meta { margin-left: auto; font-family: var(--font-head); font-weight: 600; color: #06a56a; font-size: .85rem; }
.hero__glow {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,182,255,.5), transparent 65%);
  filter: blur(10px); right: -40px; bottom: -30px; z-index: 1;
}

/* ---------- Franja de confianza ---------- */
.trust { padding: 30px 0 0; }
.trust__inner {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
  color: var(--muted); font-family: var(--font-head); font-weight: 600; font-size: .92rem;
}
.trust__inner span { display: inline-flex; align-items: center; gap: 8px; }
.trust__inner svg { width: 18px; height: 18px; color: var(--brand); }

/* ---------- Valores / Nosotros ---------- */
.values { background: var(--bg-soft); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.value__ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.18rem; }
.value p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* ---------- Productos ---------- */
.products__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
}
.product {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.product::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product:hover::before { transform: scaleX(1); }
.product--full { grid-column: span 6; }
.product--wide { grid-column: span 3; }
.product--half { grid-column: span 3; }
.product--third { grid-column: span 2; }

.product__ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  color: #fff; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.product__ic svg { width: 28px; height: 28px; }
.product__tag { font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing:.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.product h3 { font-size: 1.3rem; display:flex; align-items:center; gap:8px; }
.product p { color: var(--muted); font-size: .97rem; }
.product__list { list-style: none; padding: 0; margin: 6px 0 20px; display: grid; gap: 8px; }
.product__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--ink-2); }
.product__list li svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 2px; }
.product__foot { margin-top: auto; padding-top: 6px; }
.product__link {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head);
  font-weight: 600; font-size: .93rem;
}
.product__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.product__link:hover svg { transform: translateX(4px); }

/* Sub-tarjetas Nexuz */
.nexuz-sub { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-top: 6px; }
.nexuz-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; background: var(--bg-soft);
  transition: background .2s ease, transform .2s ease;
}
.nexuz-item:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.nexuz-item__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color:#fff; margin-bottom: 10px; }
.nexuz-item__ic svg { width: 20px; height: 20px; }
.nexuz-item b { font-family: var(--font-head); font-size: .98rem; color: var(--ink); display: block; }
.nexuz-item span { font-size: .82rem; color: var(--muted); }

/* Colores de iconos */
.ic-blue   { background: linear-gradient(135deg,#1f63c9,#38b6ff); }
.ic-violet { background: linear-gradient(135deg,#6d5efc,#a78bfa); }
.ic-teal   { background: linear-gradient(135deg,#0ea5a5,#22d3ee); }
.ic-green  { background: linear-gradient(135deg,#0f9d58,#34d399); }
.ic-orange { background: linear-gradient(135deg,#f97316,#fbbf24); }
.ic-rose   { background: linear-gradient(135deg,#e11d6b,#fb7185); }

/* ---------- Bonsái destacado ---------- */
.bonsai { background: linear-gradient(160deg,#06301f 0%, #0b3d29 40%, #0b1830 100%); color: #dcece4; overflow: hidden; position: relative; }
.bonsai::after {
  content:""; position:absolute; right:-120px; top:-120px; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(52,211,153,.25), transparent 65%); filter: blur(8px);
}
.bonsai__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.bonsai .eyebrow { color:#7ff0c0; background: rgba(52,211,153,.14); }
.bonsai h2 { color: #fff; font-size: clamp(2rem,3.6vw,3rem); }
.bonsai h2 .leaf { color:#34d399; }
.bonsai p { color: #b9d3c8; font-size: 1.06rem; }
.bonsai__features { list-style:none; padding:0; margin: 24px 0 30px; display:grid; gap:14px; }
.bonsai__features li { display:flex; gap:12px; align-items:flex-start; }
.bonsai__features svg { width:22px; height:22px; color:#34d399; flex:none; margin-top:2px; }
.bonsai__features b { color:#fff; }
.bonsai__panel {
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 22px;
  backdrop-filter: blur(6px);
}
.tree { font-family: "Sora", monospace; font-size: .9rem; line-height: 1.9; color:#cdebdd; }
.tree .node { display:flex; align-items:center; gap:10px; padding: 8px 12px; border-radius: 10px; }
.tree .node:hover { background: rgba(52,211,153,.10); }
.tree .lvl-1 { padding-left: 26px; }
.tree .lvl-2 { padding-left: 46px; }
.tree .amt { margin-left:auto; color:#7ff0c0; font-weight:600; }
.tree .amt.neg { color:#fca5a5; }

/* ---------- Contacto ---------- */
.contact { background: var(--bg-soft); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; }
.contact__info h2 { font-size: clamp(1.9rem,3.4vw,2.7rem); }
.contact__info > p { color: var(--muted); font-size: 1.05rem; }
.contact-list { list-style:none; padding:0; margin: 24px 0 0; display:grid; gap: 16px; }
.contact-list li { display:flex; gap:14px; align-items:flex-start; }
.contact-list .ci { width:46px; height:46px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display:grid; place-items:center; flex:none; }
.contact-list .ci svg { width:22px; height:22px; }
.contact-list b { font-family: var(--font-head); color: var(--ink); display:block; font-size:.95rem; }
.contact-list a, .contact-list span { color: var(--muted); font-size: .96rem; }
.contact-list a:hover { color: var(--brand); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field.col-2 { grid-column: span 2; }
.field label { font-family: var(--font-head); font-size: .86rem; font-weight: 600; color: var(--ink); }
.field label .req { color: #e11d6b; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fbfdff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff; box-shadow: var(--ring);
}
.field input.invalid, .field textarea.invalid, .field select.invalid { border-color:#e11d6b; box-shadow: 0 0 0 4px rgba(225,29,107,.12); }
.field .err { font-size: .78rem; color:#e11d6b; min-height: 0; }

/* Honeypot: invisible para humanos */
.hp-field { position:absolute!important; left:-9999px!important; width:1px; height:1px; overflow:hidden; }

.form-consent { display:flex; gap:10px; align-items:flex-start; font-size:.85rem; color: var(--muted); margin: 4px 0 18px; }
.form-consent input { margin-top:3px; accent-color: var(--brand); width:16px; height:16px; }
.form-note { display:flex; align-items:center; gap:8px; font-size:.82rem; color: var(--muted); margin-top:14px; justify-content:center; }
.form-note svg { width:16px; height:16px; color:#0f9d58; }

.form-alert { border-radius: 12px; padding: 14px 16px; font-size: .92rem; margin-bottom: 18px; display:none; align-items:center; gap:10px; }
.form-alert.show { display:flex; }
.form-alert svg { width:20px; height:20px; flex:none; }
.form-alert.ok { background:#e7f8ef; color:#0a6b43; border:1px solid #bfead2; }
.form-alert.bad { background:#fdeef2; color:#a01047; border:1px solid #f6c9d8; }

.btn.is-loading { pointer-events:none; opacity:.85; }
.btn .spinner { width:18px; height:18px; border:2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius:50%; animation: spin .7s linear infinite; display:none; }
.btn.is-loading .spinner { display:block; }
.btn.is-loading .btn-label { opacity:.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #aebfd6; padding: 64px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer .logo__word b { color:#fff; }
.footer .logo__word small { color:#8fa3c4; }
.footer__about { margin: 18px 0; max-width: 320px; font-size: .94rem; color:#93a6c4; }
.footer h4 { color:#fff; font-size: .95rem; letter-spacing:.04em; text-transform:uppercase; margin-bottom: 16px; }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.footer ul a { color:#aebfd6; font-size:.94rem; }
.footer ul a:hover { color:#fff; }
.footer__social { display:flex; gap:12px; margin-top: 6px; }
.footer__social a { width:40px; height:40px; border-radius:11px; background: rgba(255,255,255,.07); display:grid; place-items:center; color:#cfe; }
.footer__social a:hover { background: var(--brand); color:#fff; transform: translateY(-2px); }
.footer__social svg { width:19px; height:19px; }
.footer__bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10);
  display:flex; justify-content: space-between; gap:16px; flex-wrap: wrap; font-size:.86rem; color:#7d92b3;
}
.footer__bottom a { color:#7d92b3; }
.footer__bottom a:hover { color:#fff; }

/* Botón flotante WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display:grid; place-items:center; color:#fff; box-shadow: 0 12px 28px rgba(37,211,102,.44);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); color:#fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Animación de entrada ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 460px; }
  .values__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .product--wide, .product--half, .product--third { grid-column: auto; }
  .bonsai__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; padding: 16px 22px 22px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__links a { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--bg-soft); }
  .nexuz-sub { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.col-2 { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
}
