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

:root {
  --bg: #090909;
  --surface: rgba(19, 19, 19, 0.92);
  --surface-strong: rgba(28, 28, 28, 0.98);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f6f3ee;
  --text-muted: #c8c2ba;
  --text-dim: #908980;
  --primary: #d41717;
  --primary-soft: rgba(212, 23, 23, 0.18);
  --accent: #f0bf62;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-full: 999px;
  --font-title: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(212, 23, 23, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(240, 191, 98, 0.12), transparent 24%),
    linear-gradient(180deg, #060606 0%, #090909 44%, #111111 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input {
  font: inherit;
  color: inherit;
}

button,
input {
  border: 0;
  background: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.95;
}

.ambient-primary {
  top: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: rgba(212, 23, 23, 0.22);
}

.ambient-accent {
  right: -120px;
  top: 24%;
  width: 340px;
  height: 340px;
  background: rgba(240, 191, 98, 0.12);
}

.ambient-grid {
  inset: 0;
  border-radius: 0;
  filter: none;
  opacity: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 26%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at center, black 26%, transparent 78%);
}

.landing-direct {
  position: relative;
  z-index: 1;
}

.hero-direct {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 40px 0 24px;
}

.hero-direct-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 440px);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.brand-mark {
  display: inline-flex;
  margin-bottom: 28px;
}

.brand-logo {
  width: min(220px, 58vw);
  height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(240, 191, 98, 0.25);
  background: rgba(240, 191, 98, 0.06);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

h1 {
  margin-bottom: 18px;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-description {
  max-width: 58ch;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-point::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(212, 23, 23, 0.75);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--accent);
}

.proof-card span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(11, 11, 11, 0.96));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.form-card-header {
  margin-bottom: 24px;
}

.form-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  border: 1px solid rgba(212, 23, 23, 0.3);
  color: #ff8c8c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-card h2 {
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.form-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.vehicle-selector {
  margin-bottom: 18px;
  border: 0;
}

.vehicle-selector legend {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.vehicle-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.vehicle-option {
  min-height: 52px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.vehicle-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
}

.vehicle-option.is-active {
  border-color: rgba(212, 23, 23, 0.58);
  background: linear-gradient(180deg, rgba(212, 23, 23, 0.24), rgba(212, 23, 23, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 30px rgba(212, 23, 23, 0.18);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field-group label {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.field-group input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field-group input:focus {
  outline: none;
  border-color: rgba(240, 191, 98, 0.72);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(240, 191, 98, 0.08);
}

.submit-button {
  width: 100%;
  min-height: 60px;
  margin-top: 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #d41717, #ff3f3f);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 18px 38px rgba(212, 23, 23, 0.28);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(212, 23, 23, 0.34);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.form-disclaimer {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 0.77rem;
  text-align: center;
}

.confidence-band {
  padding-bottom: 56px;
}

.confidence-band-inner {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.confidence-band p {
  max-width: 70ch;
  color: var(--text-muted);
  text-wrap: balance;
}

.social-proof {
  padding: 44px 0 84px;
  content-visibility: auto;
  contain-intrinsic-size: auto 980px;
}

.social-proof-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.social-proof-heading .eyebrow {
  margin-bottom: 14px;
}

.social-proof h2 {
  margin-bottom: 12px;
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.social-proof-heading p {
  color: var(--text-muted);
  font-size: 1rem;
}

.video-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.video-proof-media {
  min-height: 300px;
  background: #030303;
}

.video-on-demand,
.video-proof video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.video-on-demand {
  position: relative;
  overflow: hidden;
  border: 0;
  background: #030303;
  cursor: pointer;
}

.video-on-demand img,
.video-proof video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-on-demand::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 55%), rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease;
}

.video-on-demand:hover::after,
.video-on-demand:focus-visible::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 55%), rgba(0, 0, 0, 0.02);
}

.video-on-demand:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.video-play-icon,
.video-play-label {
  position: absolute;
  z-index: 1;
}

.video-play-icon {
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(212, 23, 23, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.3rem;
  transform: translate(-50%, -58%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-on-demand:hover .video-play-icon,
.video-on-demand:focus-visible .video-play-icon {
  background: #ed2c2c;
  transform: translate(-50%, -58%) scale(1.08);
}

.video-play-label {
  bottom: 22px;
  left: 50%;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.video-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.video-proof-copy > span {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-proof h3 {
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.video-proof h3 strong {
  color: var(--accent);
}

.video-proof p {
  color: var(--text-muted);
}

.feedback-gallery {
  display: grid;
  grid-auto-columns: minmax(230px, 280px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(240, 191, 98, 0.65) rgba(255, 255, 255, 0.08);
}

.feedback-card {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #131313;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.feedback-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feedback-card:hover img {
  transform: scale(1.035);
}

.location-direct {
  padding: 12px 0 84px;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.location-direct-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.location-direct-copy,
.location-map {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.location-direct-copy {
  padding: 36px;
}

.location-direct-copy .eyebrow {
  margin-bottom: 16px;
}

.location-direct h2 {
  margin-bottom: 18px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.location-direct-copy > p {
  color: var(--text-muted);
}

.location-details {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.location-detail {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.15);
}

.location-detail strong,
.location-detail span {
  display: block;
}

.location-detail strong {
  margin-bottom: 5px;
  font-size: 0.88rem;
}

.location-detail span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.map-link:hover {
  border-color: var(--accent);
  background: rgba(240, 191, 98, 0.08);
  transform: translateY(-1px);
}

.location-map {
  min-height: 520px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 10px);
}

.footer-direct {
  position: relative;
  z-index: 1;
  padding: 0 0 34px;
}

.footer-direct-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 160px;
  margin-bottom: 12px;
}

.footer-copy {
  max-width: 72ch;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-direct {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-direct-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    max-width: 13ch;
  }

  .form-card {
    max-width: 560px;
  }

  .video-proof {
    grid-template-columns: 1fr;
  }

  .video-proof-media,
  .video-on-demand,
  .video-proof video {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .location-direct-grid {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 15px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .vehicle-options {
    grid-template-columns: 1fr;
  }

  .footer-direct-inner {
    flex-direction: column;
  }

  .social-proof {
    padding-bottom: 56px;
  }

  .location-direct {
    padding: 0 0 56px;
  }

  .location-direct-copy {
    padding: 28px 22px;
  }

  .location-map {
    min-height: 330px;
    padding: 8px;
  }

  .location-map iframe {
    min-height: 314px;
    border-radius: calc(var(--radius-lg) - 16px);
  }

  .video-proof-copy {
    padding: 28px 24px 30px;
  }

  .page-shell {
    display: none;
  }

  body {
    background: linear-gradient(180deg, #090909 0%, #101010 100%);
  }

  .form-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .proof-card,
  .form-card,
  .video-proof,
  .location-direct-copy,
  .location-map {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero-direct {
    padding: 24px 0 18px;
  }

  h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-points {
    flex-direction: column;
  }

  .form-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .confidence-band {
    padding-bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
