/* ==========================================================================
   DVIDRIO — Sistema de diseño
   Maquinaria para vidrio plano · Líneas de vidrio cámara / aislante
   ========================================================================== */

:root {
  /* Marca */
  --orange: #F2711C;
  --orange-600: #D95E10;
  --orange-700: #B94D0B;
  --orange-300: #FF9A4D;
  --orange-tint: #FFF2E8;

  --navy: #0C1826;
  --navy-800: #0F2033;
  --navy-700: #16304A;
  --navy-600: #1E4166;

  --ink: #10202E;
  --muted: #5B6b7a;
  --muted-2: #8494a2;
  --line: #E3E9EF;
  --line-2: #d3dce4;

  --bg: #FFFFFF;
  --bg-soft: #F4F7FA;
  --bg-soft-2: #EDF2F7;

  --wa: #25D366;
  --wa-600: #1EBE59;

  --white: #ffffff;

  /* Tipografía */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --wrap: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --shadow-sm: 0 2px 8px rgba(16, 32, 46, .06);
  --shadow: 0 12px 34px rgba(16, 32, 46, .10);
  --shadow-lg: 0 26px 60px rgba(12, 24, 38, .18);

  --header-h: 76px;
}

/* --------------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

/* --------------------------------------------------------------- Utilidades */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.section--dark { background: var(--navy); color: #cdd8e2; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.section--dark .eyebrow { color: var(--orange-300); }
.title { font-size: clamp(28px, 4vw, 44px); }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 62ch; }
.section--dark .lead { color: #a9b8c6; }
.maxw { max-width: 720px; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }

/* --------------------------------------------------------------- Botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 16px; line-height: 1; letter-spacing: -.01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn i.fa-whatsapp { font-size: 20px; line-height: 1; flex: none; }
.btn--lg i.fa-whatsapp { font-size: 22px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(242,113,28,.32); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 14px 30px rgba(242,113,28,.42); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn--wa:hover { background: var(--wa-600); box-shadow: 0 14px 30px rgba(37,211,102,.42); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-600); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------- Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(12,24,38,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.is-scrolled { background: rgba(12,24,38,.96); box-shadow: 0 8px 30px rgba(0,0,0,.28); }
.header-inner { display: flex; align-items: center; gap: 12px; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
/* flex:0 0 auto + max-width:none evitan que el logo se comprima al ajustar el menú */
.brand img { height: 34px; width: auto; max-width: none; flex: 0 0 auto; }
.nav { display: flex; align-items: center; gap: 1px; }
.nav a {
  color: #d6e0ea; font-weight: 600; font-size: 14.5px; padding: 8px 10px; border-radius: 8px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover, .nav a.is-active { color: #fff; background: rgba(255,255,255,.08); }
.nav a.is-active { color: var(--orange-300); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 700; font-size: 13.5px; white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; color: var(--orange-300); }
.nav-toggle {
  display: none; background: transparent; border: 0; padding: 8px; color: #fff;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* Menú móvil */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
  background: var(--navy); padding: 24px 22px 40px; overflow-y: auto;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { color: #e4ebf2; font-weight: 600; font-size: 19px; padding: 15px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a:hover { color: var(--orange-300); }
.mobile-nav .btn { margin-top: 18px; }
body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------- Hero */
.hero {
  position: relative; padding: calc(var(--header-h) + 74px) 0 84px; overflow: hidden;
  background: var(--navy); color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .30; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--navy) 32%, rgba(12,24,38,.72) 60%, rgba(12,24,38,.45) 100%),
    linear-gradient(0deg, var(--navy) 4%, rgba(12,24,38,0) 55%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5.4vw, 62px); color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--orange); }
.hero__sub { font-size: clamp(17px, 2.1vw, 21px); color: #b9c6d3; max-width: 54ch; margin-bottom: 30px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 28px 0 0; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; color: #cdd8e2; font-weight: 600; font-size: 15px; }
.hero__badge svg { width: 20px; height: 20px; color: var(--orange-300); flex: none; }

/* Tarjeta lateral del hero */
.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.hero-card p { color: #a9b8c6; font-size: 15px; }
.hero-card ul { display: grid; gap: 12px; margin: 18px 0 22px; }
.hero-card li { display: flex; gap: 11px; align-items: flex-start; color: #d7e0e9; font-size: 15px; }
.hero-card li svg { width: 20px; height: 20px; color: var(--wa); flex: none; margin-top: 1px; }

/* --------------------------------------------------------------- Barra de stats */
.statbar { background: var(--orange); }
.statbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 30px; }
.stat { text-align: center; color: #fff; }
.stat b { display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.stat span { font-size: 14px; font-weight: 600; opacity: .92; }
.statbar .stat + .stat { border-left: 1px solid rgba(255,255,255,.24); }

/* --------------------------------------------------------------- Grid / Cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card__icon {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center;
  background: var(--orange-tint); color: var(--orange-600); margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card__icon i.fa-whatsapp { font-size: 27px; line-height: 1; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* Tarjeta de ángulo (numerada) */
.angle { position: relative; padding-top: 34px; }
.angle__num {
  position: absolute; top: -18px; left: 26px;
  width: 44px; height: 44px; border-radius: 12px; background: var(--orange); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 19px; box-shadow: 0 8px 20px rgba(242,113,28,.35);
}
.angle ul { display: grid; gap: 9px; margin-top: 14px; }
.angle li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink); font-size: 15px; }
.angle li svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 3px; }

/* Tarjeta de categoría con imagen */
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s ease; }
.cat:hover img { transform: scale(1.06); }
.cat::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(9,18,29,.92) 8%, rgba(9,18,29,.35) 55%, rgba(9,18,29,.15) 100%); }
.cat__body { position: relative; z-index: 2; padding: 24px; }
.cat__body h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.cat__body p { color: #c4d0dc; font-size: 14.5px; margin: 0 0 12px; }
.cat__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--orange-300); font-size: 15px; }
.cat__link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.cat:hover .cat__link svg { transform: translateX(4px); }

/* Producto (máquina) */
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft-2); }
.product__img img { width: 100%; height: 100%; object-fit: cover; }
.product__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product__tag { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--orange-600); margin-bottom: 6px; }
.product h3 { font-size: 17px; margin-bottom: 6px; }
.product p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.product .btn { margin-top: auto; }

/* Lista de checks */
.checks { display: grid; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.checks li svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }
.section--dark .checks li { color: #d3dde6; }

/* Split (imagen + texto) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* --------------------------------------------------------------- Proceso */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; }
.step__n {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 18px; margin-bottom: 16px;
}
.section--dark .step__n { background: var(--orange); }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }
.section--dark .step p { color: #a9b8c6; }

/* --------------------------------------------------------------- Marquee logos */
.logos { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logos__track { display: flex; gap: 56px; width: max-content; animation: marquee 34s linear infinite; align-items: center; }
.logos:hover .logos__track { animation-play-state: paused; }
.logos__track img { height: 46px; width: auto; opacity: .62; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.logos__track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes marquee { to { transform: translateX(-50%); } }

.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.brand-grid .brand-cell {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; height: 92px;
  display: grid; place-items: center; padding: 16px;
}
.brand-grid img { max-height: 46px; width: auto; opacity: .78; filter: grayscale(1); transition: .2s; }
.brand-grid .brand-cell:hover img { opacity: 1; filter: grayscale(0); }

/* --------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--navy-800); color: #fff; border-radius: var(--radius-lg); padding: 52px 44px; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(242,113,28,.35), transparent 70%); }
.cta-band .wrap-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-band p { color: #b7c4d1; margin: 0; }

/* --------------------------------------------------------------- Formulario */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--orange-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: 10px;
  font: inherit; font-size: 15px; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,113,28,.14);
}
.form-consent { font-size: 12.5px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.form-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--orange); flex: none; }
.form-note { font-size: 13px; color: var(--muted-2); text-align: center; margin: 0; }

/* --------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; color: var(--orange); font-weight: 400; transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 18px; font-size: 15.5px; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--navy); color: #9fb0bf; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer .brand img { height: 36px; margin-bottom: 16px; }
.site-footer p { font-size: 14.5px; color: #97a8b7; }
.footer-col h4 { color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #a7b6c4; font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--orange-300); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; font-size: 14.5px; color: #b3c1cd; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange-300); flex: none; margin-top: 2px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--orange); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #7f909f; }
.footer-bottom a { color: #7f909f; }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------- WhatsApp flotante */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 20px 13px 15px; border-radius: 999px; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 38px rgba(37,211,102,.55); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float i.fa-whatsapp { font-size: 26px; line-height: 1; }
.wa-float__txt { display: inline; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px; border: 2px solid var(--wa);
  animation: wa-pulse 2.4s ease-out infinite; z-index: -1;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }

/* --------------------------------------------------------------- Page hero (interiores) */
.page-hero { background: var(--navy); color: #fff; padding: calc(var(--header-h) + 56px) 0 56px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -120px; top: -60px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(242,113,28,.22), transparent 70%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 48px); max-width: 18ch; }
.page-hero p { color: #b3c1ce; font-size: clamp(16px, 2vw, 20px); max-width: 64ch; margin: 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: #8fa0af; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--orange-300); }
.breadcrumb span { color: #5f7182; }

/* --------------------------------------------------------------- Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
  .logos__track, .wa-float::after { animation: none; }
}

/* --------------------------------------------------------------- Responsive */
/* El menú completo (7 secciones + teléfono + botón) solo cabe en una línea
   en escritorios anchos; por debajo mostramos el menú hamburguesa. */
@media (max-width: 1200px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-card { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split--rev .split__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .statbar .wrap { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
  .statbar .stat:nth-child(3) { border-left: 0; }
  .cta-band { padding: 40px 26px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .statbar .wrap { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .wa-float__txt { display: none; }
  .wa-float { padding: 14px; }
  .cta-band .wrap-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn-row .btn { flex: 1 1 auto; }
}
