/* ===========================================================
   OddXA — styles.css
   Corporate light theme · mobile-first · responsive
   =========================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f8fd;
  --bg-soft-2: #eef4fc;
  --ink: #0f1f3d;
  --ink-soft: #51607a;
  --ink-mute: #7a879e;
  --brand: #2563eb;
  --brand-dark: #1a44b8;
  --brand-2: #06b6d4;
  --green: #16a34a;
  --wa: #25d366;
  --wa-dark: #1ebe5a;
  --line: #e4ecf7;
  --line-soft: #eef3fa;
  --shadow-sm: 0 1px 2px rgba(15,31,61,.06), 0 1px 3px rgba(15,31,61,.05);
  --shadow: 0 10px 30px rgba(20,50,107,.10);
  --shadow-lg: 0 24px 60px rgba(20,50,107,.16);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 22px;
  --maxw: 1140px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 820px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 16px 26px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--wa { background: var(--wa); color: #06351b; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,211,102,.42); }

.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.btn--outline { background: #fff; color: var(--brand); border-color: #cfe0fb; }
.btn--outline:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }

.ico-wa { flex: none; }

/* ===== Topbar ===== */
.topbar {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand) 55%, var(--brand-2));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
}
.topbar__inner { padding: 8px 20px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 66px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { flex: none; border-radius: 10px; }
.logo__word { font-weight: 800; font-size: 1.35rem; letter-spacing: -.5px; color: var(--ink); }
.logo__x { color: var(--brand); }
.logo--light .logo__word { color: #fff; }
.logo--light .logo__x { color: #7fb0ff; }

.nav { display: none; gap: 4px; }
.nav__link {
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--brand); background: var(--bg-soft); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.lang { display: none; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang__btn {
  border: 0; background: transparent; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: .8rem; color: var(--ink-mute);
  padding: 5px 11px; border-radius: 999px; transition: all .15s;
}
.lang__btn.is-active { background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); }

.header .btn--wa { display: none; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 10px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 11px; cursor: pointer;
}
.burger span { height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.burger.is-open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* Mobile menu */
.nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: #fff;
  padding: 14px 20px 22px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  gap: 2px;
  animation: slideDown .22s var(--ease);
}
.nav.is-open .nav__link { padding: 13px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
.nav.is-open .nav__mobile-cta { margin-top: 14px; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 54px 0 30px;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(6,182,212,.14), transparent 60%),
    radial-gradient(800px 420px at 10% 0%, rgba(37,99,235,.12), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero__inner { display: grid; gap: 38px; align-items: center; }

.pill {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 700; font-size: .82rem;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero__title span { display: block; }
.grad {
  background: linear-gradient(100deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 26px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.hero__badges li { display: flex; flex-direction: column; line-height: 1.2; }
.hero__badges strong { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.hero__badges span { font-size: .84rem; color: var(--ink-mute); font-weight: 600; }

/* Hero dashboard mockup */
.hero__visual { position: relative; }
.dash {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  transform: rotate(.4deg);
}
.dash__top { display: flex; align-items: center; gap: 7px; padding: 4px 4px 14px; border-bottom: 1px solid var(--line-soft); }
.dash__dot { width: 10px; height: 10px; border-radius: 50%; background: #d8e2f1; }
.dash__dot:nth-child(1){ background:#ff6058;} .dash__dot:nth-child(2){ background:#ffbe2f;} .dash__dot:nth-child(3){ background:#28c840;}
.dash__title { margin-left: 8px; font-size: .8rem; font-weight: 700; color: var(--ink-mute); }

.dash__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 16px 0; }
.kpi { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 12px; display: flex; flex-direction: column; gap: 3px; }
.kpi__label { font-size: .72rem; color: var(--ink-mute); font-weight: 600; }
.kpi__val { font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.kpi__up { font-size: .72rem; font-weight: 700; color: var(--green); }

.dash__chart { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 10px 6px 0; margin-bottom: 14px; }

.dash__odds { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.odd { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 8px; display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.odd span { font-size: .72rem; color: var(--ink-soft); font-weight: 600; }
.odd b { font-size: 1rem; color: var(--brand); }
.odd--live { border-color: #fcd7d4; background: #fff6f5; }
.odd--live span { color: #e0483c; }
.odd--live b { color: #e0483c; }

/* ===== Stats strip ===== */
.stats { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-soft); }
.stats__inner { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; padding: 26px 20px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-size: 1.7rem; font-weight: 800; color: var(--brand); letter-spacing: -.5px; }
.stat span { font-size: .82rem; color: var(--ink-soft); font-weight: 600; }

/* ===== Sections ===== */
.section { padding: 66px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 660px; margin: 0 auto 42px; }
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--brand); background: #e7effe; padding: 6px 13px; border-radius: 999px; margin-bottom: 14px;
}
.section__title { font-size: clamp(1.7rem, 5vw, 2.4rem); line-height: 1.12; letter-spacing: -1px; font-weight: 800; }
.section__lead { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }

/* ===== Product cards ===== */
.cards { display: grid; gap: 22px; }
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #cfe0fb; }
.card--featured { border-color: #bcd5fb; box-shadow: var(--shadow); }
.card__tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--brand); color: #fff; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; padding: 5px 10px; border-radius: 999px;
}
.card__icon {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 18px; color: #fff;
}
.card__icon--blue { background: linear-gradient(135deg, #2563eb, #1a44b8); }
.card__icon--cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.card__icon--green { background: linear-gradient(135deg, #16a34a, #15803d); }
.card__title { font-size: 1.22rem; font-weight: 800; letter-spacing: -.3px; margin-bottom: 10px; }
.card__text { color: var(--ink-soft); font-size: .96rem; margin-bottom: 16px; }
.card__list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.card__list li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 17px; height: 17px; border-radius: 50%;
  background: #e7effe url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.card__cta { display: inline-flex; font-weight: 800; color: var(--brand); font-size: .95rem; transition: gap .2s, color .2s; }
.card__cta:hover { color: var(--brand-dark); }

/* ===== Gallery (mobile mockups) ===== */
.gallery { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 26px; }
.phone { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.phone__frame {
  width: 250px;
  padding: 9px;
  background: #0f1f3d;
  border-radius: 34px;
  position: relative;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.07);
  transition: transform .3s var(--ease);
}
.phone:hover .phone__frame { transform: translateY(-6px); }
.phone__frame::before {
  content: ""; position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 17px; background: #0f1f3d; border-radius: 0 0 13px 13px; z-index: 2;
}
.phone__frame img { width: 100%; height: auto; display: block; border-radius: 26px; background: #fff; }
.phone figcaption { font-weight: 800; color: var(--ink); font-size: 1.02rem; }
.gallery__note { text-align: center; margin-top: 28px; color: var(--ink-mute); font-size: .85rem; }

@media (min-width: 880px) {
  .phone--up { transform: translateY(-26px); }
}

/* ===== Features ===== */
.features { display: grid; gap: 18px; grid-template-columns: 1fr; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature__ico { font-size: 1.7rem; margin-bottom: 10px; }
.feature h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.feature p { font-size: .9rem; color: var(--ink-soft); }

/* ===== Steps ===== */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* ===== Plans ===== */
.plans { display: grid; gap: 22px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--popular { border: 2px solid var(--brand); box-shadow: var(--shadow); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(37,99,235,.4);
}
.plan__name { font-size: 1.35rem; font-weight: 800; }
.plan__desc { color: var(--ink-soft); font-size: .92rem; margin: 6px 0 16px; }
.plan__price { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-bottom: 20px; }
.plan__price span { background: linear-gradient(100deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.plan__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan__list li { position: relative; padding-left: 26px; font-size: .92rem; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 17px; height: 17px; border-radius: 50%;
  background: #e7effe url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ===== Quotes ===== */
.quotes { display: grid; gap: 20px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.quote__stars { color: #f5b400; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.quote blockquote { font-size: 1rem; color: var(--ink); margin-bottom: 16px; font-weight: 500; }
.quote figcaption { font-size: .88rem; color: var(--ink-soft); }
.quote figcaption strong { color: var(--ink); }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 20px; box-shadow: var(--shadow-sm); transition: border-color .2s;
}
.faq__item[open] { border-color: #cfe0fb; }
.faq__item summary {
  cursor: pointer; list-style: none; font-weight: 700; font-size: 1.02rem;
  padding: 16px 30px 16px 0; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--brand); transition: transform .2s;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { padding: 0 0 18px; color: var(--ink-soft); font-size: .95rem; }

/* ===== CTA ===== */
.cta {
  margin: 0 20px 0;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand) 50%, var(--brand-2));
  border-radius: 26px;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 240px at 85% 0%, rgba(255,255,255,.18), transparent 60%);
}
.cta__inner { position: relative; text-align: center; padding: 54px 24px; color: #fff; }
.cta__title { font-size: clamp(1.6rem, 5vw, 2.3rem); font-weight: 800; letter-spacing: -.8px; }
.cta__sub { margin: 14px auto 26px; max-width: 520px; color: rgba(255,255,255,.9); font-size: 1.05rem; }
.cta__actions { display: flex; justify-content: center; }

/* ===== Footer ===== */
.footer { background: #0c1830; color: #c2cee2; padding: 54px 0 0; margin-top: 70px; }
.footer__inner { display: grid; gap: 30px; grid-template-columns: 1fr; padding-bottom: 36px; }
.footer__tag { margin-top: 14px; font-size: .9rem; color: #8ea0bd; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: .92rem; font-weight: 800; margin-bottom: 14px; letter-spacing: .3px; }
.footer__col a { display: block; color: #a9b8d2; font-size: .92rem; padding: 5px 0; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 8px; padding: 20px; text-align: center; }
.footer__bottom p { font-size: .82rem; color: #8294b2; }
.footer__legal { color: #6f82a3 !important; }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.5);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float__pulse { animation: none; } }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===========================================================
   Responsive
   =========================================================== */
@media (min-width: 480px) {
  .stats__inner { grid-template-columns: repeat(4,1fr); }
}

@media (min-width: 640px) {
  .container { padding: 0 28px; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .features { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .quotes { grid-template-columns: repeat(2,1fr); }
  .cta { margin: 0 28px; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 880px) {
  .nav { display: flex; }
  .lang { display: inline-flex; }
  .header .btn--wa { display: inline-flex; }
  .burger { display: none; }
  .nav.is-open { position: static; flex-direction: row; padding: 0; border: 0; box-shadow: none; background: transparent; animation: none; }
  .nav.is-open .nav__link { padding: 8px 12px; font-size: .94rem; border: 0; }

  .hero { padding: 72px 0 50px; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 48px; }
  .hero__title { font-size: clamp(2.6rem, 4.4vw, 3.6rem); }

  .section { padding: 90px 0; }
  .cards { grid-template-columns: repeat(3,1fr); }
  .features { grid-template-columns: repeat(4,1fr); }
  .steps { grid-template-columns: repeat(4,1fr); }
  .plans { grid-template-columns: repeat(3,1fr); }
  .quotes { grid-template-columns: repeat(3,1fr); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
  .cta__inner { padding: 70px 24px; }
}

@media (min-width: 1024px) {
  .hero__visual { transform: translateX(8px); }
}
