/* =========================================================
   Whoosh — gowhoosh.com  (v2 — Dorex-inspired)
   ========================================================= */

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; }

/* -------- Tokens — Light mode (default) -------- */
:root {
  /* Surfaces */
  --color-bg:            #ffffff;
  --color-surface:       #f6f6f7;
  --color-surface-deep:  #ececef;
  --color-border:        #e6e6ea;
  --color-border-strong: #d4d4da;

  /* Dark surfaces (used in hero + CTA band, always dark even in light mode) */
  --color-dark-bg:       #0d0d0d;
  --color-dark-surface:  #1a1a1a;
  --color-dark-border:   #2a2a2a;
  --color-dark-text:     #ffffff;
  --color-dark-muted:    #a8a8a8;

  /* Text */
  --color-text-strong:   #0a0a0a;
  --color-text:          #1a1a1a;
  --color-text-muted:    #5a5a5a;
  --color-text-quiet:    #8a8a8a;

  /* Brand */
  --color-brand:         #ED1C24;
  --color-brand-hover:   #c61920;
  --color-brand-tint:    rgba(237, 28, 36, 0.08);
  --color-brand-tint-2:  rgba(237, 28, 36, 0.16);
  --color-brand-quiet:   rgba(237, 28, 36, 0.20);
  --color-focus-ring:    #ED1C24;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --reading-max: 680px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 160ms ease-out;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* -------- Tokens — Dark mode -------- */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg:            #0d0d0d;
    --color-surface:       #161616;
    --color-surface-deep:  #1f1f1f;
    --color-border:        #2a2a2a;
    --color-border-strong: #383838;

    --color-text-strong:   #ffffff;
    --color-text:          #e8e8e8;
    --color-text-muted:    #a8a8a8;
    --color-text-quiet:    #707070;

    --color-brand:         #F0303A;
    --color-brand-hover:   #ED1C24;
    --color-brand-tint:    rgba(240, 48, 58, 0.12);
    --color-brand-tint-2:  rgba(240, 48, 58, 0.22);
    --color-brand-quiet:   rgba(240, 48, 58, 0.28);
    --color-focus-ring:    #F0303A;
  }
}

/* -------- Base -------- */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  color: var(--color-text-strong);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -------- Eyebrow labels -------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 18px;
}

.eyebrow--on-dark {
  color: #F0303A;
}

/* -------- Container -------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 50;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: inline-block; }
.logo {
  height: 56px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--color-dark-muted);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover { color: #ffffff; }

.site-nav__cta {
  padding: 10px 18px;
  background: var(--color-brand);
  color: #ffffff !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background var(--transition);
}

.site-nav__cta:hover { background: var(--color-brand-hover); }

@media (min-width: 880px) {
  .site-nav { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  /* subtle radial vignette behind content */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 35%, rgba(237,28,36,0.10), transparent 55%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 620px; }

.hero__headline {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero__headline .accent {
  color: var(--color-brand);
  font-style: normal;
}

.hero__subhead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-dark-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.hero__mailto {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark-text);
  border-bottom: 1px solid var(--color-brand-quiet);
  padding-bottom: 2px;
}

.hero__mailto:hover {
  border-bottom-color: var(--color-brand);
  color: var(--color-brand);
}

/* Credibility chips */
.cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--color-dark-border);
}

.cred-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-muted);
}

.cred-chips__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  display: inline-block;
}

/* Hero illustration */
.hero__illustration {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .hero { padding: 160px 0 120px; }
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
  .hero__headline { font-size: 56px; }
  .hero__subhead { font-size: 20px; }
  .hero__cta-row { flex-direction: row; align-items: center; gap: 28px; }
}

@media (min-width: 1200px) {
  .hero__headline { font-size: 64px; line-height: 1.02; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn--lg {
  padding: 15px 28px;
  font-size: 16px;
  border-radius: 10px;
}

.btn--primary {
  background: var(--color-brand);
  color: #ffffff;
  box-shadow: 0 8px 24px -10px rgba(237,28,36,0.6);
}

.btn--primary:hover {
  background: var(--color-brand-hover);
  transform: translateY(-1px);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--color-dark-border);
}

.btn--ghost:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.04);
}

.btn__arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.btn:hover .btn__arrow { transform: translateX(3px); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 80px 0;
}

.section--surface { background: var(--color-surface); }

.section__heading {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section__intro {
  max-width: var(--reading-max);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .section { padding: 96px 0; }
  .section__heading { font-size: 38px; }
}

@media (min-width: 960px) {
  .section { padding: 112px 0; }
  .section__heading { font-size: 44px; }
  .section__intro { font-size: 19px; }
}

/* =========================================================
   SERVICES — 3 cards (one featured)
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
}

.card--featured {
  border-color: var(--color-brand);
  background: linear-gradient(180deg, var(--color-brand-tint), transparent 60%);
}

.card--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-brand);
  pointer-events: none;
}

.card__pin {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: var(--color-brand-tint-2);
  padding: 5px 10px;
  border-radius: 999px;
}

.card__badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-brand-tint);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card__badge svg {
  width: 28px;
  height: 28px;
}

.card__title {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  font-weight: 700;
}

.card__body {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .card--featured { grid-column: span 2; }
}

@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .card--featured { grid-column: auto; }
}

/* =========================================================
   WHY WHOOSH — 4 cards in grid
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-brand-tint);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.why-card__body {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (min-width: 1100px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   PROCESS — two-column with illustration
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.process__illustration { order: -1; }

.process__illustration svg {
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-step__num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-brand);
  background: var(--color-brand-tint);
  padding: 8px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.process-step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step__body {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (min-width: 960px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .process__illustration { order: 0; }
}

/* =========================================================
   COVERAGE — two-column with stylized map
   ========================================================= */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.coverage-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 8px 0 32px;
  max-width: 480px;
}

.coverage-cities li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
}

.coverage-cities__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
}

.coverage__note {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
}

.coverage__map svg {
  width: 100%;
  height: auto;
  max-width: 540px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .coverage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* =========================================================
   CTA BAND
   ========================================================= */
.section--cta {
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(237,28,36,0.15), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(237,28,36,0.10), transparent 50%);
  pointer-events: none;
}

.cta-block {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 0;
}

.cta-block__heading {
  color: #ffffff;
  font-size: 36px;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-block__body {
  color: var(--color-dark-muted);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 32px;
}

.cta-block__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.cta-block__meta {
  color: var(--color-dark-muted);
  font-size: 14px;
}

@media (min-width: 640px) {
  .cta-block__heading { font-size: 44px; }
  .cta-block__actions { flex-direction: row; justify-content: center; gap: 20px; }
}

@media (min-width: 960px) {
  .cta-block__heading { font-size: 52px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-surface);
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer-col__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col li {
  font-size: 15px;
  color: var(--color-text-muted);
}

.footer-col a:hover {
  color: var(--color-brand);
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tag {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 220px;
  line-height: 1.5;
}

.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 28px;
}

.footer-bar__legal {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bar__copy {
  font-size: 12px;
  color: var(--color-text-quiet);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* =========================================================
   LEAD FORM
   ========================================================= */

/* Form card — always a light surface, even in dark mode, for contrast against the dark CTA band.
   Override all design tokens used inside the form so it reads as a light-themed card regardless of OS preference. */
.form-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  margin: 48px auto 32px;
  max-width: 760px;
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.5);
  text-align: left;

  /* Hard-pin form-internal colors to light-mode values */
  --color-bg: #ffffff;
  --color-surface: #f6f6f7;
  --color-border: #e6e6ea;
  --color-border-strong: #d4d4da;
  --color-text-strong: #0a0a0a;
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-text-quiet: #8a8a8a;
  --color-brand: #ED1C24;
  --color-brand-hover: #c61920;
  --color-brand-tint: rgba(237, 28, 36, 0.08);
  --color-brand-quiet: rgba(237, 28, 36, 0.20);
  color: var(--color-text);
}

/* Force-hide for [hidden] elements that have explicit display rules */
.lead-form[hidden],
.lead-form__success[hidden] {
  display: none !important;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lead-form__section {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form__section legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 8px;
  padding: 0;
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.lead-form__field label,
.lead-form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.req {
  color: var(--color-brand);
  font-weight: 700;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form textarea,
.lead-form select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.lead-form textarea {
  resize: vertical;
  min-height: 64px;
  font-family: inherit;
  line-height: 1.5;
}

.lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a5a5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-tint);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--color-text-quiet);
}

/* Checkbox groups */
.lead-form__checkboxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.lead-form__check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  background: var(--color-bg);
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
}

.lead-form__check:hover {
  border-color: var(--color-brand-quiet);
}

.lead-form__check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}

.lead-form__check input[type="checkbox"]:checked {
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.lead-form__check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lead-form__check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.lead-form__check:has(input[type="checkbox"]:checked) {
  border-color: var(--color-brand);
  background: var(--color-brand-tint);
}

/* Honeypot — off-screen but not display:none (bots skip display:none) */
.lead-form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Error message */
.lead-form__error {
  padding: 14px 16px;
  background: var(--color-brand-tint);
  border: 1px solid var(--color-brand-quiet);
  border-radius: var(--radius-sm);
  color: var(--color-brand);
  font-size: 14px;
  font-weight: 600;
}

/* Submit row */
.lead-form__submit-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.lead-form__submit-row .btn {
  align-self: flex-start;
}

.lead-form__submit-row .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lead-form__assurance {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Success state */
.lead-form__success {
  text-align: center;
  padding: 32px 16px;
}

.lead-form__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-brand-tint);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-form__success-icon svg {
  width: 32px;
  height: 32px;
}

.lead-form__success h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.lead-form__success p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.lead-form__success a {
  color: var(--color-brand);
  border-bottom: 1px solid var(--color-brand-quiet);
}

.lead-form__success a:hover {
  border-bottom-color: var(--color-brand);
}

/* Contact meta override for form context */
.section--cta .cta-block__meta {
  text-align: center;
  margin-top: 16px;
}

.section--cta .cta-block__meta a {
  color: #ffffff;
  border-bottom: 1px solid var(--color-brand-quiet);
}

.section--cta .cta-block__meta a:hover {
  color: var(--color-brand);
  border-bottom-color: var(--color-brand);
}

@media (min-width: 640px) {
  .form-card { padding: 48px 40px; margin-top: 56px; }
  .lead-form__row { grid-template-columns: 1fr 1fr; }
  .lead-form__submit-row { flex-direction: row; align-items: center; gap: 24px; }
}

@media (min-width: 960px) {
  .form-card { padding: 56px 56px; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: reveal 220ms var(--ease-out) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
