/* Magni Sports — stadium atelier
   Navy #111A5B · Blue #3F3F94 · Red #EA333A */

:root {
  --navy: #111a5b;
  --navy-deep: #070b28;
  --blue: #3f3f94;
  --red: #ea333a;
  --red-hot: #ff2a32;
  --white: #ffffff;
  --bg: #f7f7f4;
  --paper: #f1f1ed;
  --ink: #101426;
  --muted: #5c6378;
  --line: #e4e6ee;
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --header-h: 88px;
  --container: 1180px;
  --gutter: clamp(1.1rem, 3.4vw, 2.2rem);
  --section: clamp(4rem, 7vw, 6.5rem);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
html, body { overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

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

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 80;
  background: var(--red); color: #fff; padding: 0.7rem 1rem; font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrap {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin: 0 0 0.7rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow--light { color: rgba(255,255,255,0.82); }
.eyebrow::before { content: ""; width: 1.5rem; height: 1px; background: currentColor; }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  padding-bottom: 0.04em;
  text-wrap: balance;
  text-transform: uppercase;
}
h1.display { font-size: 3.25rem; }
h2.display { font-size: 2.35rem; }
h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.lede { margin: 0.9rem 0 0; color: var(--muted); max-width: 34rem; }
.lede--light { color: rgba(255,255,255,0.8); }

.section { padding: var(--section) 0; position: relative; scroll-margin-top: 5rem; }
.section--soft { background: var(--paper); }
.section--navy { background: var(--navy-deep); color: #fff; }
.section-head { max-width: 36rem; margin-bottom: 2.6rem; }
.section-head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 54px; padding: 0.8rem 1.6rem;
  border: 0; border-radius: 999px;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn .icon { transition: transform 0.25s var(--ease); }
.btn:hover { background: var(--red-hot); transform: translateY(-1px); box-shadow: 0 14px 28px rgba(234,51,58,0.28); }
.btn:hover .icon { transform: translateX(4px); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: #fff; color: var(--red); box-shadow: 0 14px 28px rgba(0,0,0,0.18); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); box-shadow: none; color: #fff; }
.btn--line { background: transparent; color: var(--navy); border: 1px solid rgba(17,26,91,0.2); }
.btn--line:hover { background: var(--navy); color: #fff; box-shadow: none; }
.btn--compact { min-height: 44px; padding: 0.45rem 1.1rem; font-size: 0.85rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: #fff; font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  font-size: 0.95rem; white-space: nowrap;
}
.text-link--dark { color: var(--navy); }
.text-link:hover { color: var(--red); }
.icon { flex-shrink: 0; }

.brand-logo { height: 54px; width: auto; }
.brand-logo--mark { height: 32px; }
.brand-logo--white, .brand-logo--color { height: 54px; }

/* Header */
.site-header {
  position: absolute;
  left: 0; right: 0; top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex; align-items: center;
  color: #fff;
}
.site-header.is-sticky {
  position: fixed;
  background: rgba(247,247,244,0.92);
  backdrop-filter: blur(18px);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(16,20,38,0.08);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(var(--container), calc(100% - var(--gutter) * 2));
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__on-light { display: none; }
.site-header.is-sticky .brand__on-photo { display: none; }
.site-header.is-sticky .brand__on-light { display: inline-flex; }

.nav-pill {
  justify-self: center;
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(7,11,40,0.12);
}
.site-header.is-sticky .nav-pill {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(16,20,38,0.06);
}
.nav-pill a {
  min-height: 38px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex; align-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-pill a.is-active,
.nav-pill a:hover { background: var(--navy); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 0.55rem; justify-content: flex-end; }
.header-actions .btn { display: none; }
.menu-btn {
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.18); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(10px);
}
.site-header.is-sticky .menu-btn { background: var(--navy); color: #fff; }
.menu-btn--light { background: rgba(255,255,255,0.12); }

.nav-panel {
  position: fixed; inset: 0; z-index: 70;
  background: var(--navy-deep); color: #fff;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 1.2rem var(--gutter) 2rem;
}
.nav-panel.is-open { transform: none; }
.nav-panel__top { display: flex; justify-content: space-between; align-items: center; }
.nav-panel nav { display: grid; gap: 0.2rem; align-content: center; }
.nav-panel nav a {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800; color: #fff; text-decoration: none;
  text-transform: uppercase; line-height: 1.08;
}
.nav-panel nav a:hover { color: var(--red); }
body.nav-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(580px, 78svh, 760px);
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 55% center;
}
.hero__overlay {
  background:
    linear-gradient(180deg, rgba(7,11,40,0.3), transparent 28%),
    linear-gradient(90deg, rgba(7,11,40,0.86) 0%, rgba(7,11,40,0.62) 28%, rgba(7,11,40,0.08) 58%, transparent 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 9rem 0 5rem;
}
.hero__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4.3vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.hero__note { margin: 1.5rem 0 0; font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.hero__lead {
  margin: 1.2rem 0 0;
  max-width: 25rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-top: 1.8rem; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1rem;
  list-style: none; margin: 1.6rem 0 0; padding: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}
.hero-proof li {
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.hero-proof li::before {
  content: "";
  width: 0.42rem; height: 0.42rem; border-radius: 50%;
  background: var(--red);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Stats + clientes */
.stats { background: var(--navy-deep); color: #fff; padding: 0 0 1.2rem; }
.stats__row { display: grid; grid-template-columns: 1fr; align-items: stretch; }
.stat { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.stat:last-child { border-bottom: 0; }
.stat__kicker { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.stat__value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; line-height: 0.95; margin: 0.28rem 0 0.35rem; text-transform: uppercase; }
.stat__label { margin: 0; color: rgba(255,255,255,0.62); font-size: 0.92rem; }

.marquee {
  overflow: hidden;
  margin-top: 1.6rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; gap: 2.6rem; width: max-content; animation: marquee 42s linear infinite; }
.marquee__item {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; opacity: 0.4; white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Modalidades */
.mod-grid { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.mod-card {
  position: relative; display: block; text-decoration: none; color: #fff;
  min-height: 280px; overflow: hidden; border-radius: var(--radius);
}
.mod-card__media, .mod-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mod-card__media img { transition: transform 0.8s var(--ease); }
.mod-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7,11,40,0.85));
}
.mod-card__body {
  position: relative; z-index: 1; min-height: 280px;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1.2rem;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  text-transform: uppercase;
}
.mod-card:hover .mod-card__media img { transform: scale(1.06); }
.mod-card.is-extra { display: none; }
.mod-grid.is-expanded .mod-card.is-extra { display: block; }
.mod-more { margin-top: 1.6rem; }

/* Personalização */
.custom { display: grid; gap: 2.6rem; align-items: center; }
.custom__kit { position: relative; display: grid; place-items: center; padding: 1rem 0; }
.custom__kit::before {
  content: ""; position: absolute; z-index: 0;
  width: min(100%, 500px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(17,26,91,0.16), transparent 66%);
}
.custom__shirt {
  position: relative; z-index: 1;
  width: min(100%, 330px); height: auto;
  filter: drop-shadow(0 28px 52px rgba(16,20,38,0.34));
}
.chip-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.4rem 0 1.8rem; padding: 0; list-style: none;
}
.chip-list li {
  border: 1px solid rgba(17,26,91,0.16);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.88rem;
  color: var(--navy);
  background: #fff;
}

/* Simulador */
.sim__layout { display: grid; gap: 2.4rem; align-items: center; }
.sim-mock { position: relative; display: grid; place-items: center; padding: 1rem 0; }
.sim-mock::before {
  content: ""; position: absolute; z-index: 0;
  width: min(100%, 520px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(63,63,148,0.85), rgba(63,63,148,0.25) 45%, transparent 68%);
}
.sim-mock img {
  position: relative; z-index: 1;
  width: min(100%, 330px); height: auto;
  filter: drop-shadow(0 34px 60px rgba(0,0,0,0.55));
}

/* Processo */
.process-line { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 0; align-items: stretch; }
.step {
  position: relative; overflow: hidden;
  padding: 1.8rem 1.5rem 1.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: rgba(234,51,58,0.35); box-shadow: 0 18px 40px rgba(16,20,38,0.08); }
.step::after {
  content: ""; position: absolute; left: 1.5rem; top: 0; width: 2.2rem; height: 3px;
  background: var(--red);
}
.step__n {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--navy); opacity: 0.16; line-height: 1; display: block; margin-bottom: 0.6rem;
}
.step h3 { color: var(--navy); }
.step p { color: var(--muted); margin: 0.45rem 0 0; font-size: 0.95rem; }

/* Qualidade */
.tech-layout { display: grid; gap: 2.4rem; align-items: stretch; }
.tech-photo { margin: 0; overflow: hidden; border-radius: var(--radius); min-height: 340px; }
.tech-photo img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.tech-tags { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.tech-tags article { border-top: 1px solid var(--line); padding-top: 1rem; }
.tech-tags h3 { color: var(--navy); }
.tech-tags p { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.95rem; }

/* Sobre */
.history-grid { display: grid; gap: 2.4rem; align-items: center; }
.timeline { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.4rem; }
.timeline li { border-left: 2px solid var(--red); padding-left: 1.1rem; }
.timeline strong { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.timeline p { color: var(--muted); margin: 0.3rem 0 0; }
.history-photo { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); min-height: 360px; }
.history-photo img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.history-photo figcaption {
  position: absolute; left: 1rem; bottom: 0.9rem; color: #fff;
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
}

/* Depoimentos */
.quote-grid { display: grid; gap: 1rem; align-items: stretch; }
blockquote.quote {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 1.6rem 1.5rem;
  display: flex; flex-direction: column; position: relative;
}
blockquote.quote::before {
  content: "”";
  position: absolute; top: 0.6rem; left: 1.5rem;
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1;
  color: var(--red); opacity: 0.55;
}
blockquote.quote p { margin: 0 0 1.2rem; font-size: 1.02rem; flex: 1; }
.quote footer {
  color: var(--muted); font-size: 0.85rem;
  border-top: 1px solid var(--line); padding-top: 0.9rem;
}
.quote footer strong { color: var(--ink); }
.score-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; color: var(--muted); }
.stars { display: inline-flex; gap: 0.1rem; color: #c9cedb; }
.stars__item.is-on { color: var(--red); }
.stars__item.is-on svg { fill: currentColor; }
.score-num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); }

/* CTA */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--navy-deep); color: #fff;
  margin: 0 var(--gutter) var(--gutter); border-radius: var(--radius);
}
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,12,40,0.92), rgba(8,12,40,0.5));
}
.cta-band__copy { position: relative; z-index: 1; padding: var(--section) 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-size: 1.2rem; }
.faq-item summary {
  width: 100%; min-height: 58px; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.05rem 0; cursor: pointer; list-style: none;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icon { transition: transform 0.25s var(--ease); }
.faq-item[open] .icon { transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 0 1.2rem; color: var(--muted); max-width: 42rem; }

/* Contato */
.contact-grid { display: grid; gap: 2.4rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.btn--wa { background: #128c4a; }
.btn--wa:hover { background: #0e7a3f; box-shadow: 0 14px 28px rgba(18,140,74,0.28); }
.btn--wa .icon, .btn--line .icon { transform: none; }
.btn--wa:hover .icon, .btn--line:hover .icon { transform: none; }
.contact-list {
  list-style: none; margin: 2.2rem 0 0; padding: 0;
  display: grid; gap: 1.1rem;
}
.contact-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-list .icon { color: var(--red); margin-top: 0.15rem; }
.contact-list span { display: grid; gap: 0.15rem; }
.contact-list small { color: var(--muted); font-size: 0.86rem; }
.contact-list a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-list small a { font-weight: 500; }
.contact-list a:hover { color: var(--red); }
.map-slot { border-radius: var(--radius); overflow: hidden; background: #d9dde8; min-height: 380px; }
.map-slot iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 3.6rem 0 1.4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #ffd4d5; }
.site-footer h2 {
  color: #fff; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 0.8rem; font-family: var(--font-body); font-weight: 700;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer-brand p { margin: 1rem 0 0; max-width: 20rem; }
.footer-legal {
  margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; font-size: 0.85rem;
}

/* WhatsApp */
.wa { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 45; display: grid; justify-items: end; gap: 0.45rem; }
.wa__tip {
  background: #fff; color: var(--ink); padding: 0.55rem 0.75rem; font-size: 0.85rem;
  border-radius: var(--radius); box-shadow: 0 12px 32px rgba(16,20,38,0.14);
  opacity: 0; transform: translateY(6px); pointer-events: none;
  transition: 0.35s var(--ease); max-width: 14rem;
}
.wa.is-tipped .wa__tip { opacity: 1; transform: none; }
.wa__btn {
  width: 56px; height: 56px; border-radius: 50%; background: #128c4a; color: #fff;
  display: grid; place-items: center; text-decoration: none;
  box-shadow: 0 12px 24px rgba(18,140,74,0.28);
}
.wa__btn:hover { background: #0e7a3f; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (min-width: 700px) {
  h1.display { font-size: 4.6rem; }
  h2.display { font-size: 3rem; }
  .nav-panel nav a { font-size: 3.4rem; }
  .stat__value { font-size: 2.8rem; }
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .stat {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 1.5rem;
  }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n + 2) { border-bottom: 0; }
  .mod-grid { grid-template-columns: repeat(3, 1fr); }
  .process-line { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  h1.display { font-size: 5.7rem; }
  h2.display { font-size: 3.7rem; }
  .stat__value { font-size: 3.05rem; }
  .nav-pill { display: flex; }
  .header-actions .btn { display: inline-flex; }
  .menu-btn { display: none; }
  .custom { grid-template-columns: 1fr 1fr; }
  .sim__layout { grid-template-columns: 1fr 1fr; }
  .sim__layout .sim-mock { order: -1; }
  .tech-layout { grid-template-columns: 1fr 1fr; }
  .history-grid { grid-template-columns: 1fr 1fr; }
  .process-line { grid-template-columns: repeat(4, 1fr); }
  .stats__row { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; padding-inline: 1.8rem; }
  .stat:first-child { padding-left: 0; }
  .stat:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat:last-child { border-right: 0; padding-right: 0; }
  .faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
  .faq-layout .section-head { margin-bottom: 0; }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: stretch; gap: 3.5rem; }
}

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

@media (max-width: 700px) {
  .hero { min-height: 0; display: block; padding-top: var(--header-h); }
  .hero__media { position: relative; inset: auto; height: clamp(240px, 65vw, 380px); }
  .hero__media img { object-position: 72% center; }
  .hero__overlay { display: none; }
  .hero__content { padding: 2rem 0 2.5rem; }
  .hero__title { max-width: none; font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero__actions { gap: 0.7rem; }
  .hero__actions .btn { padding-inline: 1.1rem; }
  .cta-band { margin: 0 0.8rem 0.8rem; border-radius: var(--radius); }
  .wa { display: none; }
  .section-head--row { display: grid; }
  .stats { padding-top: 0.6rem; }
}

@media (max-width: 360px) {
  h1.display { font-size: 2.55rem; }
  h2.display { font-size: 2.05rem; }
  .hero__content { padding-top: 1.6rem; padding-bottom: 2.2rem; }
  .hero__title { max-width: none; }
  .hero__lead { font-size: 0.98rem; margin-top: 0.95rem; }
  .hero__actions { gap: 0.65rem; margin-top: 1.25rem; }
  .hero__actions .btn { width: 100%; padding-inline: 1rem; }
  .hero-proof { display: grid; gap: 0.45rem; }
}
