/* =========================================================
   MinhaLoja123 — Cobalt/Linear inspired clean dark
   Font: Geist + Geist Mono (no display italic, no editorial drama)
   ========================================================= */

:root {
  /* Light theme tokens */
  --bg:          #FFFFFF;
  --bg-tinted:   #F7F8FB;    /* off-white para alternar entre seções */
  --bg-elev:     #FAFAFB;
  --surface:     #F4F5F8;
  --surface-2:   #EDEEF2;
  --line:        rgba(15,23,42,0.06);
  --line-2:      rgba(15,23,42,0.10);
  --line-strong: rgba(15,23,42,0.18);

  --ink:         #0A0A0B;
  --ink-2:       #52525B;
  --ink-3:       #71717A;
  --ink-4:       #A1A1A6;

  /* Dark hero tokens */
  --dark:        #0A0F1E;
  --dark-2:      #111729;

  /* Brand — azul do logo MinhaLoja123 */
  --brand:       #2DA8FF;
  --brand-2:     #0061B5;
  --brand-soft:  rgba(45,168,255,0.10);
  --grad-brand:  linear-gradient(135deg, #2DA8FF 0%, #0061B5 100%);

  --accent:      #0891B2;
  --punch:       #00A85E;
  --warn:        #D97706;
  --danger:      #DC2626;

  --radius-xs:   6px;
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 2px rgba(0,0,0,0.4);
  --shadow:      0 24px 60px -16px rgba(0,0,0,0.7), 0 4px 16px rgba(0,0,0,0.3);

  --container:   1180px;
  --container-narrow: 880px;
  --gutter:      24px;

  --font-body:   'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:   'Geist Mono', ui-monospace, 'JetBrains Mono', monospace;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--brand); color: #00111F; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  font-feature-settings: 'cv11';
}

/* Subtle ambient gradient — light theme (não fica sobre o hero) */
body::before {
  content: '';
  position: absolute;
  top: 600px;
  left: 0; right: 0;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(800px 400px at 50% 50%, rgba(45,168,255,0.05), transparent 60%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: var(--container-narrow); }

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--ink-3);
  opacity: 0.6;
}

.text-accent { color: var(--accent); }
.text-brand  { color: var(--brand); }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s, transform .15s, box-shadow .15s;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--block { width: 100%; }

/* Primary: azul brand com texto branco */
.btn--primary {
  background: var(--grad-brand);
  color: #FFF;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 6px 18px -6px rgba(45,168,255,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover {
  box-shadow: 0 10px 28px -8px rgba(45,168,255,0.7), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* Outline ghost — secondary nav-style (sobre fundo light) */
.btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--line-strong); }

/* Variante ghost sobre fundo dark — usado no hero */
.hero .btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.18);
}
.hero .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

/* CTA outline — outline com sutil glow no hover */
.btn--cta {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  font-weight: 500;
}
.btn--cta:hover {
  background: var(--surface);
  border-color: var(--ink-2);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}

.btn[disabled],
.btn.is-loading { pointer-events: none; opacity: 0.6; }
.btn__spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #FFF;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.btn.is-loading .btn__label { opacity: 0.6; }
.btn.is-loading .btn__icon { display: none; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============= HEADER ============= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s var(--ease), border-color .3s, color .3s, box-shadow .3s;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.85);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.header.is-scrolled .header__nav a { color: var(--ink-2); }
.header.is-scrolled .header__nav a:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.header__logo img { height: 26px; width: auto; }
.header__logo-dark { display: none; }
.header.is-scrolled .header__logo-light { display: none; }
.header.is-scrolled .header__logo-dark { display: block; }

.header__nav { display: flex; gap: 4px; }
.header__nav a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.header__nav a:hover { color: #FFFFFF; background: rgba(255,255,255,0.08); }
.header__menu { display: none; width: 32px; height: 32px; flex-direction: column; gap: 5px; justify-content: center; }
.header__menu span { display: block; height: 1.5px; background: #FFFFFF; border-radius: 2px; }
.header.is-scrolled .header__menu span { background: var(--ink); }

@media (max-width: 880px) {
  .header__nav { display: none; }
  .header__menu { display: flex; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 96px 0 112px;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  color: #FFFFFF;
  /* curva sutil no fim do hero pra "transição" pro light */
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  margin-bottom: -16px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/background-nv2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  opacity: 0.85;
  pointer-events: none;
  filter: saturate(1.15) contrast(1.05);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 60% 50%, rgba(10,15,30,0.3) 0%, rgba(10,15,30,0.85) 70%),
    linear-gradient(90deg, rgba(10,15,30,0.92) 0%, rgba(10,15,30,0.5) 30%, rgba(10,15,30,0.4) 55%, rgba(10,15,30,0.75) 100%),
    linear-gradient(180deg, rgba(10,15,30,0.2) 0%, rgba(10,15,30,0.1) 50%, rgba(10,15,30,0.65) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -32px;
  height: 32px;
  background: var(--bg);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  z-index: 0;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__copy {
  padding-top: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--punch);
  box-shadow: 0 0 0 3px rgba(0,212,120,0.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(0,212,120,0); } }

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: #FFFFFF;
  text-wrap: balance;
}
.hero__title-accent {
  background: linear-gradient(180deg, #5EEAD4 0%, #2DA8FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0 0 24px;
  max-width: 560px;
  text-wrap: balance;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.hero__bullets li strong {
  color: #fff;
  font-weight: 600;
}
.hero__bullets li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(45, 168, 255, 0.22);
  color: #5CC2FF;
  margin-top: 1px;
}

/* Logos dos marketplaces inline no hero */
.hero__platforms {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: 32px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__platforms img {
  height: 32px;
  width: auto;
  max-width: 100%;
  opacity: 0.92;
  filter: brightness(1.15) contrast(1.05);
  transition: opacity .2s, transform .2s;
}
.hero__platforms img:hover { opacity: 1; transform: scale(1.06); }

@media (max-width: 920px) {
  .hero__platforms { gap: 14px; padding: 14px 0; }
  .hero__platforms img { height: 24px; }
}
@media (max-width: 420px) {
  .hero__platforms { gap: 10px; }
  .hero__platforms img { height: 20px; }
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1;
}
.hero__stats span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero { padding: 48px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__stats { gap: 24px; padding: 16px 0; }
}

/* ============= FORM CARD ============= */
.form-card {
  background: #FFFFFF;
  color: var(--ink);    /* reset color para não herdar branco do hero */
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: 0 30px 80px -24px rgba(0,0,0,0.45), 0 6px 20px rgba(0,0,0,0.08);
}
.form-card h2 { color: var(--ink); }
.form-card p  { color: var(--ink-2); }
.form-card label { color: var(--ink-2); }
.form-card__header {
  margin-bottom: 22px;
}
.form-card__header h2 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.form-card__header p {
  font-size: 13.5px;
  color: var(--ink-2);
}

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 11px 14px;
  background: #FFFFFF;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2371717A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,97,181,0.15);
}
.field input::placeholder { color: var(--ink-4); }
.field.has-error input,
.field.has-error select { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(220,38,38,0.12); }
.field__error {
  display: none;
  font-size: 12px;
  color: var(--danger);
  margin-top: 6px;
}
.field.has-error .field__error { display: block; }

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cf-turnstile-wrapper {
  margin: 4px 0 12px;
  display: flex;
  justify-content: center;
  min-height: 65px;
}
.cf-turnstile-wrapper .cf-turnstile { width: 100%; }
.field__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 6px;
}

/* Checkbox grid (multi-select marketplaces) */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.checkbox-card {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 !important;
  transition: border-color .15s, background .15s, color .15s;
  user-select: none;
}
.checkbox-card:hover {
  border-color: var(--brand);
  background: rgba(45, 168, 255, 0.04);
}
.checkbox-card input[type="checkbox"] {
  width: 16px !important;
  height: 16px;
  margin: 0;
  padding: 0 !important;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-card:has(input:checked) {
  border-color: var(--brand);
  background: rgba(45, 168, 255, 0.08);
}
.checkbox-card--full { grid-column: 1 / -1; }
.field.has-error .checkbox-card { border-color: var(--danger); }

.form-card__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}
.form-card__trust svg { flex-shrink: 0; color: var(--punch); }
.form-card__trust strong { color: var(--ink-2); }
.form-card__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.form-card__trust-item svg { margin-top: 2px; }

/* Estado "já recebemos seu contato" (após submit OK, persistido em localStorage por 1h) */
.form-card__submitted {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 12px 0 8px;
}
.form-card__submitted-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 168, 94, 0.10);
  border: 1px solid rgba(0, 168, 94, 0.22);
}
.form-card__submitted .btn { width: 100%; }
.form-card__submitted .btn svg { margin-left: 4px; }

/* ============= MARQUEE ============= */
.marquee {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-3);
  padding: 14px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.marquee__track span:nth-child(even) { opacity: 0.4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============= SECTIONS ============= */
.section { padding: 96px 0; position: relative; }

/* Ritmo visual: alterna entre branco puro e off-white pra criar respiro entre seções.
   Ordem atual: Hero(dark) → Resultados(W) → Seller(T) → Dor(W) → Steps(T) → About(W) → Testimonials(T) → FAQ(W) */
.section--results      { background: var(--bg); }
.section--seller       { background: var(--bg-tinted); }
.section--dor          { background: var(--bg); }
.section--steps        { background: var(--bg-tinted); }
.section--about        { background: var(--bg); }
.section--testimonials { background: var(--bg-tinted); }
.section--faq          { background: var(--bg); border-top: 1px solid var(--line); padding-bottom: 120px; }

/* Linha decorativa sutil em transições selecionadas (suaviza alternância) */
.section--dor::before,
.section--about::before,
.section--faq::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  pointer-events: none;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__header .eyebrow { justify-content: center; }
.section__header h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.section__header p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  text-wrap: balance;
  max-width: 580px;
  margin: 0 auto;
}

.section__cta-text {
  text-align: center;
  font-size: 16px;
  color: var(--ink-2);
  margin: 48px auto 24px;
  max-width: 640px;
  line-height: 1.55;
  text-wrap: balance;
}
.section__cta-text strong { color: var(--ink); }
.section__cta { display: flex; justify-content: center; margin-top: 48px; }
.section__cta-text + .section__cta { margin-top: 0; }

@media (max-width: 880px) {
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }
}

/* ============= DOR ============= */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, background .2s;
}
.pain-card:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
}
.pain-card__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
}
.pain-card__icon svg { width: 18px; height: 18px; }
.pain-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.pain-card p strong { color: var(--ink); font-weight: 500; }

@media (max-width: 1000px) { .pain-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .pain-grid { grid-template-columns: 1fr; } }

/* ============= MARKETPLACES ============= */
.marketplaces__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.marketplaces__grid {
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 32px;
}
.marketplace-logo {
  height: 34px;
  width: auto;
  opacity: 0.85;
  transition: opacity .2s, transform .2s;
  object-fit: contain;
}
.marketplace-logo:hover { opacity: 1; transform: scale(1.04); }

@media (max-width: 720px) {
  .marketplaces__grid { gap: 36px; row-gap: 24px; }
  .marketplace-logo { height: 28px; }
}

/* ============= SERVIÇOS ============= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, background .2s;
}
.service-card:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
}
.service-card--featured {
  background: linear-gradient(180deg, rgba(8,145,178,0.06) 0%, var(--surface) 60%);
  border-color: rgba(8,145,178,0.25);
}
.service-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,0,0,0.04);
  color: var(--ic, var(--brand));
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
}
.service-card__icon svg { width: 18px; height: 18px; }
.service-card h3 {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

/* ============= ROADMAP / STEPS ============= */
.roadmap {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  position: relative;
  max-width: 880px;
}
.roadmap::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--line) 0%, var(--line-2) 50%, var(--line) 100%);
  z-index: 0;
}
.roadmap__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 36px;
  position: relative;
  z-index: 1;
}
.roadmap__step:last-child { padding-bottom: 0; }
.roadmap__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.roadmap__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.roadmap__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--rc, var(--brand));
  color: var(--rc, var(--brand));
  box-shadow: 0 6px 18px rgba(8, 12, 24, 0.06);
  transition: transform .25s, box-shadow .25s;
}
.roadmap__icon svg { width: 26px; height: 26px; }
.roadmap__step:hover .roadmap__icon {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(8, 12, 24, 0.12);
}
.roadmap__body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color .2s, transform .2s;
}
.roadmap__step:hover .roadmap__body {
  border-color: var(--line-2);
  transform: translateX(2px);
}
.roadmap__time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.roadmap__body h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.3;
}
.roadmap__body p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 10px;
}
.roadmap__deliverable {
  font-size: 13.5px !important;
  background: linear-gradient(90deg, rgba(45, 168, 255, 0.06) 0%, transparent 100%);
  border-left: 3px solid var(--brand);
  padding: 8px 12px !important;
  border-radius: 0 6px 6px 0;
  margin: 12px 0 0 !important;
}
.roadmap__deliverable strong { color: var(--ink); }

/* Tooltip pra termos técnicos sublinhados */
.tt {
  position: relative;
  border-bottom: 1px dashed var(--brand);
  cursor: help;
  color: var(--ink);
  font-weight: 500;
}
.tt::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: normal;
  width: 260px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  z-index: 100;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
.tt::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--ink);
  opacity: 0;
  transition: opacity .18s;
  pointer-events: none;
}
.tt:hover::after,
.tt:focus::after,
.tt:hover::before,
.tt:focus::before {
  opacity: 1;
}

.roadmap__cta {
  text-align: center;
  margin-top: 44px;
}

@media (max-width: 640px) {
  .roadmap::before { left: 23px; }
  .roadmap__step { grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 28px; }
  .roadmap__icon { width: 44px; height: 44px; }
  .roadmap__icon svg { width: 20px; height: 20px; }
  .roadmap__body { padding: 18px; }
  .roadmap__body h3 { font-size: 17px; }
  .tt::after { width: 220px; left: 0; transform: none; }
  .tt::before { left: 24px; transform: none; }
}

/* ============= ABOUT ============= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(8, 12, 24, 0.08);
}
.about__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 25%;
}
.about__copy .eyebrow { margin-bottom: 18px; }
.about__copy h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.about__copy p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin-bottom: 14px;
  line-height: 1.65;
  max-width: 60ch;
}
.about__copy strong { color: var(--ink); font-weight: 500; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-card--wide { grid-column: 1 / -1; }
.stat-card strong {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat-card span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  margin-top: 6px;
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============= RESULTS ============= */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  transition: border-color .2s;
}
.result-card:hover { border-color: var(--line-2); }
.result-card__placeholder {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.02) 14px, rgba(8,145,178,0.06) 14px, rgba(8,145,178,0.06) 28px);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 11px;
  margin-bottom: 12px;
  border: 1px dashed var(--line-2);
}
.result-card__placeholder::before {
  content: attr(data-label);
}
.result-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  transition: border-color .2s, transform .2s;
}
.result-card__media:hover { border-color: var(--brand); }
.result-card__media:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.result-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top left;
  transition: transform .35s ease;
}
.result-card__media:hover img { transform: scale(1.03); }
.result-card__zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(10, 15, 30, 0.78);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  pointer-events: none;
  transition: background .2s, transform .2s;
}
.result-card__zoom svg { width: 18px; height: 18px; }
.result-card__media:hover .result-card__zoom {
  background: var(--brand);
  transform: scale(1.08);
}

/* ============= LIGHTBOX ============= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: lightboxIn .18s ease-out;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: zoom-out;
}
.lightbox__inner {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  background: #fff;
}
.lightbox__caption {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform .15s, background .15s;
  z-index: 2;
}
.lightbox__close:hover { transform: scale(1.08); background: #f1f3f7; }
.lightbox__close svg { width: 20px; height: 20px; }
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 540px) {
  .lightbox { padding: 12px; }
  .lightbox__close { top: -8px; right: -8px; width: 36px; height: 36px; }
}

/* ============= MODAL DO FORM ============= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  animation: modalIn .2s ease-out;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  animation: modalSlide .25s cubic-bezier(.2,.8,.2,1);
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--ink-2);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
  z-index: 2;
}
.modal__close:hover { background: var(--surface-2); color: var(--ink); transform: scale(1.06); }
.modal__close svg { width: 18px; height: 18px; }
.modal .form-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 32px 28px 28px;
  color: var(--ink);
}
.modal .form-card__header { margin-bottom: 20px; }
.modal .form-card__header h2 { font-size: 22px; }
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* Lock body scroll quando modal aberto */
body.modal-open { overflow: hidden; }

@media (max-width: 540px) {
  .modal-overlay { padding: 12px; }
  .modal { max-width: 100%; max-height: calc(100vh - 24px); }
  .modal .form-card { padding: 28px 20px 20px; }
}

.result-card figcaption {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  text-align: center;
}
.results-hint {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
}
.results-hint code {
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  border: 1px solid var(--line);
  color: var(--ink-2);
}

@media (max-width: 880px) { .results-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .results-grid { grid-template-columns: 1fr; } }

/* ============= SELLER / NOTIFICAÇÕES ============= */
.seller__grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: center;
  gap: 64px;
}
.seller__media {
  margin: 0;
  position: relative;
}
.seller__media img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(45, 168, 255, 0.18));
}
.seller__copy h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.seller__copy > p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 540px;
}
.seller__points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.seller__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}
.seller__points li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(45, 168, 255, 0.12);
  color: var(--brand);
}
@media (max-width: 880px) {
  .seller__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }
  .seller__media {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ============= TESTIMONIALS ============= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}
.testimonial:hover { border-color: var(--line-2); }
.testimonial__stars {
  color: var(--warn);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  flex: 1;
}
.testimonial footer {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}

@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }

/* ============= CTA FINAL ============= */
.cta-final {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final .eyebrow { justify-content: center; }
.cta-final h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.cta-final p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.6;
  text-wrap: balance;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__online {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pulse {
  width: 6px; height: 6px;
  background: var(--punch);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(0,212,120,0.18);
  animation: pulse 2.4s infinite;
}

/* ============= FAQ ============= */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.faq-item[open] { border-color: var(--line-2); background: var(--surface-2); }
.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
  margin-left: 14px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink-2);
  transition: transform .2s, background .2s;
}
.faq-item__icon::before { width: 12px; height: 1.5px; }
.faq-item__icon::after  { width: 1.5px; height: 12px; }
.faq-item[open] .faq-item__icon::before { background: var(--accent); }
.faq-item[open] .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ============= FOOTER ============= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}
.footer__brand img { height: 28px; width: auto; margin-bottom: 14px; }
.footer__brand p {
  color: var(--ink-3);
  font-size: 13px;
  margin: 0 0 6px;
  line-height: 1.5;
  max-width: 280px;
}
.footer__cnpj {
  font-family: var(--font-mono);
  font-size: 12px !important;
  color: var(--ink-3);
  margin-top: 10px !important;
  letter-spacing: 0.02em;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 6px;
}
.footer__col a {
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color .2s;
  text-decoration: none;
}
.footer__col a:hover { color: var(--brand); }
.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.footer__social a:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: rgba(45, 168, 255, 0.06);
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: center;
}
.footer__bottom p { margin: 0; }
@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; text-align: left; gap: 28px; }
  .footer__brand p { max-width: none; }
}

/* ============= WHATSAPP FAB ============= */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 40;
  box-shadow: 0 10px 28px rgba(37,211,102,0.35);
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* ============= MOBILE NAV DRAWER ============= */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 60;
  padding: 88px 24px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a {
  padding: 16px 12px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav-drawer .btn { margin-top: 24px; }
.nav-drawer__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 6px;
}

/* ============= REVEAL ON SCROLL ============= */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].is-visible { transition-delay: 0.05s; }
[data-reveal-delay="2"].is-visible { transition-delay: 0.10s; }
[data-reveal-delay="3"].is-visible { transition-delay: 0.15s; }
[data-reveal-delay="4"].is-visible { transition-delay: 0.20s; }
[data-reveal-delay="5"].is-visible { transition-delay: 0.25s; }
[data-reveal-delay="6"].is-visible { transition-delay: 0.30s; }
[data-reveal-delay="7"].is-visible { transition-delay: 0.35s; }
[data-reveal-delay="8"].is-visible { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============= THANK YOU PAGES ============= */
.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  position: relative;
}
.thanks__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(8,145,178,0.08), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(0,97,181,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.thanks__card {
  position: relative;
  z-index: 2;
  max-width: 620px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
}
.thanks__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,168,94,0.12);
  border: 1px solid rgba(0,168,94,0.3);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  color: var(--punch);
}
.thanks__icon--neutral {
  background: rgba(0,97,181,0.10);
  border-color: rgba(0,97,181,0.25);
  color: var(--brand);
}
.thanks__icon svg { width: 36px; height: 36px; }
.thanks__card h1 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.thanks__card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 14px;
  text-wrap: balance;
}
.thanks__card p:last-of-type { margin-bottom: 26px; }
.thanks__card strong { color: var(--ink); font-weight: 500; }
.thanks__steps {
  margin: 24px 0;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
}
.thanks__steps strong {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.thanks__steps ol {
  margin-left: 20px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}
.thanks__back {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-3);
  transition: color .2s;
}
.thanks__back:hover { color: var(--ink); }
