/* Garagem Club — estilos da landing e da página de agradecimento.
   CSS sem build; animações respeitam prefers-reduced-motion. */

:root {
  --bg: #0a0a0b;
  --bg-2: #121315;
  --bg-3: #1a1c1f;
  --line: #2e3237;
  --line-soft: #23262a;

  --racing: #e31837;
  --racing-soft: #ff4d5e;
  --nitro: #00d2fd;
  --nitro-hover: #5ce4ff;

  --fg: #f1f3f5;
  --fg-muted: #c1c7cb;
  --fg-dim: #7c848b;

  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1140px;
  --radius: 2px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--racing);
  font-weight: 600;
}

.section {
  padding-block: 88px;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-block: 14px 14px;
}

.section-head p {
  color: var(--fg-muted);
  margin: 0;
}

/* ---------------------------------------------------------------- botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  font-family: var(--display);
}

/* O gradiente vertical dá ao botão a curva de uma peça pintada, em vez
   do chapado de um retângulo colorido. */
.btn-primary {
  background: linear-gradient(180deg, var(--nitro-hover), var(--nitro));
  color: #0a0a0b;
  font-family: var(--display);
}
.btn-primary:hover {
  background: var(--nitro-hover);
}

/* Ignição: só no que dispara a ação principal da página. */
.btn-racing {
  background: linear-gradient(180deg, var(--racing-soft), var(--racing));
  color: #fff;
  font-family: var(--display);
}
.btn-racing:hover {
  background: var(--racing-soft);
}

.btn-outline {
  border-color: var(--line);
  color: var(--fg);
}
.btn-outline:hover {
  border-color: var(--nitro);
  color: var(--nitro);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 11px;
}

.btn-block {
  width: 100%;
}

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.logo {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.logo span {
  color: var(--racing);
}

.nav {
  display: flex;
  gap: 28px;
  margin-inline: auto;
}

.nav a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  transition: color 0.18s;
}
.nav a:hover {
  color: var(--racing);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--fg);
  padding: 8px;
  cursor: pointer;
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  padding-block: 104px 96px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

/* Luz ambiente atrás do hero. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 165, 72, 0.14), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(138, 90, 43, 0.09), transparent 70%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
}

.hero h1 {
  font-size: clamp(38px, 6.4vw, 66px);
  max-width: 15ch;
  margin-inline: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--racing);
}

.hero-sub {
  color: var(--fg-muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 56ch;
  margin: 24px auto 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-dim);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  color: var(--racing);
  line-height: 1.1;
}

.hero-stat span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ---------------------------------------------------------------- grades */
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  color: var(--fg-muted);
  font-size: 15px;
  margin: 0;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--racing);
  margin-bottom: 20px;
}

/* --------------------------------------------------- comparativo de preço */
.compare {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin-inline: auto;
}

.compare-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--bg);
}

.compare-col.bad {
  opacity: 0.72;
}

.compare-col.good {
  border-color: rgba(212, 165, 72, 0.42);
}

.compare-col h3 {
  font-size: 16px;
  font-family: var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.compare-col.bad h3 {
  color: var(--fg-dim);
}
.compare-col.good h3 {
  color: var(--racing);
}

.compare-price {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}
.compare-col.bad .compare-price {
  color: #c96a5a;
}
.compare-col.good .compare-price {
  color: var(--racing);
}

.compare-col small {
  color: var(--fg-dim);
  font-size: 13px;
  display: block;
  margin-bottom: 18px;
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--fg-muted);
}
.compare-col li {
  padding-block: 6px;
  border-top: 1px solid var(--line-soft);
}

/* ---------------------------------------------------------------- passos */
.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 68px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--display);
  font-size: 38px;
  color: var(--line);
  line-height: 1;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  color: var(--fg-muted);
  font-size: 15px;
  margin: 0;
}

/* ---------------------------------------------------------------- preços */
.pricing {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
  margin-inline: auto;
  background: var(--bg);
}

.toggle button {
  background: none;
  border: 0;
  color: var(--fg-muted);
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--sans);
  transition: background 0.18s, color 0.18s;
}

.toggle button[aria-pressed="true"] {
  background: var(--racing);
  color: #1a1408;
}

.plan {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan.featured {
  border-color: var(--racing);
  box-shadow: 0 0 0 1px rgba(212, 165, 72, 0.2);
}

.plan-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--racing);
  color: #1a1408;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.plan-desc {
  color: var(--fg-dim);
  font-size: 13px;
  min-height: 38px;
  margin-bottom: 18px;
}

.plan-price {
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
  color: var(--racing);
}

.plan-price sup {
  font-size: 18px;
  vertical-align: super;
  margin-right: 2px;
}

.plan-period {
  color: var(--fg-dim);
  font-size: 13px;
  margin-bottom: 24px;
}

.plan ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  font-size: 14.5px;
  flex: 1;
}

.plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-block: 7px;
  color: var(--fg-muted);
}

.plan li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--racing);
}

.plan li.off {
  color: var(--fg-dim);
}
.plan li.off svg {
  color: var(--line);
}

/* ---------------------------------------------------------------- faq */
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  cursor: pointer;
  padding-block: 20px;
  font-weight: 600;
  font-size: 16.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--racing);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--fg-muted);
  margin: 0 0 22px;
  max-width: 72ch;
  font-size: 15px;
}

/* ---------------------------------------------------------------- form */
.cta {
  border-top: 1px solid var(--line);
}

.cta-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 780px;
  margin-inline: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--fg);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--sans);
  width: 100%;
  transition: border-color 0.18s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--racing);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--fg-dim);
}

.errors {
  color: #e08b7c;
  font-size: 13px;
  margin: 0;
}

.form-note {
  color: var(--fg-dim);
  font-size: 13px;
  text-align: center;
  margin: 18px 0 0;
}

/* ---------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 56px 32px;
  background: var(--bg-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 14px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  padding-block: 5px;
}

.footer-grid a {
  color: var(--fg-muted);
  font-size: 14px;
  transition: color 0.18s;
}
.footer-grid a:hover {
  color: var(--racing);
}

.footer-about p {
  color: var(--fg-muted);
  font-size: 14px;
  max-width: 34ch;
  margin: 12px 0 0;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  margin-top: 44px;
  padding-top: 24px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ---------------------------------------------------------------- alerta */
.flash {
  background: rgba(212, 165, 72, 0.12);
  border: 1px solid rgba(212, 165, 72, 0.4);
  color: var(--racing-soft);
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 15px;
}

/* ---------------------------------------------------------------- mobile */
@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 60px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding-block: 14px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .header-actions .btn-outline {
    display: none;
  }
  .grid-3,
  .grid-4,
  .compare-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 32px;
  }
  .cta-box {
    padding: 28px 22px;
  }
  .step {
    padding-left: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}

/* Editorial automotive layout. Shared base also serves the thank-you page. */
:root { --max: 1280px; --radius: 12px; --bg: #0c0d0f; --bg-2: #131518; --line: #2b2d32; --fg-dim: #999da5; --racing: #ff3b45; }
::selection { background: var(--racing); color: #fff; }
:focus-visible { outline: 2px solid #ff7279; outline-offset: 5px; }
section[id] { scroll-margin-top: 95px; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 12px; background: white; color: black; }
.skip-link:focus { top: 12px; }
.site-header { background: #0c0d0fe8; backdrop-filter: blur(20px); }
.site-header .wrap { height: 80px; }
.logo { font-size: 23px; letter-spacing: -.06em; }
.nav a { text-transform: none; letter-spacing: 0; font-size: 13px; }
.btn { text-transform: none; letter-spacing: -.01em; font-size: 14px; border-radius: 7px; padding: 15px 22px; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-3px); }
.btn-primary, .btn-racing { background: var(--racing); color: white; }
.btn-primary:hover, .btn-racing:hover { background: #e92c36; box-shadow: 0 8px 28px #ff3b4525; }
.btn-outline:hover { border-color: #777b83; color: white; }
.btn-sm { font-size: 12px; padding: 10px 17px; }
.btn span { font-size: 20px; margin-left: 14px; }
.hero { text-align: left; padding: 74px 0 0; }
.hero::before { background: radial-gradient(ellipse at 85% 25%, #ff3b4508, transparent 55%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 62px; align-items: center; }
.hero-copy { padding-bottom: 20px; }
.eyebrow { font-size: 10px; letter-spacing: .15em; font-weight: 700; }
.hero .eyebrow { display: flex; align-items: center; gap: 9px; color: #c6c8ce; margin: 0 0 26px; font-size: 9px; letter-spacing: .09em; }
.status-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--racing); flex-shrink: 0; box-shadow: 0 0 0 4px #ff3b4514; }
.hero h1 { font-size: clamp(44px, 4.9vw, 68px); max-width: 12ch; margin: 0; line-height: 1.03; letter-spacing: -.065em; font-weight: 600; }
.hero h1 em { color: #90939c; }
.accent-period { color: var(--racing); }
.hero-sub { font-size: 14px; line-height: 1.85; max-width: 49ch; margin: 24px 0 28px; }
.hero-actions { justify-content: flex-start; gap: 10px; }
.hero-note { font-size: 11px; line-height: 1.8; margin: 17px 0 0; }
.hero-visual { position: relative; min-width: 0; padding: 0 0 78px; }
.hero-visual picture { display: block; overflow: hidden; border-radius: 14px; height: 515px; background: #202125; }
.workshop-photo { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; animation: photo-in 1.3s ease-out both; }
.photo-caption { position: absolute; top: 22px; left: 22px; display: flex; align-items: center; gap: 10px; background: #101114a8; backdrop-filter: blur(12px); border: 1px solid #ffffff20; border-radius: 30px; padding: 9px 14px; font-size: 10px; }
.booking-toast { position: absolute; top: 100px; right: -18px; display: flex; align-items: center; gap: 10px; padding: 15px; border: 1px solid #ffffff20; border-radius: 10px; background: #191c20ef; box-shadow: 0 16px 50px #0005; animation: float-in .8s .4s both; }
.toast-check { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #9de8b4; background: #254332; }
.booking-toast strong, .booking-toast div span { display: block; }
.booking-toast strong { font-size: 11px; }
.booking-toast div span { font-size: 9px; color: #b5b8bd; margin-top: 2px; }
.agenda-preview { position: absolute; bottom: 12px; left: -30px; right: 30px; background: #181a1eef; backdrop-filter: blur(20px); border: 1px solid #ffffff20; border-radius: 12px; box-shadow: 0 24px 55px #0005; padding: 20px; animation: float-in .8s .2s both; }
.agenda-top, .agenda-row, .agenda-bottom { display: flex; align-items: center; justify-content: space-between; }
.agenda-top { padding-bottom: 15px; font-size: 12px; font-weight: 600; }
.agenda-top .status-dot { margin-right: 7px; }
.agenda-top small { font-size: 9px; color: #a6a9b0; font-weight: 400; }
.agenda-row { justify-content: flex-start; gap: 15px; padding: 13px 0; border-top: 1px solid #ffffff0d; }
.agenda-row time { font-size: 11px; color: #a5a8b0; font-variant-numeric: tabular-nums; }
.agenda-row div { border-left: 2px solid var(--racing); padding-left: 12px; }
.agenda-row strong { display: block; font-size: 11px; font-weight: 500; }
.agenda-row div span { font-size: 9px; color: #a5a8b0; }
.appointment-status { margin-left: auto; background: #294032; color: #a6dbb4; border-radius: 4px; padding: 3px 7px; font-size: 8px; }
.agenda-bottom { border-top: 1px solid #ffffff0d; padding-top: 12px; color: #a5a8b0; font-size: 10px; }
.hero-stats { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; border-top: 1px solid var(--line); padding: 32px 0; margin: 35px 0 0; align-items: center; }
.stats-intro { color: var(--fg-dim); font-size: 12px; }
.stats-intro strong { color: var(--fg); font-weight: 500; }
.hero-stat { border-left: 1px solid var(--line); padding-left: 30px; }
.hero-stat strong { color: var(--fg); font-size: 30px; font-weight: 500; letter-spacing: -.06em; }
.hero-stat strong span { font-size: 13px; letter-spacing: 0; text-transform: none; margin-left: 3px; }
.hero-stat > span { display: block; font-size: 10px; letter-spacing: 0; text-transform: none; margin-top: 7px; }
.service-strip { overflow: hidden; border-bottom: 1px solid var(--line); background: #131518; padding: 18px 0; }
.service-track { display: flex; width: max-content; animation: service-scroll 35s linear infinite; }
.service-track span { display: flex; align-items: center; gap: 65px; padding-right: 65px; font: 500 24px var(--display); color: #9b9da4; }
.service-track b { color: var(--racing); font-size: 24px; font-weight: 400; }
.section { padding-block: 100px; }
.section-head h2 { font-size: clamp(30px, 3.5vw, 46px); letter-spacing: -.055em; font-weight: 500; }
.section-head p { font-size: 14px; }
.section-head .eyebrow { font-size: 10px; color: var(--racing); }
.feature-grid { gap: 16px; }
.card { padding: 30px; background: linear-gradient(135deg, #1b1d21, #131518); border-color: #ffffff0e; transition: border-color .3s, transform .3s; }
.card:hover { border-color: #ff3b4555; transform: translateY(-5px); }
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: #ff3b4509; border-color: #ff3b4530; margin-bottom: 26px; }
.card h3 { font-size: 18px; font-weight: 500; letter-spacing: -.035em; }
.card p { font-size: 13px; line-height: 1.85; color: #a4a7af; }
.compare { background: #111316; }
.compare-grid { max-width: 930px; gap: 18px; }
.compare-col { padding: 35px; background: #17191d; }
.compare-col h3 { font-size: 11px; }
.compare-col.bad { opacity: 1; }
.compare-col.bad .compare-price { color: #999ca4; text-decoration: line-through; text-decoration-thickness: 2px; }
.compare-col.good { border-color: #ff3b4566; background: linear-gradient(130deg,#ff3b4510,#17191d); }
.compare-price { font-size: 55px; letter-spacing: -.07em; }
.compare-col li { padding-block: 10px; font-size: 13px; }
.steps { gap: 35px; }
.step { padding: 65px 0 0; border-top: 1px solid var(--line); }
.step::before { top: 18px; color: var(--racing); font-size: 25px; }
.step h3 { font-size: 19px; font-weight: 500; }
.step p { font-size: 13px; line-height: 1.85; }
.pricing { background: #111316; }
.toggle { border-radius: 8px; }
.toggle button { border-radius: 5px; letter-spacing: 0; text-transform: none; font-size: 12px; }
.toggle button[aria-pressed="true"] { color: white; }
.plan { padding: 30px 22px; border-color: #ffffff15; background: #17191d; }
.plan.featured { background: linear-gradient(160deg,#ff3b4513,#17191d 60%); border-color: var(--racing); box-shadow: 0 16px 50px #0002; }
.plan-tag { color: white; font-size: 8px; padding: 5px 12px; }
.plan-price { color: white; font-size: 52px; letter-spacing: -.07em; }
.plan-price sup { margin-right: 5px; letter-spacing: 0; font-size: 16px; }
.plan h3 { font-size: 20px; font-weight: 500; }
.plan li { font-size: 12px; gap: 8px; }
.plan-desc { font-size: 12px; min-height: 55px; }
.plan .btn { font-size: 12px; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-layout .section-head { text-align: left; margin: 0; }
.faq-item summary { font-size: 14px; padding-block: 24px; }
.faq-item p { font-size: 13px; }
.cta { background: radial-gradient(ellipse at 50% 100%,#ff3b4510,transparent 70%); }
.cta-box { max-width: 800px; border-radius: 18px; padding: 48px; }
.field label { letter-spacing: 0; text-transform: none; font-size: 12px; }
.field input,.field select,.field textarea { border-radius: 7px; }
.legal-link { color: var(--fg); text-decoration: underline; }
.site-footer { background: #0c0d0f; }
.footer-grid a,.footer-about p { font-size: 12px; }
.reveal { animation: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.is-pending { opacity: 0; transform: translateY(24px); }
  .reveal { transition: opacity .65s ease, transform .65s ease; transition-delay: var(--reveal-delay,0ms); }
}
@keyframes photo-in { from { transform: scale(1.06); opacity: .4; } to { transform: scale(1); opacity: 1; } }
@keyframes float-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes service-scroll { to { transform: translateX(-50%); } }
@media (max-width: 1050px) {
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: 52px; }
  .booking-toast { right: 5px; }
  .agenda-preview { left: -10px; right: 10px; }
  .faq-layout { gap: 50px; }
  .hero .eyebrow { max-width: 35ch; }
}
@media (max-width: 720px) {
  .site-header .wrap { height: 68px; gap: 10px; }
  .logo { font-size: 20px; }
  .header-actions { margin-left: auto; gap: 7px; }
  .header-actions .btn { padding: 9px 11px; font-size: 11px; }
  .nav { top: 68px; }
  .wrap { padding-inline: 22px; }
  .hero { padding-top: 42px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: clamp(44px,10vw,64px); max-width: 13ch; }
  .hero .eyebrow { max-width: none; font-size: 8px; }
  .hero-sub { max-width: 52ch; }
  .hero-visual { padding-bottom: 70px; }
  .hero-visual picture { height: 390px; }
  .booking-toast { top: 85px; right: -6px; }
  .agenda-preview { left: 10px; right: 10px; bottom: 0; padding: 17px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 30px; }
  .stats-intro { grid-column: 1/-1; margin-bottom: 15px; }
  .hero-stat { padding-left: 12px; }
  .hero-stat strong { font-size: 25px; }
  .hero-stat > span { font-size: 9px; }
  .hero-stat strong span { font-size: 10px; }
  .section { padding-block: 65px; }
  .section-head { margin-bottom: 34px; }
  .service-track span { font-size: 20px; gap: 35px; padding-right: 35px; }
  .faq-layout { grid-template-columns: 1fr; gap: 25px; }
  .cta-box { padding: 30px 22px; }
  .footer-grid { gap: 30px; }
  .footer-about { grid-column: 1/-1; }
  .plan-desc { min-height: 0; }
  .plan { padding: 30px; }
  .step { padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.service-strip { position: relative; }
.motion-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: #17191d; color: #ddd; border: 1px solid #444; border-radius: 5px; padding: 7px 10px; font: 10px var(--sans); cursor: pointer; }
@media (prefers-reduced-motion: reduce) { .motion-toggle { display: none; } }
