/* =========================================================================
   paultan.org × Carro — "Sell your car fast for cash" funnel
   Theme: high-energy, kinetic near-black stage with a bold Carro-orange
   accent + paultan-red secondary (matches the brand logos). Anton (heavy
   condensed poster display) + Hanken Grotesk (UI/body)
   + Space Mono (ticker/figure labels). Speed-streak motifs, an animated
   "payout" meter and oversized RM/24 numerals — NOT a gauge, NOT car-value's
   Archivo Expanded + DM Mono.
   Shares sell-landing.js — every JS hook (ids, .step, .step-progress,
   .sell-flow__thankyou, .faq-tab, [data-centre-*], .tac-dialog, .mobile-cta)
   is preserved and restyled here.
   ========================================================================= */

:root {
  /* near-black stage */
  --ink: #07080a;
  --ink-2: #0d0f13;
  --panel: #0f1217;
  --panel-2: #13171d;
  --panel-3: #191e26;
  --line: #232932;
  --line-soft: #181b21;

  /* electric accent — Carro orange (matches the logo) */
  --acid: #ff5722;
  --acid-bright: #ff7a45;
  --acid-deep: #e0431a;
  --acid-dim: rgba(255, 87, 34, 0.16);

  /* urgent secondary — paultan.org brand red */
  --red: #ea2127;
  --red-bright: #ff3a3f;

  /* type colours */
  --hi: #f4f6f2;
  --lo: #9ba0a6;
  --lo-2: #6a7079;
  --on-acid: #2a1206;

  --ring: rgba(255, 87, 34, 0.55);
  --ring-red: rgba(234, 33, 39, 0.5);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --container: 1220px;

  --display: "Anton", Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  --t-fast: 0.14s cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 0.5s cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.45),
    0 32px 64px -30px rgba(0, 0, 0, 0.85);
  --shadow-acid: 0 0 0 1px rgba(255, 87, 34, 0.22),
    0 18px 50px -22px rgba(255, 87, 34, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--hi);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }

a {
  color: var(--acid);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
a:hover { color: var(--acid-bright); }

::selection { background: var(--acid); color: var(--on-acid); }

/* ----------------------------- a11y ----------------------------- */

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--acid);
  color: var(--on-acid);
  text-decoration: none;
  font-weight: 800;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: var(--radius-sm);
}

/* ----------------------------- header ----------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 8, 10, 0.78);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-header__pt { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__pt img { height: 30px; width: auto; }

.site-header__tail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
  flex-shrink: 0;
}

.site-header__partnership { display: flex; align-items: center; gap: 0.7rem; }

.site-header__eyebrow {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lo-2);
}

.site-header__carro { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__carro img { height: 22px; width: auto; }

@media (max-width: 460px) { .site-header__partnership { display: none; } }

@media (min-width: 768px) {
  .site-header__inner { padding: 0.85rem 1.75rem; gap: 1rem; }
  .site-header__pt img { height: 34px; }
  .site-header__carro img { height: 25px; }
}

/* ----------------------------- generic section ----------------------------- */

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.25rem 1.25rem;
}
@media (min-width: 768px) {
  .section-inner { padding: 5rem 1.75rem; }
}

.section-eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
}

.section-title {
  margin: 0 0 2.25rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--hi);
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  color: var(--acid);
}

/* ===================================================================
   HERO STAGE — kinetic speed-streaks
   =================================================================== */

.fc-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 8% -10%, rgba(255, 87, 34, 0.12), transparent 60%),
    radial-gradient(720px 520px at 100% 0%, rgba(234, 33, 39, 0.1), transparent 58%),
    linear-gradient(180deg, #0a0c0f 0%, var(--ink) 55%, var(--ink-2) 100%);
  border-bottom: 1px solid var(--line-soft);
}

/* diagonal speed-streaks */
.fc-streaks {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 44px,
    rgba(255, 87, 34, 0.05) 44px,
    rgba(255, 87, 34, 0.05) 46px,
    transparent 46px,
    transparent 92px
  );
  mask-image: linear-gradient(115deg, #000 0%, transparent 65%);
  -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 65%);
  animation: streakSlide 9s linear infinite;
}
@keyframes streakSlide {
  from { background-position: 0 0; }
  to { background-position: 184px 0; }
}

.landing-top {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .landing-top {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    grid-template-areas:
      "headline headline"
      "hero form";
    column-gap: 3rem;
    row-gap: 2.5rem;
    align-items: start;
    padding: 3.5rem 1.75rem 4.5rem;
  }
  .landing-headline { grid-area: headline; }
  .landing-hero { grid-area: hero; }
  .landing-form-wrap { grid-area: form; }
  .hero__brk { display: none; }
}

.landing-headline { position: relative; }
.landing-hero { position: relative; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  padding: 0.42rem 0.95rem 0.42rem 0.7rem;
  background: rgba(255, 87, 34, 0.06);
  border: 1px solid rgba(255, 87, 34, 0.28);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
}

.hero__dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--acid);
}
.hero__dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--acid);
  animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.7rem, 10vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--hi);
}
.hero__title em {
  font-style: normal;
  color: var(--acid);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--acid);
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.4);
}

.hero__lead {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--lo);
  max-width: 46ch;
}
.hero__lead strong { color: var(--hi); font-weight: 700; }

/* ---- the payout meter (speed/cash motif) ---- */
.payout-meter {
  display: none; /* hidden on mobile/tablet so it doesn't push the form down; shown ≥992px */
  margin-top: 1.8rem;
  max-width: 420px;
  padding: 1.4rem 1.5rem 1.3rem;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.payout-meter::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--acid), var(--acid-deep) 70%, transparent);
}
@media (min-width: 992px) { .payout-meter { display: block; margin-top: 2rem; } }

.payout-meter__figure {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--display);
  line-height: 0.85;
  color: var(--acid);
}
.payout-meter__num {
  font-size: clamp(3.6rem, 13vw, 5.4rem);
  letter-spacing: 0.01em;
  text-shadow: 0 0 30px rgba(255, 87, 34, 0.35);
}
.payout-meter__unit {
  font-size: 1.9rem;
  color: var(--hi);
}
.payout-meter__caption {
  margin: 0.5rem 0 0.9rem;
  font-size: 0.92rem;
  color: var(--lo);
}

.payout-meter__track {
  height: 8px;
  border-radius: 999px;
  background: var(--panel-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.payout-meter__fill {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--acid-deep), var(--acid));
  box-shadow: 0 0 14px rgba(255, 87, 34, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  animation: payoutFill 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
@keyframes payoutFill { to { transform: scaleX(1); } }

.payout-meter__ticks {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.payout-meter__ticks li {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lo-2);
  position: relative;
  padding-top: 0.55rem;
}
.payout-meter__ticks li::before {
  content: "";
  position: absolute;
  top: -0.6rem; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acid-deep);
}
.payout-meter__ticks li:last-child { color: var(--acid); }
.payout-meter__ticks li:last-child::before { background: var(--acid); }

.payout-meter__fineprint {
  margin: 0.85rem 0 0;
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--lo-2);
}

/* ===================================================================
   FORM CARD — dark contrast panel with acid edge
   =================================================================== */

.landing-form-wrap {
  scroll-margin-top: 5.5rem;
  position: relative;
}
.landing-form-wrap::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(closest-side, rgba(255, 87, 34, 0.14), transparent 75%);
  z-index: -1;
  pointer-events: none;
}

.form-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  color: var(--hi);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 1.4rem 1.25rem 1.6rem;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--acid), var(--acid-deep) 60%, var(--red));
}
@media (min-width: 768px) {
  .form-card { padding: 2rem 2rem 2.1rem; }
}

.form-card__head { margin-bottom: 1.35rem; }
.form-card__kicker {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin: 0 0 0.55rem;
}
.form-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 5vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--hi);
}
.form-card__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lo);
}

/* step progress */
.step-progress {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.step-progress__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem 0.4rem 0.45rem;
  background: var(--panel-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lo);
  transition: all var(--t-fast);
}
.step-progress__num {
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--lo);
}
.step-progress__pill.is-active {
  border-color: var(--acid);
  color: var(--hi);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.14);
}
.step-progress__pill.is-active .step-progress__num {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--on-acid);
}
.step-progress__pill.is-done {
  background: rgba(255, 87, 34, 0.08);
  border-color: var(--acid-deep);
  color: var(--hi);
}
.step-progress__pill.is-done .step-progress__num {
  background: var(--acid-deep);
  border-color: var(--acid-deep);
  color: var(--on-acid);
}
.step-progress__bar {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.step-progress__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--acid-deep), var(--acid));
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.step-progress[data-step="2"] .step-progress__bar::after { transform: scaleX(1); }

@media (max-width: 380px) {
  .step-progress__label { display: none; }
  .step-progress__pill { padding: 0.4rem; }
}

/* fieldsets / steps */
.step { border: 0; margin: 0; padding: 0; min-width: 0; }
.step[hidden] { display: none; }
.step.is-active { animation: stepIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

.sell-form-grid { display: grid; gap: 0.95rem; }
@media (min-width: 600px) {
  .sell-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.1rem;
    align-items: start;
  }
  .sell-form-grid .form-group--full { grid-column: 1 / -1; }
}

.form-group { margin: 0; min-width: 0; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.45rem;
  color: var(--lo);
}
.form-group .field-hint {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--lo-2);
}

.form-control {
  width: 100%;
  padding: 0.78rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--hi);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 50px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.form-control::placeholder { color: var(--lo-2); }
.form-control:hover:not(:disabled) { border-color: #2f3741; }
.form-control:focus,
.form-control:focus-visible {
  outline: none;
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.18);
}
.form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #0a0c0f;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239ba0a6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 12px 8px;
  padding-right: 2.4rem;
}
select.form-control:disabled {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236a7079' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-consent {
  margin: 1.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--lo-2);
}
.form-consent a { color: var(--acid); text-decoration: underline; text-underline-offset: 2px; }
.form-consent a:hover { color: var(--acid-bright); }

/* buttons */
.btn-primary, .btn-ghost {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  transition: background var(--t-fast), border-color var(--t-fast),
    color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-primary {
  position: relative;
  background: var(--acid);
  color: var(--on-acid);
  border: 1px solid var(--acid);
  box-shadow: 0 10px 26px -8px rgba(255, 87, 34, 0.55);
  overflow: hidden;
  text-transform: uppercase;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}
.btn-primary:hover { background: var(--acid-bright); border-color: var(--acid-bright); }
.btn-primary:hover::after { left: 130%; }
.btn-primary:active { transform: translateY(1px); }
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring), 0 10px 26px -8px rgba(255, 87, 34, 0.55);
}
.btn-primary--block { width: 100%; }

.btn-ghost {
  background: transparent;
  color: var(--hi);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--panel-3); border-color: #2f3741; }

.step-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: flex-end;
}
.step-actions .btn-primary { width: 100%; }
@media (min-width: 600px) {
  .step-actions .btn-primary { width: auto; min-width: 190px; }
}
.step-actions--split { justify-content: space-between; gap: 0.75rem; }
.step-actions--split .btn-ghost { flex: 0 0 auto; }
.step-actions--split .btn-primary { flex: 1 1 auto; width: auto; }
@media (min-width: 600px) {
  .step-actions--split .btn-primary { flex: 0 0 auto; min-width: 210px; }
}

/* sell-flow + thank-you overlay */
.sell-flow { position: relative; min-height: 220px; }
.sell-flow__thankyou {
  display: none;
  position: absolute;
  inset: -0.5rem;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  z-index: 3;
  color: var(--hi);
  border-radius: var(--radius);
}
.sell-flow__thankyou.is-visible {
  display: flex;
  animation: thanksPop 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes thanksPop {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.sell-flow__thankyou svg { color: var(--acid); margin-bottom: 0.9rem; }
.sell-flow__thankyou h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.sell-flow__thankyou p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--lo);
  max-width: 38ch;
}

/* ===================================================================
   HOW IT WORKS
   =================================================================== */

.section-steps {
  background: var(--panel);
  border-bottom: 1px solid var(--line-soft);
}

.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 820px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
}

.step-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--acid), transparent 60%);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 87, 34, 0.4);
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.85);
}
.step-card__num {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--acid);
  margin-bottom: 0.7rem;
}
.step-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hi);
}
.step-card p { margin: 0; font-size: 0.94rem; color: var(--lo); }

/* ===================================================================
   TRUST
   =================================================================== */

.section-trust {
  background:
    radial-gradient(760px 380px at 88% 0%, rgba(255, 87, 34, 0.08), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 820px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
}

.trust-tile {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.5rem 1.5rem;
  overflow: hidden;
  transition: border-color var(--t), background var(--t);
}
.trust-tile:hover { border-color: rgba(255, 87, 34, 0.35); background: rgba(255, 87, 34, 0.03); }
.trust-tile__accent {
  position: absolute;
  top: 0; left: 1.5rem;
  width: 48px; height: 3px;
  background: var(--acid);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.6);
}
.trust-tile h3 {
  margin: 0.5rem 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hi);
}
.trust-tile p { margin: 0; font-size: 0.94rem; color: var(--lo); }

/* ===================================================================
   FAQ
   =================================================================== */

.section-faq { background: var(--panel); border-bottom: 1px solid var(--line-soft); }

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.faq-tab {
  flex: 0 0 auto;
  padding: 0.55rem 1.05rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--lo);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.faq-tab:hover { border-color: rgba(255, 87, 34, 0.4); color: var(--hi); }
.faq-tab.is-active {
  background: var(--acid);
  color: var(--on-acid);
  border-color: var(--acid);
  font-weight: 700;
}
.faq-tab:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }

/* On small screens the variable-width chips wrap unevenly and orphan the last
   one; a fixed 2-column grid keeps the six pills as a tidy 3x2 block with no
   horizontal scroll. */
@media (max-width: 600px) {
  .faq-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .faq-tab {
    padding: 0.6rem 0.75rem;
    text-align: center;
    white-space: normal;
  }
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.faq-list details[hidden] { display: none; }
.faq-list details:hover { border-color: #2f3741; }
.faq-list details[open] {
  border-color: var(--acid-deep);
  background: rgba(255, 87, 34, 0.05);
}
.faq-list summary {
  position: relative;
  padding: 1.05rem 2.9rem 1.05rem 1.15rem;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  list-style: none;
  color: var(--hi);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 1.2rem; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--lo);
  border-bottom: 2px solid var(--lo);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.faq-list details[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
  border-color: var(--acid);
}
.faq-list .faq-answer {
  padding: 0 1.15rem 1.15rem;
  font-size: 0.93rem;
  color: var(--lo);
  margin: 0;
  line-height: 1.65;
}

/* ===================================================================
   INSPECTION CENTRES
   =================================================================== */

.section-centres { background: var(--ink); border-bottom: 1px solid var(--line-soft); }

.centres-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.centres-head .section-title { margin-bottom: 0; }
.centres-head__copy { margin: 0; color: var(--lo); max-width: 56ch; }
@media (min-width: 880px) {
  .centres-head {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
    align-items: end;
    gap: 2.5rem;
  }
}

.centre-filter { max-width: 36rem; margin-bottom: 1.1rem; }
.centre-filter label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lo);
}
.centre-filter .form-control {
  background: var(--panel-2);
  color: var(--hi);
  border-color: var(--line);
}
.centre-filter .form-control::placeholder { color: var(--lo-2); }
.centre-filter .form-control:hover:not(:disabled) { border-color: #2f3741; }
.centre-filter .form-control:focus { border-color: var(--acid); box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.18); }

.centre-groups { display: grid; gap: 0.7rem; }
.centre-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}
.centre-group[hidden] { display: none; }
.centre-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--hi);
  list-style: none;
}
.centre-group summary::-webkit-details-marker { display: none; }
.centre-group summary span:last-child {
  flex-shrink: 0;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.centre-grid {
  display: grid;
  gap: 0.7rem;
  padding: 0 1.15rem 1.15rem;
}
@media (min-width: 720px) {
  .centre-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.centre-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
}
.centre-card[hidden] { display: none; }
.centre-card h3 { margin: 0 0 0.4rem; font-size: 0.96rem; line-height: 1.3; color: var(--hi); }
.centre-card p { margin: 0; color: var(--lo); font-size: 0.88rem; }
.centre-empty { margin: 1.1rem 0 0; color: var(--lo); font-weight: 700; }
[data-centre-empty][hidden] { display: none; }

/* ===================================================================
   FOOTER
   =================================================================== */

.site-footer { background: var(--panel); border-top: 1px solid var(--line-soft); }
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3rem;
}
@media (min-width: 768px) {
  .site-footer__inner { padding: 3.25rem 1.75rem 3.5rem; }
}
.site-footer__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: flex-start;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.site-footer__brand p {
  margin: 0 0 0.55rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--lo-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-footer__brand a { display: inline-block; }
.site-footer__brand--pt img { height: 34px; width: auto; }
.site-footer__brand--carro img { height: 26px; width: auto; }
@media (min-width: 768px) {
  .site-footer__brand--pt img { height: 38px; }
  .site-footer__brand--carro img { height: 29px; }
}
.site-footer__copy p {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--lo);
  max-width: 72ch;
}
.site-footer__copy strong { color: var(--hi); }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.95rem;
  align-items: center;
  margin-top: 1rem !important;
}
.site-footer__links a {
  color: var(--hi);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}
.site-footer__links a:hover { color: var(--acid); }
.site-footer__links span { color: var(--lo-2); }

/* ===================================================================
   MOBILE STICKY CTA
   =================================================================== */

.mobile-cta {
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--acid);
  color: var(--on-acid);
  border: 1px solid var(--acid);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 14px 32px -8px rgba(255, 87, 34, 0.55), 0 4px 12px -4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(120%);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
}
.mobile-cta:not([hidden]).is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-cta:hover { background: var(--acid-bright); border-color: var(--acid-bright); }
.mobile-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring), 0 14px 32px -8px rgba(255, 87, 34, 0.55);
}
@media (min-width: 768px) { .mobile-cta { display: none !important; } }

/* ===================================================================
   FLOATING WHATSAPP
   =================================================================== */

.wa-float {
  position: fixed;
  right: calc(1rem + env(safe-area-inset-right));
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  z-index: 62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.55), 0 4px 12px -4px rgba(0, 0, 0, 0.45);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.6);
}
.wa-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.45), 0 10px 26px -6px rgba(37, 211, 102, 0.55);
}
.wa-float__icon { display: block; }
@media (min-width: 768px) {
  .wa-float { bottom: calc(1.25rem + env(safe-area-inset-bottom)); }
}

/* ===================================================================
   TAC DIALOG
   =================================================================== */

.tac-dialog {
  width: calc(100vw - 2rem);
  max-width: 430px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  color: var(--hi);
}
.tac-dialog::backdrop {
  background: rgba(4, 5, 7, 0.74);
  backdrop-filter: blur(3px);
}
.tac-dialog__inner { position: relative; padding: 1.75rem 1.5rem 1.5rem; }
.tac-dialog__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  background: var(--acid);
  color: var(--on-acid);
  border-radius: 50%;
  margin-bottom: 0.9rem;
}
.tac-dialog__inner h2 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-right: 2.5rem;
  color: var(--hi);
}
.tac-dialog__close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--panel-3);
  border-radius: 50%;
  color: var(--hi);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.tac-dialog__close:hover { background: var(--ink-2); border-color: #2f3741; }
.tac-dialog__close:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }
.tac-dialog__desc { font-size: 0.94rem; color: var(--lo); margin: 0 0 1.1rem; }
.tac-alert {
  display: none;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  background: rgba(234, 33, 39, 0.12);
  border: 1px solid rgba(234, 33, 39, 0.45);
  border-radius: var(--radius-sm);
  color: #ff8f8f;
}
.tac-alert.is-visible { display: block; }
.tac-dialog #carro-tac {
  letter-spacing: 0.42em;
  text-align: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.2rem;
  padding-right: 0.9rem;
  margin-bottom: 0.9rem;
}

/* ===================================================================
   ENTRANCE ANIMATIONS (staggered hero reveal)
   =================================================================== */

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.landing-headline > *,
.landing-hero > * { animation: riseIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }
.landing-headline > *:nth-child(1) { animation-delay: 0.04s; }
.landing-headline > *:nth-child(2) { animation-delay: 0.1s; }
.landing-hero > *:nth-child(1) { animation-delay: 0.18s; }
.landing-hero > *:nth-child(2) { animation-delay: 0.24s; }
.landing-form-wrap { animation: riseIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }

/* ===================================================================
   REDUCED MOTION
   =================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .payout-meter__fill { transform: scaleX(1); }
  .fc-streaks { animation: none; }
}
