/* ==========================================================================
   Agni · agni.marketing
   Elemento assinatura: linha fina + ponto laranja (o lead), do anúncio à receita.
   ========================================================================== */

:root {
  --orange: #F07A26;
  --orange-hover: #F58B3E;
  --ink: #111112;
  --ink-2: #3A3B3F;
  --muted: #6E6F74;
  --paper: #FAFAF8;
  --white: #FFFFFF;
  --line: #DEDED9;

  --night: #0D0F12;
  --night-2: #15181D;
  --night-3: #08090B;
  --on-night: #F2F2EF;
  --on-night-muted: #9A9CA3;
  --line-night: rgba(242, 242, 239, 0.14);

  --wrap: 1240px;
  --gutter: 40px;
  --radius: 3px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, ol, figure { margin: 0; }
ol { padding: 0; list-style: none; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Tipografia base ---------- */
.label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.num, .idx {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.label .num { color: var(--ink); }
.dark .label, .dark .num, .dark .idx { color: var(--on-night-muted); }
.dark .label .num { color: var(--on-night); }

.sec-title {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.fine { font-size: 13px; color: var(--muted); }

/* ---------- Botão ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 24px 17px 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.85;
  transition: transform 0.18s var(--ease);
}
.btn:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 18px -10px rgba(240, 122, 38, 0.7); }
.btn:hover::after { transform: translateX(3px); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-sm { padding: 11px 16px 11px 15px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header / Footer ---------- */
.site-header { border-bottom: 1px solid var(--line); background: var(--paper); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo img { height: 30px; width: auto; }

.site-footer { background: var(--night); color: var(--on-night-muted); border-top: 1px solid var(--line-night); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 36px; padding-bottom: 36px; font-size: 13px; }
.footer-inner img { height: 26px; width: auto; }

/* ---------- 01 · Topo ---------- */
.hero { padding: 96px 0 72px; }
.hero-title {
  margin-top: 36px;
  font-size: clamp(46px, 7.6vw, 116px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.05em;
  max-width: 14.5ch;
}
.hero-title .dot, .final-title .dot { color: var(--orange); }
.hero-foot {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 24px;
  margin-top: 56px;
  align-items: end;
}
.hero-sub { grid-column: 1 / span 6; font-size: 21px; line-height: 1.45; color: var(--ink-2); max-width: 34ch; }
.hero-cta { grid-column: 8 / span 5; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

/* Cadeia do lead: a primeira aparição completa da linha assinatura */
.chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 104px;
  padding-top: 26px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.chain::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 5px;
  height: 1px;
  background: var(--ink);
  opacity: 0.8;
  transform-origin: left center;
}
.chain li { position: relative; }
.chain li:last-child { text-align: right; }
.chain .node {
  position: absolute;
  top: -26px;
  left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
}
.chain li:last-child .node { left: auto; right: 0; }
.chain .node-lead { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 5px rgba(240, 122, 38, 0.16); }
.chain li:first-child { color: var(--ink); }
.js .chain::before { transform: scaleX(0); transition: transform 1.1s var(--ease) 0.2s; }
.js .chain .node:not(.node-lead) { opacity: 0; transition: opacity 0.3s ease; }
.js .chain.in::before { transform: scaleX(1); }
.js .chain.in .node { opacity: 1; }
.js .chain.in li:nth-child(2) .node { transition-delay: 0.45s; }
.js .chain.in li:nth-child(3) .node { transition-delay: 0.65s; }
.js .chain.in li:nth-child(4) .node { transition-delay: 0.85s; }
.js .chain.in li:nth-child(5) .node { transition-delay: 1.05s; }

/* ---------- Seções ---------- */
.sec { padding: 112px 0 128px; }
.dark { background: var(--night); color: var(--on-night); }

/* Cabeçalho da seção: número + linha com o ponto na posição da seção */
.sec-head { display: flex; align-items: center; gap: 20px; margin-bottom: 56px; }
.rail { position: relative; flex: 1; height: 1px; background: var(--line); }
.dark .rail { background: var(--line-night); }
.rail i {
  position: absolute;
  top: 50%;
  left: calc(var(--p) * 100%);
  width: 9px; height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--orange);
}
.rail::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 1px; height: 7px;
  background: currentColor;
  opacity: 0.35;
}
.js .rail i { left: calc((var(--p) - 0.143) * 100%); opacity: 0; transition: left 0.9s var(--ease), opacity 0.3s ease; }
.js .rail.in i { left: calc(var(--p) * 100%); opacity: 1; }
.rail-end i { box-shadow: 0 0 0 6px rgba(240, 122, 38, 0.18); }

/* ---------- 02 · Premissas ---------- */
.premises {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  margin-top: 72px;
}
.premises li {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 32px 0 40px;
  border-top: 1px solid var(--line-night);
}
.premises li:nth-child(even) { transform: translateY(96px); }
.premises li:last-child { grid-column: 1; }
.premises .idx { padding-top: 12px; }
.premises p { font-size: clamp(24px, 2.5vw, 34px); line-height: 1.18; letter-spacing: -0.02em; }
.premises strong { font-weight: 600; }
.premises .support { display: block; margin-top: 14px; font-size: 17px; line-height: 1.5; letter-spacing: 0; color: var(--on-night-muted); }
.sec.dark:has(.premises) { padding-bottom: 176px; }

/* ---------- 03 · Serviços ---------- */
.services { margin-top: 64px; border-bottom: 1px solid var(--line); }
.services li {
  display: grid;
  grid-template-columns: 1fr 4fr 6fr;
  gap: 24px;
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.services .idx { padding-top: 2px; }
.services h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.services p { color: var(--ink-2); max-width: 52ch; }

/* ---------- 04 · Como trabalhamos ---------- */
.sec-process { padding-top: 0; }
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 5px;
  height: 1px;
  background: var(--ink);
  transform-origin: left center;
}
.steps li { position: relative; padding-top: 36px; }
.steps li::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
}
.steps li:first-child::before { background: var(--orange); border-color: var(--orange); }
.steps .idx { display: block; margin-bottom: 10px; }
.step-name { font-size: clamp(26px, 2.8vw, 40px); font-weight: 600; letter-spacing: -0.03em; }
.js .steps::before { transform: scaleX(0); transition: transform 0.9s var(--ease); }
.js .steps.in::before { transform: scaleX(1); }
.note { display: flex; gap: 10px; margin-top: 64px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 16px; color: var(--ink-2); max-width: 560px; }
.note-mark { color: var(--orange); font-weight: 600; }

/* ---------- 05 · Quem opera ---------- */
.who { display: grid; grid-template-columns: 4fr 1fr 7fr; align-items: end; }
.who-photo { grid-column: 1; }
.who-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); filter: none; }
.who-copy { grid-column: 3; }
.who-copy .sec-title { margin-top: 24px; max-width: 14ch; }
.who-sub { margin-top: 24px; font-size: 20px; color: var(--on-night-muted); max-width: 38ch; }
.figures {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-night);
  font-size: 15px;
  color: var(--on-night-muted);
}
.figures b { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; color: var(--on-night); font-variant-numeric: tabular-nums; margin-right: 4px; }
.figures .sep { color: var(--orange); }

/* Carrossel */
.carousel { margin-top: 112px; }
.car-bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.years { position: relative; display: flex; flex: 1; max-width: 760px; justify-content: space-between; }
.years::before { content: ""; position: absolute; left: 0; right: 0; top: 5px; height: 1px; background: var(--line-night); }
.years button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 0 4px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--on-night-muted);
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.years button:last-child { align-items: flex-end; }
.years i { width: 11px; height: 11px; border-radius: 50%; background: var(--night); border: 1px solid var(--on-night-muted); transition: background-color 0.2s ease, border-color 0.2s ease; }
.years button:hover { color: var(--on-night); }
.years button[aria-selected="true"] { color: var(--on-night); }
.years button[aria-selected="true"] i { background: var(--orange); border-color: var(--orange); }

.arrows { display: flex; gap: 8px; }
.arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--line-night);
  border-radius: var(--radius);
  background: transparent;
  color: var(--on-night);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.arrow:hover:not(:disabled) { border-color: var(--on-night-muted); }
.arrow:disabled { opacity: 0.3; cursor: default; }

.track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(520px, 42%);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  /* sangra até a borda direita da tela, para o próximo card aparecer cortado */
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  scroll-padding-left: 0;
}
.track::-webkit-scrollbar { display: none; }
.track:focus-visible { outline-offset: 6px; }
.card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 32px 32px 36px;
  background: var(--night-2);
  border-top: 1px solid var(--line-night);
  border-radius: var(--radius);
}
.card-meta { display: flex; gap: 14px; align-items: baseline; font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-night-muted); }
.year {
  margin-top: 28px;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  color: var(--on-night);
}
.card-text { margin-top: 28px; font-size: 17px; line-height: 1.55; color: #C9CACF; }
.lesson {
  position: relative;
  margin-top: auto;
  padding-top: 28px;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--orange);
}
.lesson::before { content: ""; position: absolute; left: 0; top: calc(28px + 0.5em); width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.card-now { background: var(--night-3); border-top: 2px solid var(--orange); }
.card-now .year { display: flex; align-items: flex-start; gap: 6px; }
.card-now .year::after { content: ""; width: 14px; height: 14px; margin-top: 10px; border-radius: 50%; background: var(--orange); }
.card-now .btn { margin-top: auto; align-self: flex-start; }
.card-now .card-text { color: var(--on-night); }

/* ---------- 06 · Cases ---------- */
.sec-cases { padding-bottom: 104px; }
.cases { max-width: 820px; margin: 24px auto 0; text-align: center; }
.cases-text { font-size: clamp(26px, 3vw, 40px); line-height: 1.2; font-weight: 500; letter-spacing: -0.025em; }
.cases-sub { margin-top: 20px; font-size: 17px; color: var(--muted); }

/* ---------- 07 · FAQ ---------- */
.sec-faq { padding-top: 0; }
.faq-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 24px; align-items: start; }
.faq { border-bottom: 1px solid var(--line); }
.qa { border-top: 1px solid var(--line); }
.qa h3 { font-size: inherit; font-weight: inherit; }
.qa button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.pm { position: relative; flex: none; width: 14px; height: 14px; }
.pm::before, .pm::after { content: ""; position: absolute; left: 0; top: 50%; width: 14px; height: 1.5px; margin-top: -0.75px; background: var(--ink); transition: transform 0.2s var(--ease); }
.pm::after { transform: rotate(90deg); }
.qa button[aria-expanded="true"] .pm::after { transform: rotate(0deg); }
.qa button[aria-expanded="true"] .pm::before { background: var(--orange); }
.qa button[aria-expanded="true"] .pm::after { background: var(--orange); }
.answer { padding: 0 48px 30px 0; color: var(--ink-2); max-width: 60ch; }

/* ---------- 08 · Chamada final ---------- */
.sec-final { padding-bottom: 136px; }
.final { display: grid; grid-template-columns: 7fr 1fr 4fr; align-items: end; }
.final-title { grid-column: 1; font-size: clamp(38px, 5.4vw, 80px); line-height: 1; font-weight: 600; letter-spacing: -0.045em; }
.final-side { grid-column: 3; display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.final-side p { font-size: 18px; color: var(--on-night-muted); }

/* ---------- Modal ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(13, 15, 18, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  overflow-y: auto;
}
.overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
  padding: 40px 40px 32px;
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 2px solid var(--orange);
  transform: translateY(8px);
  transition: transform 0.22s var(--ease);
}
.overlay.open .modal { transform: none; }
.modal h2 { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.modal-sub { margin-top: 10px; font-size: 16px; color: var(--ink-2); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border: 0;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--ink); }
#leadForm { margin-top: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 15px) 21px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--ink); }
.field .invalid { border-color: #C2410C; }
.phone { display: flex; }
.ddi { display: flex; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-right: 0; border-radius: var(--radius) 0 0 var(--radius); background: #F0F0EC; font-size: 15px; color: var(--ink-2); }
.phone input { border-radius: 0 var(--radius) var(--radius) 0; }
.err { display: block; min-height: 0; margin-top: 5px; font-size: 13px; color: #C2410C; }
.err:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#leadForm .btn { margin-top: 10px; }
#leadForm .btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }
#leadForm .fine { margin-top: 12px; }
.form-error { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 14px; color: #C2410C; }
.form-error a, .success-alt a { color: var(--ink); font-weight: 600; text-underline-offset: 3px; }

.success-mark { position: relative; height: 12px; margin: 8px 0 28px; }
.success-mark::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--ink); }
.success-mark i { position: absolute; right: 0; top: 50%; width: 12px; height: 12px; margin-top: -6px; border-radius: 50%; background: var(--orange); }
.success-text { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
.success-alt { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 16px; color: var(--ink-2); }

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  :root { --gutter: 28px; }
  .hero-foot { display: block; }
  .hero-cta { margin-top: 36px; }
  .premises { grid-template-columns: 1fr; }
  .premises li:nth-child(even) { transform: none; }
  .sec.dark:has(.premises) { padding-bottom: 112px; }
  .services li { grid-template-columns: 56px 1fr; }
  .services p { grid-column: 2; }
  .who { grid-template-columns: 1fr; gap: 40px; }
  .who-photo, .who-copy { grid-column: 1; }
  .who-photo { max-width: 360px; }
  .track { grid-auto-columns: min(460px, 70%); }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .final { grid-template-columns: 1fr; gap: 40px; }
  .final-side { grid-column: 1; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  body { font-size: 17px; }
  .header-inner { height: 64px; }
  .logo img { height: 24px; }
  .hero { padding: 56px 0 56px; }
  .hero-title { margin-top: 28px; }
  .hero-foot { margin-top: 36px; }
  .hero-sub { font-size: 18px; }
  .chain { margin-top: 72px; font-size: 10px; letter-spacing: 0.08em; }
  .chain li:not(:first-child):not(:last-child) { text-align: center; }
  .chain li:not(:first-child):not(:last-child) .node { left: 50%; margin-left: -5.5px; }
  .sec { padding: 80px 0 88px; }
  .sec-head { margin-bottom: 40px; }
  .premises { margin-top: 48px; }
  .premises li { grid-template-columns: 36px 1fr; padding: 24px 0 28px; }
  .services { margin-top: 40px; }
  .services li { grid-template-columns: 36px 1fr; gap: 8px 12px; padding: 24px 0 26px; }
  .services h3 { font-size: 21px; }
  .services p { font-size: 16px; }

  .steps { grid-template-columns: 1fr; margin-top: 48px; }
  .steps::before { left: 5px; right: auto; top: 6px; bottom: 6px; width: 1px; height: auto; transform-origin: top center; }
  .js .steps::before { transform: scaleY(0); }
  .js .steps.in::before { transform: scaleY(1); }
  .steps li { padding: 0 0 32px 36px; }
  .steps li:last-child { padding-bottom: 0; }
  .steps li::before { top: 4px; }
  .steps .idx { margin-bottom: 4px; }
  .note { margin-top: 48px; }

  .figures b { font-size: 24px; }
  .carousel { margin-top: 72px; }
  .arrows { display: none; }
  .years span { display: none; }
  .years button[aria-selected="true"] span { display: block; position: absolute; top: 22px; white-space: nowrap; }
  .years button:first-child[aria-selected="true"] span { left: 0; }
  .years button:not(:first-child):not(:last-child)[aria-selected="true"] span { left: 50%; transform: translateX(-50%); }
  .years button:last-child[aria-selected="true"] span { right: 0; }
  .years button { padding: 0 0 30px; min-width: 24px; align-items: center; }
  .years button:first-child { align-items: flex-start; }
  .years button:last-child { align-items: flex-end; }
  .car-bar { margin-bottom: 20px; }
  .track { grid-auto-columns: 84%; gap: 12px; }
  .card { min-height: 440px; padding: 26px 22px 28px; }
  .card-text { font-size: 16px; }
  .lesson { font-size: 17px; }

  .qa button { font-size: 18px; padding: 22px 0; }
  .answer { padding-right: 0; }
  .final-title { font-size: clamp(34px, 10vw, 44px); }
  .modal { padding: 32px 22px 24px; }
  .footer-inner img { height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
}
