/* ============================================================
   Baratão Baterias — protótipo
   Paleta: verde escuro da marca + amarelo (economia)
   ============================================================ */

:root {
  --brand:        #1C5D34;
  --brand-dark:   #123D22;
  --brand-darker: #0C2C18;
  --brand-light:  #2E7D46;
  --brand-tint:   #E7F1EA;

  --accent:       #FFC233;
  --accent-dark:  #E8A200;

  --wa:           #25D366;
  --wa-dark:      #1EBE5A;

  --ink:          #10221A;
  --ink-soft:     #40534A;
  --paper:        #F4F7F3;
  --white:        #FFFFFF;
  --line:         #DDE6DF;

  --r:      14px;
  --r-lg:   24px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(12, 44, 24, .08);
  --shadow-md: 0 12px 32px rgba(12, 44, 24, .14);
  --shadow-lg: 0 24px 60px rgba(12, 44, 24, .22);

  --wrap: 1160px;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 128px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; letter-spacing: -.2px; }
h3 { font-size: 1.18rem; font-weight: 700; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700; font-size: .95rem; letter-spacing: .2px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-accent      { --btn-bg: var(--accent); --btn-fg: var(--brand-darker); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-wa          { --btn-bg: var(--wa); --btn-fg: #fff; }
.btn-wa:hover     { background: var(--wa-dark); }
.btn-ghost       { --btn-bg: transparent; --btn-fg: var(--brand-dark); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand); --btn-fg: #fff; }
.btn-ghost-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }

.ico { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 116px; }

.brand-logo {
  height: 92px; width: auto;
  border-radius: 10px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a {
  font-family: var(--font-display);
  font-weight: 600; font-size: .92rem;
  color: var(--brand-dark);
  transition: color .15s ease;
}
.nav-links > a:hover { color: var(--accent-dark); }
.nav-cta { color: #fff !important; padding: 10px 20px; font-size: .95rem; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--brand-dark);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--brand); color: #fff; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,194,51,.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(46,125,70,.55), transparent 40%),
    linear-gradient(160deg, var(--brand-dark), var(--brand) 60%, var(--brand-light));
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
  align-items: center;
  padding: clamp(56px, 8vw, 104px) 0;
}
.hero-copy { max-width: 560px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; letter-spacing: .4px; text-transform: uppercase;
  background: rgba(255,255,255,.12);
  padding: 7px 16px; border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.eyebrow .bolt { color: var(--accent); }

.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .hl { color: var(--accent); }

.lead { font-size: 1.12rem; color: rgba(255,255,255,.9); margin-bottom: 30px; }
.lead strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-actions .btn-ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.5); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.14); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: .92rem; color: rgba(255,255,255,.82);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: "✓"; color: var(--accent); font-weight: 700;
}

/* ============================================================
   EXPERIÊNCIA — banda de destaque
   ============================================================ */
.experience-band {
  position: relative;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: center;
  background:
    linear-gradient(160deg, rgba(12,44,24,.92), rgba(18,61,34,.88)),
    url("../assets/loja.jpg") center 55% / cover no-repeat;
  color: #fff;
}
.experience-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  padding: clamp(44px, 7vw, 72px) 0 clamp(24px, 4vw, 36px);
}
.experience-figure { display: flex; align-items: center; gap: 18px; }
.experience-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 6rem); line-height: 1;
  color: var(--accent);
}
.experience-label {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem); line-height: 1.2;
  color: #fff;
}
.experience-logo { height: 64px; width: auto; border-radius: 10px; flex-shrink: 0; }
.experience-cta { text-align: center; padding-bottom: clamp(36px, 6vw, 56px); }

/* hero card */
.hero-card {
  position: relative;
  background: var(--white); color: var(--ink);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  max-width: 380px; margin-inline: auto;
}

/* chat mock */
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.chat-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.chat-name { font-family: var(--font-display); font-weight: 700; font-size: .98rem; }
.chat-status {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--ink-soft);
}
.chat-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); flex-shrink: 0; }

.chat-bubbles { display: grid; gap: 10px; margin-bottom: 18px; }
.bubble {
  max-width: 84%; padding: 10px 14px; border-radius: 14px;
  font-size: .92rem; line-height: 1.4;
}
.bubble.in {
  background: var(--brand-tint); color: var(--ink);
  border-bottom-left-radius: 4px;
  justify-self: start;
}
.bubble.out {
  background: var(--brand); color: #fff;
  border-bottom-right-radius: 4px;
  justify-self: end;
}
.bubble strong { color: inherit; }

.hero-card-cta { width: 100%; }
.chat-fineprint { text-align: center; font-size: .78rem; color: var(--ink-soft); margin-top: 12px; }

/* ============================================================
   MARCAS — carrossel automático
   ============================================================ */
.brand-marquee {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.brand-marquee-track {
  display: flex; align-items: center; gap: 64px;
  width: max-content;
  animation-name: brand-marquee;
  animation-duration: 26s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  will-change: transform;
}
.brand-marquee-track img {
  height: 76px; width: auto; object-fit: contain;
  flex-shrink: 0;
}
@keyframes brand-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 32px)); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { background: var(--accent); }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 22px 0;
}
.stat { text-align: center; color: var(--brand-darker); }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; line-height: 1.1;
}
.stat span { font-size: .86rem; font-weight: 500; }
.stat + .stat { border-left: 1px solid rgba(12,44,24,.18); }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: clamp(60px, 9vw, 104px) 0; }
.section-dark { background: var(--brand-dark); color: #fff; }
.section-dark h2 { color: #fff; }
.section-tint { background: var(--brand-tint); }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.kicker {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  font-size: 1.05rem; color: var(--accent-dark);
  margin-bottom: 12px;
}
.kicker-light { color: var(--accent); }
.section-sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }
.section-dark .section-sub { color: rgba(255,255,255,.8); }

/* ---------- diferenciais cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  margin-bottom: 18px;
}
.card-ico svg { width: 28px; height: 28px; fill: var(--brand-dark); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .97rem; }

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start;
}
.about-copy > p { color: var(--ink-soft); margin-top: 16px; }
.about-copy > p strong { color: var(--ink); }
.about-cta { margin-top: 24px; }
.about-photo {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   BATERIAS / TIPOS — seletor por abas
   ============================================================ */
.type-tabs {
  display: flex; gap: 14px; margin-bottom: 28px;
}
.type-tab {
  flex: 1 1 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 10px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  font-family: var(--font-body);
}
.type-tab:hover { transform: translateY(-2px); border-color: var(--accent); }
.type-tab span { font-family: var(--font-display); font-weight: 700; font-size: .86rem; text-align: center; }
.type-tab-icon { width: 30px; height: 30px; }
.type-tab.is-active {
  background: var(--accent); border-color: var(--accent); color: var(--brand-darker);
}

.type-panel-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px);
}
.type-panel-grid--split {
  grid-template-columns: 1fr 1fr; align-items: start;
}
.type-panel-grid--split .type-panel-text:last-child {
  border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 36px);
}
.type-panel-grid--photo {
  position: relative; isolation: isolate;
  background-size: cover; background-position: center;
  border-color: transparent;
}
.type-panel-grid--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(12,44,24,.92), rgba(18,61,34,.8));
}
.type-panel-grid--photo > * { position: relative; z-index: 1; }
.type-panel-grid--photo .type-panel-kicker { color: rgba(255,255,255,.75); }
.type-panel-grid--photo .type-panel-text h3 { color: #fff; }
.type-panel-grid--photo .type-panel-text p { color: rgba(255,255,255,.88); }
.type-panel-grid--photo.type-panel-grid--split .type-panel-text:last-child { border-left-color: rgba(255,255,255,.25); }
.type-panel-kicker {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  font-size: .85rem; color: var(--ink-soft); margin-bottom: 4px;
}
.type-panel-text h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 10px; color: var(--brand-dark); }
.type-panel-text p { color: var(--ink-soft); margin-bottom: 22px; }
.type-panel-media {
  aspect-ratio: 1 / 1; max-width: 260px; margin-inline: auto;
  background: var(--paper); border-radius: var(--r-lg);
  display: grid; place-items: center; padding: 20px;
}
.type-panel-media img { max-width: 100%; max-height: 100%; object-fit: contain; }

.type-panel-media-logos {
  background: none; padding: 0; max-width: none;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  align-content: center;
}
.type-panel-media-logos--row { grid-template-columns: repeat(3, 1fr); }
.type-panel-media-logos--col { grid-template-columns: 1fr; }
.type-panel-media-logos img {
  width: 100%; height: 108px; object-fit: contain;
  background: var(--white);
  border-radius: var(--r); padding: 10px;
}

.section-cta { text-align: center; margin-top: 40px; }
.section-cta p {
  font-family: var(--font-display); font-weight: 600;
  color: var(--brand-dark); margin-bottom: 16px;
}
.section-dark .section-cta p { color: #fff; }

/* ============================================================
   PAGAMENTO
   ============================================================ */
.pay-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: 760px; margin-inline: auto;
}
.pay-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px; text-align: center;
}
.pay-card h3 { color: var(--brand-dark); margin-bottom: 8px; }
.pay-card p { color: var(--ink-soft); font-size: .96rem; }

/* ============================================================
   COBERTURA
   ============================================================ */
.cover-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.cover-copy > p { color: var(--ink-soft); margin: 14px 0 22px; }
.check-list { display: grid; gap: 12px; margin-bottom: 28px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 500; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

.cover-card {
  background: var(--brand); color: #fff;
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-md);
}
.cover-card h3 { color: #fff; margin-bottom: 18px; }
.hood-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px;
  margin-bottom: 20px;
}
.hood-list li { position: relative; padding-left: 20px; font-size: .95rem; color: rgba(255,255,255,.92); }
.hood-list li::before { content: "•"; position: absolute; left: 4px; color: var(--accent); }
.cover-note { font-size: .88rem; color: rgba(255,255,255,.8); border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; }

/* ============================================================
   COMO PEDIR — timeline
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.step {
  position: relative;
  min-height: 400px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  padding: 24px 22px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(165deg, var(--brand), var(--brand-dark));
  transition: transform .18s ease, box-shadow .18s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step h3 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; position: relative; z-index: 1; }
.step p { color: rgba(255,255,255,.82); font-size: .92rem; position: relative; z-index: 1; }

.step--photo {
  background-size: cover;
  background-position: center;
}
.step--photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,44,24,0) 35%, rgba(12,44,24,.95) 88%);
}

.steps-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: linear-gradient(160deg, var(--brand-dark), var(--brand-darker)); color: #fff; }
.final-cta-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 22px;
  padding: clamp(48px, 7vw, 80px) 0;
}
.final-cta-inner h2 { color: #fff; margin-bottom: 8px; }
.final-cta-inner p { color: rgba(255,255,255,.82); max-width: 52ch; }
.final-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--brand-darker); color: rgba(255,255,255,.78); padding: 56px 0 26px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand img { height: 40px; width: auto; border-radius: 8px; margin-bottom: 14px; }
.footer-brand p { max-width: 280px; font-size: .92rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col p { font-size: .92rem; margin-bottom: 10px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 20px; font-size: .82rem; color: rgba(255,255,255,.55);
}

/* ============================================================
   FLOATING
   ============================================================ */
.fab-wa {
  position: fixed; left: 22px; bottom: 22px; z-index: 90;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .15s ease;
}
.fab-wa svg { width: 36px; height: 36px; fill: #fff; }
.fab-wa:hover { transform: scale(1.08); }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand); color: #fff;
  border: 0; cursor: pointer; font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .15s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: none; }
  .hero-card { margin-inline: 0; }
  .cover-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .type-panel-grid { grid-template-columns: 1fr; gap: 24px; }
  .type-panel-media { order: -1; max-width: 200px; }
  .type-panel-media-logos {
    max-width: 320px;
    grid-template-columns: 1fr;
  }
  .type-panel-media-logos img { height: 140px; }
  .type-panel-grid--split .type-panel-text:last-child {
    border-left: 0; padding-left: 0;
    border-top: 1px solid var(--line); padding-top: 24px;
  }
  .type-panel-grid--photo.type-panel-grid--split .type-panel-text:last-child {
    border-top-color: rgba(255,255,255,.25);
  }
  .steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { height: 94px; }
  .brand-logo { height: 70px; }
  .nav-links {
    position: absolute; top: 94px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 10px 20px 20px;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .25s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { clip-path: inset(0 0 0 0); }
  .nav-links > a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 12px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }

  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat + .stat { border-left: 0; border-top: 1px solid rgba(12,44,24,.18); padding-top: 14px; }

  .cards { grid-template-columns: 1fr; }
  .type-tabs { flex-wrap: wrap; }
  .type-tab { flex: 1 1 100%; flex-direction: row; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .experience-inner { justify-content: center; text-align: center; flex-direction: column; }
  .experience-figure { flex-direction: column; gap: 6px; text-align: center; }
}
