:root {
  --black: #050505;
  --black-soft: #101010;
  --red: #d71920;
  --red-dark: #a91117;
  --yellow: #ffd400;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --gray: #555;
  --gray-light: #e8e8e8;
  --steel: #c8ccd2;
  --steel-light: #f2f4f6;
  --steel-mid: #aeb4bc;
  --steel-dark: #5d6670;
  --chrome-gradient: linear-gradient(
    135deg,
    #ffffff 0%,
    #d9dde2 24%,
    #aeb4bc 48%,
    #f4f6f8 72%,
    #8e969f 100%
  );
  --dark-gradient: linear-gradient(145deg, #050505, #181818 55%, #2b0508);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.16);
  --shadow-heavy: 0 20px 55px rgba(0, 0, 0, 0.28);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 900;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    var(--black);
  color: white;
  border-bottom: 4px solid var(--red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--chrome-gradient);
  opacity: 0.95;
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 0;
}

.logo img {
  width: 230px;
  max-height: 76px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 3px 8px rgba(255, 255, 255, 0.22))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.92;
  position: relative;
  padding: 8px 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--chrome-gradient);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.phone-btn {
  background: var(--chrome-gradient);
  color: var(--black);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 6px 18px rgba(0,0,0,0.25);
}

.phone-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 10px 24px rgba(0,0,0,0.34);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--steel-light);
  border-radius: 999px;
  margin: 5px 0;
}

/* Hero */

.hero {
  background:
    linear-gradient(120deg, rgba(0,0,0,0.88), rgba(0,0,0,0.62)),
    radial-gradient(circle at top right, rgba(215,25,32,0.9), transparent 36%),
    radial-gradient(circle at bottom left, rgba(200,204,210,0.35), transparent 24%),
    #111;
  color: white;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.08) 45%, transparent 52%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 20px;
  letter-spacing: -1.8px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

h3 {
  letter-spacing: -0.3px;
}

.hero-text {
  font-size: 20px;
  max-width: 720px;
  color: #f2f2f2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background:
    linear-gradient(180deg, #ef272e, var(--red));
  color: white;
  box-shadow: 0 10px 24px rgba(215, 25, 32, 0.28);
}

.btn.primary:hover {
  background:
    linear-gradient(180deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.36);
}

.btn.secondary {
  border-color: var(--steel-light);
  color: white;
  background: rgba(255,255,255,0.06);
}

.btn.secondary:hover {
  background: var(--chrome-gradient);
  color: #111;
  border-color: white;
}

.btn.full {
  width: 100%;
}

.btn.dark-btn {
  background: var(--black);
  color: white;
  border-color: var(--steel-mid);
}

.btn.dark-btn:hover {
  background: var(--steel-light);
  color: var(--black);
}

.btn.light {
  background: white;
  color: var(--red);
}

.btn.light:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn.outline {
  background: transparent;
  border-color: var(--steel-mid);
  color: var(--black);
  margin-top: 12px;
}

.btn.outline:hover {
  background: var(--black);
  color: white;
}

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

.trust-row span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Cards */

.hero-card,
.hero-photo-card,
.info-box,
.vehicle-card,
.step,
.lead-form {
  background: white;
  color: #111;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.hero-photo-card {
  overflow: hidden;
  border-top: 6px solid var(--steel-mid);
  position: relative;
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
  z-index: 2;
}

.hero-photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.hero-photo-content {
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff, #f1f3f5);
}

.hero-photo-content h2 {
  font-size: 28px;
}

.card-kicker {
  display: inline-flex;
  background: var(--chrome-gradient);
  color: #111;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 12px;
}

/* Trust Strip */

.trust-strip {
  background:
    linear-gradient(180deg, #ffffff, #f5f6f7);
  padding: 28px 0;
  border-bottom: 1px solid #e4e4e4;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-strip-grid div {
  background: white;
  border-left: 5px solid var(--red);
  border-top: 1px solid var(--steel-light);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.trust-strip-grid strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}

.trust-strip-grid span {
  display: block;
  font-size: 14px;
  color: #444;
}

/* Sections */

.section {
  padding: 76px 0;
}

.section.dark {
  background:
    radial-gradient(circle at top left, rgba(200,204,210,0.13), transparent 35%),
    var(--black-soft);
  color: white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Quick Contact */

.quick-contact {
  background: var(--chrome-gradient);
  padding: 44px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid var(--steel-mid);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.quick-contact h2 {
  margin-bottom: 10px;
}

.quick-contact p {
  margin-bottom: 0;
  max-width: 760px;
}

.quick-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Finder System */

.finder-system {
  background:
    linear-gradient(180deg, #f7f7f7, #ffffff);
}

.finder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.finder-content p {
  max-width: 780px;
}

.finder-points {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.finder-points div {
  background: white;
  border-left: 5px solid var(--red);
  border-top: 1px solid var(--steel-light);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.finder-points strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.finder-points span {
  color: #444;
}

.finder-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0)),
    var(--dark-gradient);
  color: white;
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  border-top: 6px solid var(--steel-mid);
  position: relative;
  overflow: hidden;
}

.finder-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
}

.finder-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.finder-card ul {
  padding-left: 20px;
  margin-bottom: 22px;
}

.finder-card li {
  margin-bottom: 10px;
}

.finder-card p {
  color: #f2f2f2;
}

/* Inventory Cards */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.vehicle-card {
  overflow: hidden;
  padding: 26px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid #ececec;
  border-top: 4px solid var(--steel-mid);
  background:
    linear-gradient(180deg, #ffffff, #f8f9fa);
}

.vehicle-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  border-top-color: var(--red);
}

.vehicle-photo {
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0;
  border-radius: 16px;
  background: #fff;
}

.vehicle-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.vehicle-card p {
  margin-bottom: 14px;
  max-width: 760px;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link::after {
  content: "→";
  transition: transform 0.15s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

/* How It Works */

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

.step {
  padding: 24px;
  border-top: 4px solid var(--steel-mid);
}

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, #ef272e, var(--red));
  color: white;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(215,25,32,0.28);
}

/* Better Experience */

.better-experience {
  background: #fff;
}

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

.experience-card {
  background:
    linear-gradient(180deg, #ffffff, #f6f7f8);
  padding: 26px;
  border-radius: var(--radius-lg);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow-soft);
}

.experience-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.experience-card p {
  margin-bottom: 0;
  color: #444;
}

/* Service Area */

.service-area {
  background:
    linear-gradient(180deg, #f6f6f6, #ffffff);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-area-list span {
  background: white;
  border: 1px solid var(--steel-mid);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

/* Split Sections */

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.info-box {
  padding: 30px;
  border-left: 6px solid var(--red);
  border-top: 1px solid var(--steel-light);
}

.info-box.red {
  background:
    linear-gradient(145deg, #ef272e, var(--red-dark));
  color: white;
  border-left: none;
}

.info-box ul {
  margin-bottom: 0;
}

.small-disclaimer {
  font-size: 14px;
  color: #555;
  background: #f6f6f6;
  border-left: 4px solid var(--steel-mid);
  padding: 12px 14px;
  border-radius: 10px;
}

/* Form */

.form-section {
  background:
    linear-gradient(180deg, #f5f6f7, #ffffff);
}

.form-intro-card {
  max-width: 980px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-intro-card div {
  background: white;
  border-left: 5px solid var(--steel-mid);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.form-intro-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.form-intro-card span {
  display: block;
  color: #444;
}

.form-intro-card a {
  color: var(--red);
  font-weight: 900;
}

.lead-form {
  padding: 30px;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid #e9e9e9;
  border-top: 6px solid var(--steel-mid);
}

.form-block {
  background: #fff;
  border: 1px solid #eee;
  border-left: 6px solid var(--red);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.form-block h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

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

.field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 900;
  color: #222;
}

label span[aria-hidden="true"] {
  color: var(--red);
}

.optional-tag {
  display: inline-flex;
  margin-left: 4px;
  font-size: 12px;
  color: #666;
  font-weight: 800;
  background: #f2f2f2;
  padding: 2px 7px;
  border-radius: 999px;
}

.field-help {
  margin-top: -6px;
  color: #555;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  font: inherit;
  background: white;
  color: #111;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--steel-dark);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 212, 0, 0.35);
  border-color: var(--red);
}

textarea {
  margin-top: 0;
  min-height: 150px;
  resize: vertical;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  background:
    linear-gradient(180deg, #ffffff, #f6f7f8);
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 13px 14px;
  font-weight: 800;
  cursor: pointer;
}

.checkbox-grid label:hover {
  border-color: var(--red);
  background: #fff;
}

.checkbox-grid input {
  width: auto;
  min-width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.consent-card {
  border-left-color: var(--steel-dark);
  background:
    linear-gradient(180deg, #ffffff, #f5f6f7);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.consent-row input {
  width: auto;
  min-width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--red);
}

.consent-text {
  margin: 14px 0 0;
  font-size: 14px;
  color: #555;
}

.spam-protection {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form button {
  margin-top: 4px;
  border: none;
}

.lead-form button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
  transform: none;
}

.form-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.form-message {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 800;
}

.form-message.success {
  background: #e9f8ee;
  color: #176b2c;
  border: 1px solid #b9e7c5;
}

.form-message.error {
  background: #fdecec;
  color: #9d1717;
  border: 1px solid #f3bcbc;
}

/* Contact */

.contact {
  background: #fff;
}

.contact a {
  color: var(--red);
  font-weight: 900;
}

/* Mobile CTA Bar */

.mobile-cta-bar {
  display: none;
}

/* Footer */

.site-footer {
  background:
    linear-gradient(180deg, #0f0f0f, var(--black));
  color: white;
  padding: 24px 0;
  border-top: 3px solid var(--steel-mid);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

/* Utility */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Tablet */

@media (max-width: 1050px) {
  .nav-links {
    gap: 12px;
    font-size: 14px;
  }

  .logo img {
    width: 210px;
  }

  .experience-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 900px) {
  html {
    scroll-padding-top: 110px;
  }

  body {
    padding-bottom: 64px;
  }

  .nav {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 14px;
    padding: 10px 0;
  }

  .logo img {
    width: 205px;
    max-height: 68px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  .phone-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(330px, 84vw);
    height: 100vh;
    background:
      linear-gradient(180deg, #151515, #050505);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 98px 22px 22px;
    box-shadow: -18px 0 40px rgba(0,0,0,0.38);
    transition: right 0.25s ease;
    border-left: 4px solid var(--steel-mid);
  }

  body.nav-open .nav-links {
    right: 0;
  }

  .nav-links a {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 17px;
  }

  body.nav-open .nav-toggle {
    position: fixed;
    right: 4%;
    top: 20px;
    z-index: 200;
  }

  .hero {
    padding: 58px 0;
  }

  .hero-grid,
  .finder-grid,
  .service-area-grid,
  .split-grid,
  .contact-grid,
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions,
  .quick-contact-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .quick-contact-actions .btn {
    width: 100%;
  }

  .hero-photo-card img {
    height: 220px;
  }

  .finder-card {
    padding: 28px;
  }

  .form-intro-card {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-block {
    padding: 20px;
  }

  .vehicle-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .vehicle-photo {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--black);
    border-top: 3px solid var(--steel-mid);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.28);
  }

  .mobile-cta-bar a {
    color: white;
    text-align: center;
    padding: 14px 10px;
    font-weight: 900;
  }

  .mobile-cta-bar a:first-child {
    background: var(--red);
  }

  .mobile-cta-bar a:last-child {
    background: var(--chrome-gradient);
    color: var(--black);
  }
}

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

  .section {
    padding: 56px 0;
  }

  .trust-strip-grid,
  .experience-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 18px;
  }

  .form-block {
    padding: 18px;
    border-left-width: 4px;
  }

  .hero-photo-content {
    padding: 22px;
  }

  .info-box {
    padding: 24px;
  }

  .service-area-list span {
    width: 100%;
    text-align: center;
  }
}

/* === Yuma Supreme Interactive Upgrade Layer === */

.supreme-lab {
  background:
    radial-gradient(circle at top left, rgba(255, 212, 0, 0.20), transparent 28%),
    radial-gradient(circle at bottom right, rgba(215, 25, 32, 0.22), transparent 34%),
    linear-gradient(145deg, #090909, #161616 52%, #33070b);
  color: white;
  position: relative;
  overflow: hidden;
}

.supreme-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
  pointer-events: none;
}

.supreme-lab-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lab-copy p:not(.eyebrow) {
  color: #f4f4f4;
  font-size: 18px;
}

.lab-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.scenario-chip {
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.scenario-chip:hover,
.scenario-chip.is-selected {
  transform: translateY(-2px);
  background: var(--chrome-gradient);
  color: var(--black);
  border-color: white;
}

.lab-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin: 22px 0 26px;
}

.lab-controls label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: white;
}

.lab-controls select,
.lab-controls input[type="range"] {
  width: 100%;
}

.lab-controls select {
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  padding: 12px;
  font-weight: 800;
  color: #111;
}

.lab-controls input[type="range"] {
  accent-color: var(--yellow);
}

.range-caption {
  color: var(--yellow);
  font-size: 13px;
}

.lab-card {
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    rgba(5,5,5,0.86);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  border-top: 6px solid var(--yellow);
  box-shadow: 0 28px 70px rgba(0,0,0,0.42);
  backdrop-filter: blur(12px);
}

.lab-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.lab-card-topline span {
  color: #d9dde2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.lab-card-topline strong {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--black);
  background: conic-gradient(var(--yellow), var(--red), var(--steel-light), var(--yellow));
  box-shadow: 0 0 0 8px rgba(255,255,255,0.08);
}

.lab-card h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.lab-card p {
  color: #f2f2f2;
}

.dna-bars {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.dna-row {
  display: grid;
  gap: 6px;
}

.dna-row span {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 900;
  color: #dfe3e8;
}

.dna-row div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.dna-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  box-shadow: 0 0 18px rgba(255,212,0,0.35);
  transition: width 0.35s ease;
}

.lab-next-step {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.07);
}

.lab-next-step strong,
.lab-next-step span {
  display: block;
}

.lab-next-step span {
  color: #f2f2f2;
  margin-top: 4px;
}

.supreme-roadmap {
  background:
    linear-gradient(180deg, #ffffff, #f3f4f6);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.roadmap-step {
  padding: 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid #e9ecef;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.roadmap-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--steel-mid);
  transition: background 0.25s ease;
}

.roadmap-step.is-active::before {
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.roadmap-step span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: var(--steel-light);
  color: var(--black);
  font-weight: 900;
}

.roadmap-step.is-active span {
  background: var(--red);
  color: white;
  box-shadow: 0 10px 24px rgba(215,25,32,0.25);
}

.roadmap-step strong,
.roadmap-step small {
  display: block;
}

.roadmap-step small {
  margin-top: 8px;
  color: #555;
}

.request-intelligence {
  background:
    radial-gradient(circle at top right, rgba(255,212,0,0.18), transparent 24%),
    linear-gradient(145deg, #111, #260507);
  color: white;
  border-left-color: var(--yellow) !important;
}

.request-intelligence .eyebrow {
  color: var(--yellow);
}

.request-intelligence-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.request-intelligence-header h3 {
  margin-bottom: 0;
}

#requestReadinessScore {
  min-width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111;
  background: var(--chrome-gradient);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.08);
}

.passport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.passport-grid div,
.live-summary-box {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px;
}

.passport-grid span,
.passport-grid strong {
  display: block;
}

.passport-grid span {
  color: #dfe3e8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 4px;
}

.live-summary-box {
  margin-top: 14px;
}

.live-summary-box p {
  color: #f3f4f6;
  margin-bottom: 0;
}

.request-intelligence .small-disclaimer {
  color: #dfe3e8;
}

.finder-companion {
  position: fixed;
  right: 18px;
  bottom: 26px;
  z-index: 130;
  width: 250px;
  transition: transform 0.25s ease;
}

.companion-toggle {
  width: 100%;
  border: 0;
  border-radius: 999px 999px 0 0;
  background: var(--red);
  color: white;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.companion-panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    #0b0b0b;
  color: white;
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  padding: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.companion-collapsed .finder-companion {
  transform: translateY(calc(100% - 41px));
}

.pulse-ring {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: conic-gradient(var(--yellow), var(--red), var(--steel-light), var(--yellow));
  box-shadow: 0 0 0 8px rgba(255,255,255,0.08);
}

.pulse-ring span {
  width: 64px;
  height: 64px;
  border-radius: inherit;
  background: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.companion-panel strong,
.companion-panel p {
  display: block;
  text-align: center;
}

.companion-panel p {
  color: #e9ecef;
  font-size: 14px;
}

.success-passport[hidden] {
  display: none;
}

.success-passport {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,0.74);
  backdrop-filter: blur(9px);
}

.success-passport-card {
  width: min(560px, 100%);
  background:
    radial-gradient(circle at top right, rgba(255,212,0,0.22), transparent 30%),
    linear-gradient(145deg, #ffffff, #f2f4f6);
  color: #111;
  border-radius: 28px;
  padding: 34px;
  position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
  border-top: 8px solid var(--red);
}

.passport-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.passport-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.passport-next-grid div {
  border-radius: 16px;
  background: white;
  border: 1px solid #e5e7eb;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.passport-next-grid strong,
.passport-next-grid span {
  display: block;
}

.passport-next-grid strong {
  color: var(--red);
  font-size: 24px;
}

.tilt-ready {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  transform-style: preserve-3d;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .tilt-ready,
  .scenario-chip,
  .dna-row i {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .supreme-lab-grid,
  .lab-controls,
  .roadmap-grid,
  .passport-grid {
    grid-template-columns: 1fr;
  }

  .lab-scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .finder-companion {
    display: none;
  }
}

@media (max-width: 620px) {
  .lab-scenario-grid,
  .passport-next-grid {
    grid-template-columns: 1fr;
  }

  .success-passport-card {
    padding: 26px 20px;
  }
}


/* SafeSource Request success link and private request confirmation */

.safesource-room-link {
  margin-top: 14px;
  text-decoration: none;
}

.safesource-room-link[hidden],
.safesource-room-hint[hidden] {
  display: none !important;
}

.safesource-room-hint {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.success-passport-card .safesource-room-link {
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.28);
}

.success-passport-card .safesource-room-link:hover {
  transform: translateY(-1px);
}

.success-passport-card .safesource-room-hint {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--red);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
}

/* SafeSource language polish for existing request experience */

.form-message.success a,
.form-message.error a {
  font-weight: 900;
  text-decoration: underline;
}

.request-intelligence .safesource-room-hint {
  color: #e5e7eb;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

/* Admin SafeSource links rendered from the backend admin table */

.safe-source-links {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.safe-source-links a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: #111827;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.safe-source-links a:hover {
  background: var(--red);
}

.safe-source-room-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 900;
}

/* Protection and SafeSource callouts for upcoming homepage sections */

.safesource-callout {
  background:
    radial-gradient(circle at top right, rgba(255,212,0,0.18), transparent 28%),
    linear-gradient(145deg, #050505, #181818 55%, #2b0508);
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  padding: clamp(24px, 4vw, 38px);
  position: relative;
  overflow: hidden;
}

.safesource-callout::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
}

.safesource-callout > * {
  position: relative;
  z-index: 1;
}

.safesource-callout .eyebrow {
  color: var(--yellow);
}

.safesource-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.safesource-promise-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 16px;
}

.safesource-promise-card strong,
.safesource-promise-card span {
  display: block;
}

.safesource-promise-card strong {
  color: var(--yellow);
  margin-bottom: 6px;
}

.safesource-promise-card span {
  color: #eef2f7;
  font-size: 14px;
}

@media (max-width: 900px) {
  .safesource-promise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .safesource-promise-grid {
    grid-template-columns: 1fr;
  }

  .success-passport-card .safesource-room-hint {
    text-align: left;
  }
}


/* === Elite SafeSource App Experience Upgrade === */
:root {
  --glass: rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.18);
  --premium-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

body {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.07), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(255,212,0,0.05), transparent 25%),
    #fff;
}

.experience-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(215,25,32,0.45), transparent 27%),
    radial-gradient(circle at 78% 18%, rgba(255,212,0,0.20), transparent 18%),
    linear-gradient(135deg, rgba(5,5,5,0.96), rgba(14,14,14,0.88) 52%, rgba(41,5,8,0.96)),
    #050505;
  isolation: isolate;
}

.hero-motion-field,
.hero-motion-field * {
  pointer-events: none;
}

.hero-motion-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.motion-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
  animation: orbFloat 13s ease-in-out infinite alternate;
}

.orb-red {
  left: -120px;
  top: 12%;
  background: radial-gradient(circle, rgba(215,25,32,0.7), transparent 66%);
}

.orb-chrome {
  right: -120px;
  bottom: 5%;
  background: radial-gradient(circle, rgba(220,226,235,0.35), transparent 68%);
  animation-delay: -4s;
}

.motion-line {
  position: absolute;
  width: 48vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: rotate(-18deg);
  opacity: 0.24;
  animation: scanLine 7s linear infinite;
}

.line-one { top: 22%; left: -20%; }
.line-two { bottom: 18%; right: -18%; animation-delay: -3s; }

.experience-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.experience-copy h1 {
  max-width: 900px;
  font-size: clamp(44px, 6.8vw, 82px);
  letter-spacing: -2.4px;
}

.experience-copy .hero-text {
  max-width: 780px;
  color: rgba(255,255,255,0.86);
}

.hero-live-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-live-chip {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
  font-size: 13px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.hero-live-chip.is-active {
  background: var(--yellow);
  color: #111;
  transform: translateY(-2px);
}

.live-room-console {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
}

.console-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.console-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 18px 0 0 var(--yellow), 36px 0 0 #40c463;
}

.console-topbar strong { margin-left: 48px; }

.room-phone {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,248,250,0.94));
  color: #111;
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8), 0 20px 55px rgba(0,0,0,0.34);
}

.room-phone-glow {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,25,32,0.22), transparent 65%);
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.room-phone-header,
.room-line,
.room-preview-tabs,
.room-preview-panel {
  position: relative;
  z-index: 1;
}

.room-phone-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
}

.room-phone-header small {
  grid-column: 2;
  color: #6b7280;
  font-weight: 800;
}

.room-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 7px rgba(22,163,74,0.14);
  animation: pulseDot 1.9s ease-in-out infinite;
}

.room-progress-ring {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 28px auto;
  background:
    radial-gradient(circle at center, white 0 54%, transparent 55%),
    conic-gradient(var(--red) var(--room-progress, 18%), #e5e7eb 0);
  box-shadow: 0 14px 35px rgba(0,0,0,0.14);
}

.room-progress-ring span {
  font-size: 30px;
  font-weight: 1000;
  line-height: 1;
}

.room-progress-ring small {
  font-size: 11px;
  font-weight: 900;
  color: #6b7280;
  text-transform: uppercase;
  margin-top: -46px;
}

.room-preview-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.room-preview-tab {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 9px 10px;
  font-weight: 900;
  cursor: pointer;
}

.room-preview-tab.is-active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.room-preview-panel { display: none; }
.room-preview-panel.is-active { display: block; animation: panelIn .28s ease both; }

.room-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #eef0f3;
  background: #fff;
  border-radius: 16px;
  padding: 13px 14px;
  margin-bottom: 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}

.room-line span {
  color: #6b7280;
  font-weight: 900;
  font-size: 13px;
}

.room-line strong {
  text-align: right;
  max-width: 56%;
}

.mock-match-card {
  background: #111827;
  color: white;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}

.mock-car-silhouette {
  height: 110px;
  border-radius: 18px;
  margin-bottom: 14px;
  background:
    radial-gradient(circle at 25% 80%, #111 0 8%, transparent 9%),
    radial-gradient(circle at 75% 80%, #111 0 8%, transparent 9%),
    linear-gradient(160deg, transparent 0 22%, rgba(255,255,255,0.28) 23% 45%, transparent 46%),
    linear-gradient(180deg, #d1d5db, #9ca3af);
  position: relative;
}

.match-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.match-mini-tags span,
.proof-badge {
  background: rgba(255,212,0,0.15);
  color: var(--yellow);
  border: 1px solid rgba(255,212,0,0.22);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
}

.protection-stack {
  display: grid;
  gap: 10px;
}

.protection-stack div {
  border-radius: 16px;
  background: #fff;
  border-left: 5px solid var(--red);
  padding: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.07);
}

.protection-stack strong,
.protection-stack span { display: block; }
.protection-stack span { color: #6b7280; font-size: 13px; font-weight: 800; }

.safesource-app {
  background:
    linear-gradient(180deg, #ffffff, #f5f6f8 55%, #ffffff);
}

.source-path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.source-path-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid #e7e9ed;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.14), transparent 38%),
    linear-gradient(180deg, #fff, #f8f9fb);
  padding: 22px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.source-path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.75), transparent);
  transform: translateX(-120%);
  transition: transform .65s ease;
}

.source-path-card:hover,
.source-path-card.is-selected {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(215,25,32,0.42);
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

.source-path-card:hover::after { transform: translateX(120%); }
.source-path-card.is-selected { background: linear-gradient(145deg, #111827, #070707); color: white; }

.source-path-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 1000;
  margin-bottom: 20px;
  box-shadow: 0 10px 22px rgba(215,25,32,0.28);
}

.source-path-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.source-path-card small {
  display: block;
  color: inherit;
  opacity: .76;
  font-size: 14px;
  line-height: 1.45;
}

.immersive-builder {
  background:
    radial-gradient(circle at 15% 12%, rgba(215,25,32,0.12), transparent 28%),
    #0c0c0d;
  color: white;
}

.immersive-builder-grid,
.source-proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.immersive-builder .eyebrow { color: var(--yellow); }
.immersive-builder p { color: rgba(255,255,255,0.78); }

.app-controls {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.app-controls label {
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 14px;
}

.app-controls input,
.app-controls select {
  margin-top: 8px;
}

.app-profile-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(246,247,249,0.98));
  color: #111;
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.75);
}

.source-proof {
  background:
    linear-gradient(180deg, #fff, #f5f6f8);
}

.proof-card-stack {
  min-height: 430px;
  position: relative;
}

.proof-match-card {
  position: absolute;
  width: min(420px, 90%);
  border-radius: 26px;
  padding: 24px;
  background: #111827;
  color: white;
  box-shadow: 0 30px 75px rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.10);
}

.proof-one { top: 0; left: 0; transform: rotate(-4deg); }
.proof-two { top: 112px; right: 0; transform: rotate(3deg); background: linear-gradient(145deg, #d71920, #7f0c10); }
.proof-three { top: 238px; left: 12%; transform: rotate(-1deg); background: linear-gradient(145deg, #ffffff, #f4f6f8); color: #111; }

.proof-match-card h3 { margin-top: 14px; }
.proof-match-card p { margin-bottom: 0; opacity: .85; }

.app-roadmap .roadmap-step {
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.app-roadmap .roadmap-step.is-active {
  transform: translateY(-6px);
}

.magnet-btn { position: relative; overflow: hidden; }
.magnet-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-130%);
}
.magnet-btn:hover::after { animation: buttonShine .75s ease; }

.mobile-cta-bar a:last-child { font-size: 0; }
.mobile-cta-bar a:last-child::after { content: "Start Request"; font-size: 16px; }

body { padding-bottom: 0; }
@media (max-width: 720px) {
  body { padding-bottom: 74px; }
  .mobile-cta-bar { box-shadow: 0 -12px 34px rgba(0,0,0,0.22); }
}

.safe-celebration-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  left: 50%;
  top: 50%;
  z-index: 99999;
  pointer-events: none;
  background: var(--yellow);
  animation: celebrate .8s ease-out forwards;
}

@keyframes orbFloat {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(30px,-22px,0) scale(1.08); }
}

@keyframes scanLine {
  from { transform: translateX(-20%) rotate(-18deg); }
  to { transform: translateX(145%) rotate(-18deg); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 7px rgba(22,163,74,0.14); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 12px rgba(22,163,74,0.07); }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes buttonShine {
  to { transform: translateX(130%); }
}

@keyframes celebrate {
  to { transform: translate(var(--tx), var(--ty)) scale(0.4); opacity: 0; }
}

@media (max-width: 1050px) {
  .experience-hero-grid,
  .immersive-builder-grid,
  .source-proof-grid {
    grid-template-columns: 1fr;
  }
  .source-path-grid { grid-template-columns: repeat(2, 1fr); }
  .live-room-console { max-width: 620px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .experience-hero { min-height: auto; padding-top: 64px; }
  .experience-copy h1 { font-size: clamp(38px, 11vw, 54px); }
  .source-path-grid { grid-template-columns: 1fr; }
  .source-path-card { min-height: 165px; }
  .room-phone { min-height: auto; padding: 18px; }
  .room-line { display: grid; gap: 4px; }
  .room-line strong { max-width: none; text-align: left; }
  .proof-card-stack { min-height: auto; display: grid; gap: 16px; }
  .proof-match-card { position: static; width: 100%; transform: none; }
}

@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;
  }
}


/* Effortless SafeSource flow update */

.effortless-flow {
  background: linear-gradient(180deg, #ffffff, #f7f8fa);
}

.effortless-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.effortless-flow-card {
  background: white;
  border: 1px solid #e8eaee;
  border-top: 5px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.effortless-flow-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.effortless-flow-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: white;
  font-weight: 900;
  margin-bottom: 16px;
}

.effortless-flow-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.effortless-flow-card p {
  margin-bottom: 0;
  color: #444;
}

.flow-cta-card {
  margin-top: 22px;
  background:
    radial-gradient(circle at top right, rgba(255,212,0,0.18), transparent 32%),
    var(--dark-gradient);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-heavy);
}

.flow-cta-card strong {
  font-size: 22px;
}

/* Compact bridge */
.compact-source-bridge {
  background: #ffffff;
  padding-top: 48px;
  padding-bottom: 48px;
}

.compact-source-card {
  background: var(--chrome-gradient);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-medium);
}

.compact-source-card h2 {
  margin-bottom: 8px;
}

.compact-source-card p {
  margin: 0;
  max-width: 680px;
}

.compact-source-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Guided SafeSource form */
.guided-form-bar {
  max-width: 980px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: sticky;
  top: 112px;
  z-index: 20;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}

.guided-step {
  border: 0;
  border-radius: 14px;
  padding: 10px 8px;
  background: white;
  color: #334155;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
}

.guided-step span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e5e7eb;
  color: #111827;
  font-size: 12px;
}

.guided-step.is-active {
  background: var(--black);
  color: white;
}

.guided-step.is-active span {
  background: var(--yellow);
  color: var(--black);
}

.guided-step.is-done {
  background: #ecfdf5;
  color: #047857;
}

.guided-step.is-suggested:not(.is-active):not(.is-done) {
  box-shadow: inset 0 0 0 2px rgba(215,25,32,0.18);
}

.guided-form-ready .lead-form [data-form-step] {
  display: none;
}

.guided-form-ready .lead-form [data-form-step].is-current-step {
  display: block;
  animation: guidedStepIn 0.26s ease both;
}

@keyframes guidedStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.guided-form-controls {
  max-width: 980px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 10px;
}

.guided-form-controls .btn {
  min-width: 128px;
}

.guided-form-ready .lead-form > button[type="submit"],
.guided-form-ready .lead-form > .form-note {
  display: none;
}

.guided-form-ready .lead-form > button[type="submit"].is-visible-submit {
  display: inline-flex;
}

.guided-form-ready .lead-form > .form-note.is-visible-note {
  display: block;
}

.simplified-form-intro {
  margin-bottom: 18px;
}

.source-path-card,
.vehicle-card,
.effortless-flow-card,
.room-phone {
  will-change: transform;
}

@media (max-width: 900px) {
  .effortless-flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-cta-card,
  .compact-source-card {
    grid-template-columns: 1fr;
  }

  .guided-form-bar {
    top: 96px;
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(116px, 1fr));
    scrollbar-width: none;
  }

  .guided-form-bar::-webkit-scrollbar {
    display: none;
  }

  .guided-step {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .guided-form-bar {
    width: min(100%, 92vw);
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
  }

  .guided-form-controls {
    flex-direction: column;
  }

  .guided-form-controls .btn {
    width: 100%;
  }
}

@media print {
  .mobile-cta-bar,
  .site-header,
  .guided-form-bar {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }
}


/* SafeSource path card visibility + metallic hover restore
   Text stays visible by default. Hover/tap brings back the chrome silver grow effect. */
.source-path-card {
  color: #111 !important;
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.08), transparent 36%),
    linear-gradient(180deg, #ffffff, #f8fafc) !important;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.source-path-card::before,
.source-path-card::after {
  pointer-events: none;
}

.source-path-card span,
.source-path-card strong,
.source-path-card small {
  position: relative;
  z-index: 2;
}

.source-path-card strong {
  color: #111 !important;
}

.source-path-card small {
  color: #475569 !important;
}

.source-path-card > span:first-child {
  background: linear-gradient(180deg, #ef272e, var(--red));
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(215,25,32,0.22);
}

.source-path-card:hover,
.source-path-card:focus-visible,
.source-path-card.is-selected {
  color: #111 !important;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.92), transparent 28%),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #edf0f3 16%,
      #c9ced5 34%,
      #f8fafc 52%,
      #aeb4bc 72%,
      #ffffff 100%
    ) !important;
  border-color: #f8fafc;
  transform: translateY(-6px) scale(1.035);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(93,102,112,0.18),
    0 22px 46px rgba(0,0,0,0.18);
}

.source-path-card:hover::after,
.source-path-card:focus-visible::after,
.source-path-card.is-selected::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255,255,255,0.48) 44%,
      transparent 58%
    );
  transform: translateX(-120%);
  animation: sourceCardChromeSweep 1.15s ease forwards;
  z-index: 1;
}

.source-path-card:hover strong,
.source-path-card:focus-visible strong,
.source-path-card.is-selected strong {
  color: #050505 !important;
}

.source-path-card:hover small,
.source-path-card:focus-visible small,
.source-path-card.is-selected small {
  color: #1f2937 !important;
}

.source-path-card:hover > span:first-child,
.source-path-card:focus-visible > span:first-child,
.source-path-card.is-selected > span:first-child {
  background: var(--black);
  color: var(--yellow) !important;
}

@keyframes sourceCardChromeSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .source-path-card,
  .source-path-card:hover,
  .source-path-card:focus-visible,
  .source-path-card.is-selected {
    transition: none;
    transform: none;
  }

  .source-path-card:hover::after,
  .source-path-card:focus-visible::after,
  .source-path-card.is-selected::after {
    animation: none;
  }
}


/* SafeSource Request Builder contrast fix
   Keeps the white preview card readable on all screens. */
.app-profile-card,
.lab-card.app-profile-card {
  color: #111827 !important;
}

.app-profile-card .lab-card-topline span,
.lab-card.app-profile-card .lab-card-topline span {
  color: #4b5563 !important;
  opacity: 1 !important;
}

.app-profile-card h3,
.lab-card.app-profile-card h3,
#labProfileTitle {
  color: #050505 !important;
}

.app-profile-card p,
.lab-card.app-profile-card p,
#labProfileText {
  color: #374151 !important;
  opacity: 1 !important;
}

.app-profile-card .dna-row span,
.lab-card.app-profile-card .dna-row span {
  color: #4b5563 !important;
  opacity: 1 !important;
}

.app-profile-card .lab-next-step,
.lab-card.app-profile-card .lab-next-step {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.app-profile-card .lab-next-step strong,
.lab-card.app-profile-card .lab-next-step strong {
  color: #111827 !important;
}

.app-profile-card .lab-next-step span,
.lab-card.app-profile-card .lab-next-step span,
#labNextQuestion {
  color: #374151 !important;
  opacity: 1 !important;
}

.app-profile-card .dna-row div,
.lab-card.app-profile-card .dna-row div {
  background: #e5e7eb !important;
}

/* Additional safety for any light cards using faint white text */
.lab-card,
.live-room-console,
.room-phone {
  --muted-readable: #4b5563;
}

.lab-card .range-caption,
.app-profile-card .range-caption {
  color: #4b5563 !important;
}

@media (max-width: 900px) {
  .app-profile-card p,
  .lab-card.app-profile-card p,
  #labProfileText,
  #labNextQuestion {
    color: #374151 !important;
  }
}


/* SafeSource Request Builder dropdown sizing fix
   Gives the select controls enough room to show full option text. */
.immersive-builder .app-controls,
.immersive-builder .lab-controls {
  grid-template-columns: minmax(220px, 1.1fr) minmax(220px, 1fr) minmax(220px, 1.1fr);
  align-items: stretch;
}

.immersive-builder .app-controls label,
.immersive-builder .lab-controls label {
  min-width: 0;
}

.immersive-builder .app-controls select,
.immersive-builder .lab-controls select {
  width: 100%;
  min-width: 180px;
  max-width: none;
  white-space: normal;
  text-overflow: clip;
  padding-right: 38px;
  font-size: 16px;
}

.immersive-builder .app-controls input[type="range"],
.immersive-builder .lab-controls input[type="range"] {
  width: 100%;
}

@media (max-width: 980px) {
  .immersive-builder .app-controls,
  .immersive-builder .lab-controls {
    grid-template-columns: 1fr;
  }

  .immersive-builder .app-controls select,
  .immersive-builder .lab-controls select {
    min-width: 100%;
  }
}


/* SafeSource Request Builder "How soon?" dropdown extra room */
.immersive-builder .app-controls,
.immersive-builder .lab-controls {
  grid-template-columns: minmax(230px, 1fr) minmax(230px, 1fr) minmax(300px, 1.25fr);
}

.immersive-builder .app-controls label:nth-child(3),
.immersive-builder .lab-controls label:nth-child(3) {
  min-width: 300px;
}

.immersive-builder .app-controls label:nth-child(3) select,
.immersive-builder .lab-controls label:nth-child(3) select {
  min-width: 260px;
  font-size: 15px;
  line-height: 1.15;
}

@media (max-width: 980px) {
  .immersive-builder .app-controls,
  .immersive-builder .lab-controls {
    grid-template-columns: 1fr;
  }

  .immersive-builder .app-controls label:nth-child(3),
  .immersive-builder .lab-controls label:nth-child(3),
  .immersive-builder .app-controls label:nth-child(3) select,
  .immersive-builder .lab-controls label:nth-child(3) select {
    min-width: 100%;
  }
}


/* Premium SafeSource Request visual milestone
   Bigger animated logo, stronger depth, and more "alive" visual polish. */

/* Bigger, animated logo */
.nav {
  min-height: 104px;
}

.logo img {
  width: 275px;
  max-height: 92px;
  transform-origin: center;
  animation: ysasLogoGlow 4.8s ease-in-out infinite;
}

.logo:hover img,
.logo:focus-visible img {
  transform: scale(1.045);
  filter:
    drop-shadow(0 4px 10px rgba(255,255,255,0.34))
    drop-shadow(0 16px 30px rgba(215,25,32,0.34));
}

@keyframes ysasLogoGlow {
  0%, 100% {
    filter:
      drop-shadow(0 3px 8px rgba(255,255,255,0.22))
      drop-shadow(0 10px 18px rgba(0,0,0,0.45));
  }
  50% {
    filter:
      drop-shadow(0 5px 14px rgba(255,255,255,0.42))
      drop-shadow(0 18px 34px rgba(215,25,32,0.32));
  }
}

/* More cinematic hero without changing the HTML */
.experience-hero {
  min-height: calc(100vh - 104px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 10% 15%, rgba(255,212,0,0.18), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(215,25,32,0.36), transparent 32%),
    radial-gradient(circle at 58% 78%, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, #050505 0%, #10080a 45%, #050505 100%);
}

.experience-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.08) 44%, transparent 54%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.026) 0 1px,
      transparent 1px 72px
    );
  opacity: 0.55;
  pointer-events: none;
  animation: heroLightSweep 7.5s ease-in-out infinite;
}

@keyframes heroLightSweep {
  0%, 100% {
    transform: translateX(-2%);
    opacity: 0.38;
  }
  50% {
    transform: translateX(2%);
    opacity: 0.68;
  }
}

/* Make the main headline feel more premium */
.experience-copy h1 {
  text-shadow:
    0 2px 0 rgba(0,0,0,0.35),
    0 18px 38px rgba(0,0,0,0.42);
}

.experience-copy .hero-text {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 10px 26px rgba(0,0,0,0.42);
}

/* High-end CTA treatment */
.btn.primary {
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255,255,255,0.34) 45%,
      transparent 58%
    );
  transform: translateX(-140%);
  transition: transform 0.65s ease;
}

.btn.primary:hover::after,
.btn.primary:focus-visible::after {
  transform: translateX(140%);
}

/* Make the room definition card feel intentional */
.room-definition-card {
  border-color: rgba(255,255,255,0.28);
  background:
    radial-gradient(circle at top right, rgba(255,212,0,0.13), transparent 34%),
    rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
}

/* Premium SafeSource Request preview card */
.live-room-console {
  transform-style: preserve-3d;
  box-shadow:
    0 34px 80px rgba(0,0,0,0.52),
    0 0 0 1px rgba(255,255,255,0.12);
}

.live-room-console:hover {
  transform: translateY(-5px);
}

.room-phone {
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.12), transparent 32%),
    linear-gradient(180deg, #ffffff, #f6f7f9);
}

.room-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      130deg,
      transparent 0%,
      rgba(255,255,255,0.52) 42%,
      transparent 54%
    );
  transform: translateX(-130%);
  animation: roomGlassSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes roomGlassSweep {
  0%, 72%, 100% {
    transform: translateX(-130%);
  }
  86% {
    transform: translateX(130%);
  }
}

.room-progress-ring {
  box-shadow:
    0 18px 34px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.94);
}

/* Make the path cards feel touchable, not flat */
.source-path-card {
  min-height: 190px;
}

.source-path-card strong {
  font-size: 21px;
}

.source-path-card small {
  font-size: 15px;
  line-height: 1.45;
}

/* Give the builder cards more luxury product feel */
.immersive-builder {
  background:
    radial-gradient(circle at 15% 15%, rgba(215,25,32,0.16), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(255,212,0,0.1), transparent 22%),
    linear-gradient(180deg, #050505, #101010);
}

.app-controls label,
.lab-controls label {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 38px rgba(0,0,0,0.28);
}

.app-profile-card {
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 34px 80px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

/* Make important sections feel more spaced and premium */
.effortless-flow-card,
.vehicle-card,
.experience-card,
.step,
.info-box,
.lead-form {
  box-shadow:
    0 22px 55px rgba(15,23,42,0.12),
    0 1px 0 rgba(255,255,255,0.75);
}

/* More elegant form experience */
.guided-form-bar {
  box-shadow:
    0 18px 42px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.guided-step.is-active {
  background:
    radial-gradient(circle at top right, rgba(255,212,0,0.16), transparent 30%),
    #050505;
}

.lead-form {
  border-top-color: var(--red);
}

/* Premium mobile treatment */
@media (max-width: 1050px) {
  .logo img {
    width: 245px;
    max-height: 84px;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 94px;
  }

  .logo img {
    width: 225px;
    max-height: 76px;
  }

  .experience-hero {
    min-height: auto;
  }

  .source-path-card {
    min-height: 170px;
  }
}

@media (max-width: 520px) {
  .logo img {
    width: 205px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo img,
  .experience-hero::after,
  .room-phone::after {
    animation: none !important;
  }
}


/* Bigger logo without growing the header band
   The logo visually scales up, while the nav/menu alignment stays stable. */
.site-header {
  overflow: visible;
}

.nav {
  min-height: 104px;
}

.logo {
  position: relative;
  z-index: 2;
  margin: -8px 0;
}

.logo img {
  width: 330px;
  max-height: 112px;
  object-fit: contain;
}

.nav-links,
.header-actions {
  position: relative;
  z-index: 3;
}

@media (max-width: 1150px) {
  .logo img {
    width: 300px;
    max-height: 104px;
  }

  .nav-links {
    gap: 14px;
    font-size: 14px;
  }
}

@media (max-width: 1050px) {
  .logo img {
    width: 275px;
    max-height: 96px;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 94px;
  }

  .logo {
    margin: -4px 0;
  }

  .logo img {
    width: 245px;
    max-height: 84px;
  }
}

@media (max-width: 520px) {
  .logo img {
    width: 220px;
    max-height: 78px;
  }
}


/* Clean desktop header layout after larger logo
   Keeps the logo prominent without making the menu wrap or look scattered. */
@media (min-width: 901px) {
  .site-header {
    overflow: visible;
  }

  .nav {
    min-height: 96px;
    display: grid;
    grid-template-columns: 280px minmax(560px, 1fr) auto;
    align-items: center;
    gap: 24px;
  }

  .logo {
    margin: -6px 0;
    justify-self: start;
  }

  .logo img {
    width: 255px;
    max-height: 92px;
    object-fit: contain;
  }

  .nav-links {
    justify-self: center;
    justify-content: center;
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(14px, 1.35vw, 24px);
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1;
  }

  .nav-links a {
    white-space: nowrap;
    padding: 10px 0;
    line-height: 1;
  }

  .header-actions {
    justify-self: end;
  }

  .phone-btn {
    padding: 12px 18px;
    line-height: 1;
  }
}

@media (min-width: 901px) and (max-width: 1220px) {
  .nav {
    grid-template-columns: 235px minmax(500px, 1fr) auto;
    gap: 18px;
  }

  .logo img {
    width: 225px;
    max-height: 84px;
  }

  .nav-links {
    gap: 13px;
    font-size: 13px;
  }

  .phone-btn {
    padding: 11px 15px;
    font-size: 14px;
  }
}

@media (min-width: 1221px) {
  .nav-links a[href="#find"] {
    min-width: 88px;
    text-align: center;
  }
}


/* XL logo pass without breaking the desktop menu
   The logo gets much larger visually, while the menu stays centered and single-line. */
@media (min-width: 1280px) {
  .site-header {
    overflow: visible;
  }

  .nav {
    min-height: 104px;
    grid-template-columns: 430px minmax(610px, 1fr) auto;
    gap: 24px;
  }

  .logo {
    margin: -32px 0 -34px;
    align-self: center;
  }

  .logo img {
    width: 430px;
    max-height: 168px;
    object-fit: contain;
  }

  .nav-links {
    justify-self: center;
    flex-wrap: nowrap;
    gap: clamp(14px, 1.15vw, 22px);
    font-size: 14px;
    line-height: 1;
  }

  .nav-links a {
    white-space: nowrap;
    line-height: 1;
  }

  .header-actions {
    justify-self: end;
  }
}

@media (min-width: 1120px) and (max-width: 1279px) {
  .nav {
    min-height: 100px;
    grid-template-columns: 340px minmax(540px, 1fr) auto;
    gap: 18px;
  }

  .logo {
    margin: -20px 0 -22px;
  }

  .logo img {
    width: 340px;
    max-height: 136px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .phone-btn {
    padding: 11px 14px;
    font-size: 14px;
  }
}

@media (min-width: 901px) and (max-width: 1119px) {
  .nav {
    min-height: 94px;
    grid-template-columns: 260px minmax(460px, 1fr) auto;
    gap: 14px;
  }

  .logo {
    margin: -10px 0 -12px;
  }

  .logo img {
    width: 260px;
    max-height: 104px;
  }

  .nav-links {
    gap: 10px;
    font-size: 12px;
  }

  .phone-btn {
    padding: 10px 12px;
    font-size: 13px;
  }
}


/* Final premium header balance
   Replaces the oversized floating-logo look with a clean dealership-app header.
   The logo is bigger than the original, but contained so it does not collide with the hero or menu. */
@media (min-width: 901px) {
  .site-header {
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
      linear-gradient(180deg, #111111, #050505);
  }

  .nav {
    min-height: 112px !important;
    display: grid !important;
    grid-template-columns: 260px minmax(620px, 1fr) auto !important;
    align-items: center !important;
    gap: 26px !important;
    width: min(1340px, 92%) !important;
  }

  .logo {
    width: 260px !important;
    height: 112px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .logo::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 13px;
    width: 220px;
    height: 86px;
    border-radius: 24px;
    background:
      radial-gradient(circle at center, rgba(215,25,32,0.18), transparent 62%),
      rgba(255,255,255,0.035);
    filter: blur(2px);
    opacity: 0.9;
    pointer-events: none;
  }

  .logo img {
    width: 235px !important;
    max-width: 235px !important;
    max-height: 98px !important;
    object-fit: contain !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    transform: none !important;
  }

  .logo:hover img,
  .logo:focus-visible img {
    transform: scale(1.035) !important;
  }

  .nav-links {
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.045) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 14px 34px rgba(0,0,0,0.22) !important;
  }

  .nav-links a {
    white-space: nowrap !important;
    line-height: 1 !important;
    padding: 10px 13px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    opacity: 0.96 !important;
    transition:
      background 0.18s ease,
      color 0.18s ease,
      transform 0.18s ease,
      box-shadow 0.18s ease !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--chrome-gradient) !important;
    color: #050505 !important;
    transform: translateY(-1px) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.86) !important;
  }

  .header-actions {
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
  }

  .phone-btn {
    padding: 13px 21px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    min-width: 168px !important;
    justify-content: center !important;
  }

  .experience-hero {
    min-height: calc(100vh - 112px) !important;
  }
}

@media (min-width: 1120px) and (max-width: 1310px) {
  .nav {
    grid-template-columns: 230px minmax(560px, 1fr) auto !important;
    gap: 18px !important;
  }

  .logo {
    width: 230px !important;
  }

  .logo::before {
    width: 200px;
  }

  .logo img {
    width: 210px !important;
    max-width: 210px !important;
    max-height: 90px !important;
  }

  .nav-links a {
    padding: 9px 10px !important;
    font-size: 13px !important;
  }

  .phone-btn {
    min-width: 150px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
  }
}

@media (min-width: 901px) and (max-width: 1119px) {
  .nav {
    min-height: 100px !important;
    grid-template-columns: 190px minmax(480px, 1fr) auto !important;
    gap: 14px !important;
  }

  .logo {
    width: 190px !important;
    height: 100px !important;
  }

  .logo::before {
    width: 172px;
    height: 76px;
    top: 12px;
  }

  .logo img {
    width: 178px !important;
    max-width: 178px !important;
    max-height: 82px !important;
  }

  .nav-links {
    padding: 7px 8px !important;
  }

  .nav-links a {
    padding: 9px 8px !important;
    font-size: 12px !important;
  }

  .phone-btn {
    min-width: 134px !important;
    padding: 11px 12px !important;
    font-size: 13px !important;
  }

  .experience-hero {
    min-height: calc(100vh - 100px) !important;
  }
}

/* Keep the mobile header from inheriting the oversized desktop logo rules. */
@media (max-width: 900px) {
  .logo {
    margin: 0 !important;
  }

  .logo::before {
    display: none !important;
  }

  .logo img {
    width: 220px !important;
    max-width: 220px !important;
    max-height: 76px !important;
    object-fit: contain !important;
  }
}


/* Mobile rescue pass
   Desktop logo/menu polish stays intact, but mobile is reset to a clean contained layout. */
@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .site-header {
    overflow: visible !important;
  }

  .nav {
    width: min(100% - 32px, 520px) !important;
    min-height: 82px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: auto 48px !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    gap: 10px 12px !important;
    padding: 8px 0 !important;
  }

  .logo {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo::before {
    display: none !important;
  }

  .logo img {
    width: 120px !important;
    max-width: 120px !important;
    max-height: 58px !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .nav-toggle {
    display: block !important;
    justify-self: end !important;
    width: 44px !important;
    height: 42px !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    z-index: 260 !important;
  }

  body.nav-open .nav-toggle {
    position: fixed !important;
    right: 18px !important;
    top: 18px !important;
  }

  .header-actions {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    justify-self: stretch !important;
  }

  .phone-btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(285px, 78vw) !important;
    height: 100dvh !important;
    transform: translateX(105%) !important;
    background: linear-gradient(180deg, #151515, #050505) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 88px 18px 24px !important;
    box-shadow: -18px 0 40px rgba(0,0,0,0.38) !important;
    border-left: 3px solid var(--steel-mid) !important;
    transition: transform 0.25s ease !important;
    z-index: 240 !important;
    overflow-y: auto !important;
  }

  body.nav-open .nav-links {
    transform: translateX(0) !important;
    right: 0 !important;
  }

  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 15px 8px !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255,255,255,0.08) !important;
    color: var(--yellow) !important;
    transform: none !important;
  }

  .experience-hero,
  .hero {
    min-height: auto !important;
    padding: 44px 0 54px !important;
    overflow: hidden !important;
  }

  .experience-hero-grid,
  .hero-grid,
  .immersive-builder-grid,
  .source-proof-grid,
  .finder-grid,
  .service-area-grid,
  .split-grid,
  .contact-grid,
  .quick-contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 28px !important;
  }

  .experience-copy,
  .hero-content,
  .live-room-console,
  .room-phone,
  .app-profile-card,
  .lab-card,
  .lead-form,
  .form-intro-card,
  .guided-form-bar {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .live-room-console {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .room-phone {
    width: 100% !important;
  }

  .container {
    width: min(100% - 32px, 520px) !important;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 1.05 !important;
  }

  h2 {
    font-size: clamp(27px, 8vw, 38px) !important;
  }

  .hero-actions .btn,
  .quick-contact-actions .btn,
  .compact-source-actions .btn {
    width: 100% !important;
  }

  .mobile-cta-bar {
    z-index: 220 !important;
  }
}

@media (max-width: 480px) {
  .nav {
    width: calc(100% - 28px) !important;
  }

  .container {
    width: calc(100% - 28px) !important;
  }

  .nav-links {
    width: min(270px, 76vw) !important;
  }

  .logo img {
    width: 108px !important;
    max-width: 108px !important;
    max-height: 54px !important;
  }

  .phone-btn {
    font-size: 13px !important;
  }
}


/* Mobile guided form steps: show all 5 steps at once */
@media (max-width: 640px) {
  .guided-form-bar {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 4px !important;
    overflow-x: visible !important;
    padding: 6px !important;
    width: min(100%, calc(100vw - 28px)) !important;
  }

  .guided-step {
    min-width: 0 !important;
    min-height: 44px !important;
    padding: 7px 3px !important;
    gap: 3px !important;
    font-size: 10px !important;
    line-height: 1.05 !important;
    white-space: normal !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  .guided-step span {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 420px) {
  .guided-step {
    font-size: 9.5px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .guided-step span {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
  }
}



/* Final partner-demo polish: SafeSource Request naming, example match card, and cleaner mobile form controls */
.premium-match-showcase {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f5f6f8 56%, #ffffff);
}

.premium-match-showcase .section-heading {
  margin-bottom: 0;
}

.room-proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.room-proof-points div {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 5px solid var(--red);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.08);
}

.room-proof-points strong,
.room-proof-points span {
  display: block;
}

.room-proof-points strong {
  font-size: 16px;
  margin-bottom: 4px;
}

.room-proof-points span {
  color: #475569;
  font-size: 14px;
  line-height: 1.4;
}

.example-match-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at top right, rgba(255,212,0,0.14), transparent 34%),
    linear-gradient(145deg, #111827, #050505 72%);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 90px rgba(0,0,0,0.32);
}

.example-match-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent, rgba(255,255,255,0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 56px);
  pointer-events: none;
}

.example-match-card > * {
  position: relative;
  z-index: 1;
}

.example-match-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.example-match-topline span,
.example-match-topline strong {
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.example-match-topline span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
}

.example-match-topline strong {
  background: var(--yellow);
  color: #111111;
}

.example-match-visual {
  position: relative;
  height: 190px;
  border-radius: 24px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 50% 100%, rgba(215,25,32,0.38), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,0.17), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.example-match-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.22) 45%, transparent 58%);
  transform: translateX(-125%);
  animation: roomGlassSweep 6.2s ease-in-out infinite;
}

.example-suv-shape {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 40px;
  height: 74px;
  border-radius: 42px 58px 20px 20px;
  background:
    radial-gradient(circle at 20% 92%, #050505 0 13%, #c8ccd2 14% 20%, transparent 21%),
    radial-gradient(circle at 80% 92%, #050505 0 13%, #c8ccd2 14% 20%, transparent 21%),
    linear-gradient(145deg, #f8fafc 0%, #c8ccd2 42%, #777f8a 100%);
  box-shadow: 0 24px 42px rgba(0,0,0,0.34);
}

.example-suv-shape::before {
  content: "";
  position: absolute;
  left: 22%;
  top: -34px;
  width: 48%;
  height: 48px;
  border-radius: 28px 34px 8px 8px;
  background: linear-gradient(135deg, #f8fafc, #9ca3af);
  clip-path: polygon(12% 100%, 25% 0, 78% 0, 96% 100%);
}

.example-match-card h3 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}

.example-match-subtitle {
  color: rgba(255,255,255,0.72);
  margin-top: 0;
}

.example-match-details {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.example-match-details div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  padding: 14px;
}

.example-match-details span {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 4px;
}

.example-match-details p {
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.example-match-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.example-match-action {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 12px 10px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.example-match-action:hover,
.example-match-action:focus-visible,
.example-match-action.is-selected {
  background: var(--chrome-gradient);
  color: #050505;
  transform: translateY(-2px);
}

.example-action-result {
  margin: 14px 0 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,212,0,0.12);
  border: 1px solid rgba(255,212,0,0.2);
  color: rgba(255,255,255,0.88);
  font-weight: 800;
}

.lead-form > button[type="submit"] {
  margin-top: 18px;
}

.guided-form-controls {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.10);
}

@media (max-width: 900px) {
  .premium-match-showcase .source-proof-grid {
    grid-template-columns: 1fr !important;
  }

  .room-proof-points,
  .example-match-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .guided-form-controls {
    position: sticky;
    bottom: 84px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .guided-form-controls .btn {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .guided-form-controls .guided-back[hidden] {
    display: none !important;
  }

  .guided-form-controls .guided-back[hidden] + .guided-next {
    grid-column: 1 / -1;
  }

  .lead-form > button[type="submit"].is-visible-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 18px;
    border-radius: 16px;
  }

  .form-note.is-visible-note {
    text-align: center;
    margin-bottom: 0;
  }

  .mobile-cta-bar a:last-child::after {
    content: "Start Request" !important;
  }
}


/* Buyer-first final conversion pass */
.buyer-need-strip .hero-live-chip {
  white-space: normal;
}

.buyer-need-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.buyer-need-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(215,25,32,0.14);
  border-left: 5px solid var(--red);
  border-radius: 14px;
  color: #161616;
  font-weight: 900;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
}

.buyer-need-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(215,25,32,0.10);
}

.room-does-strip {
  padding: 58px 0;
}

.room-does-strip .compact-heading {
  margin-bottom: 28px;
}

.room-does-strip .trust-strip-grid div {
  min-height: 150px;
}

.premium-match-showcase {
  border-bottom: 1px solid #e7e9ed;
}

.premium-match-showcase .btn {
  margin-top: 4px;
}

@media (max-width: 640px) {
  .buyer-need-list span {
    font-size: 14px;
  }

  .room-does-strip {
    padding: 44px 0;
  }

  .guided-form-controls {
    bottom: 76px;
    padding: 8px;
    border-radius: 16px;
  }

  .guided-form-controls .btn {
    min-height: 52px;
  }
}


/* ---------------------------------------------------------
   Final contrast clarity pass
   Purpose: stop white cards from disappearing into white sections.
   This adds stronger section bands, clearer card borders, and better
   image wells without changing the SafeSource Request flow.
--------------------------------------------------------- */

:root {
  --section-contrast: #eef2f7;
  --section-contrast-strong: #e5eaf1;
  --card-border-strong: #cbd5e1;
  --card-border-soft: #d9e0ea;
  --card-shadow-contrast: 0 22px 55px rgba(15, 23, 42, 0.13);
}

/* Give light sections their own surface so white cards read as cards. */
.premium-match-showcase {
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.09), transparent 32%),
    linear-gradient(180deg, #eef2f7 0%, #ffffff 48%, #eef2f7 100%) !important;
  border-top: 1px solid var(--card-border-soft);
  border-bottom: 1px solid var(--card-border-strong) !important;
}

.safesource-app {
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.07), transparent 30%),
    linear-gradient(180deg, #e7ecf3 0%, #f7f9fb 52%, #edf1f6 100%) !important;
  border-top: 1px solid var(--card-border-soft);
  border-bottom: 1px solid var(--card-border-strong);
}

#inventory.section,
.better-experience,
.form-section {
  background:
    linear-gradient(180deg, #e9eef5 0%, #f6f8fb 48%, #e9eef5 100%) !important;
  border-top: 1px solid var(--card-border-soft);
  border-bottom: 1px solid var(--card-border-strong);
}

#trade.section {
  background:
    linear-gradient(180deg, #f7f9fb 0%, #e9eef5 100%) !important;
  border-top: 1px solid var(--card-border-soft);
}

#financing.section.split {
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f4f8 100%) !important;
  border-top: 1px solid var(--card-border-soft);
  border-bottom: 1px solid var(--card-border-soft);
}

/* Make the "What Your SafeSource Request Does" band feel intentionally different. */
.room-does-strip {
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.18), transparent 34%),
    linear-gradient(145deg, #080808 0%, #151515 54%, #250609 100%) !important;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.room-does-strip .eyebrow {
  color: var(--yellow) !important;
}

.room-does-strip h2,
.room-does-strip .section-heading p {
  color: #ffffff !important;
}

.room-does-strip .section-heading p {
  opacity: 0.88;
}

.room-does-strip .trust-strip-grid div {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%) !important;
  border: 1px solid rgba(255,255,255,0.42) !important;
  border-left: 6px solid var(--red) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28) !important;
}

/* Stronger card edges throughout light sections. */
.source-path-card,
.vehicle-card,
.experience-card,
.info-box,
.form-intro-card div,
.lead-form,
.form-block,
.buyer-need-list span,
.service-area-list span {
  border-color: var(--card-border-strong) !important;
  box-shadow: var(--card-shadow-contrast) !important;
}

.source-path-card,
.vehicle-card,
.experience-card,
.form-intro-card div,
.form-block {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%) !important;
}

.source-path-card {
  border-width: 1.5px !important;
  border-top: 4px solid #d7dde6 !important;
}

.source-path-card:hover,
.source-path-card.is-selected {
  border-color: rgba(215,25,32,0.62) !important;
  border-top-color: var(--red) !important;
}

.buyer-need-list span {
  background: #ffffff !important;
  border-left: 6px solid var(--red) !important;
}

/* Inventory: separate the white vehicle images from the white cards. */
.vehicle-card {
  border: 1.5px solid var(--card-border-strong) !important;
  border-top: 6px solid #aeb7c4 !important;
  box-shadow: 0 26px 64px rgba(15,23,42,0.15) !important;
}

.vehicle-card:hover {
  border-top-color: var(--red) !important;
  box-shadow: 0 32px 76px rgba(15,23,42,0.21) !important;
}

.vehicle-photo {
  background:
    radial-gradient(circle at center, #ffffff 0%, #f7f9fc 54%, #e4eaf1 100%) !important;
  border: 1px solid var(--card-border-soft) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.74),
    0 14px 32px rgba(15,23,42,0.08) !important;
  padding: 18px;
}

/* Premium example card and its left-side concern pills need clearer separation. */
.source-proof-grid {
  align-items: center;
}

.premium-match-showcase .section-heading {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(203,213,225,0.72);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.10);
  backdrop-filter: blur(10px);
}

.example-match-card {
  border: 1px solid rgba(255,255,255,0.20) !important;
  box-shadow: 0 38px 95px rgba(0,0,0,0.40) !important;
}

.example-match-details div,
.example-action-result,
.example-match-action {
  border-color: rgba(255,255,255,0.22) !important;
}

/* Service area becomes a clear contrast band instead of another pale area. */
.service-area {
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.16), transparent 32%),
    linear-gradient(145deg, #111827 0%, #050505 82%) !important;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.12) !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

.service-area .eyebrow {
  color: var(--yellow);
}

.service-area p {
  color: rgba(255,255,255,0.84);
}

.service-area-list span {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24) !important;
}

/* Form: make the outer form a tinted panel and the inner steps distinct. */
.lead-form {
  background:
    linear-gradient(180deg, #f1f5f9 0%, #e7edf5 100%) !important;
  border: 1.5px solid var(--card-border-strong) !important;
  border-top: 7px solid #8f9aa8 !important;
  box-shadow: 0 30px 78px rgba(15,23,42,0.16) !important;
}

.form-block {
  border: 1px solid var(--card-border-soft) !important;
  border-left: 6px solid var(--red) !important;
}

.guided-form-bar,
.guided-form-controls {
  border: 1.5px solid var(--card-border-strong) !important;
  box-shadow: 0 18px 45px rgba(15,23,42,0.14) !important;
}

input,
select,
textarea {
  border-color: #b8c2cf !important;
  background: #ffffff !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(215,25,32,0.14) !important;
  outline: none !important;
}

/* Better mobile contrast where stacked cards used to blend together. */
@media (max-width: 760px) {
  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .premium-match-showcase .section-heading {
    background: #ffffff;
  }

  .vehicle-card,
  .source-path-card,
  .experience-card,
  .info-box,
  .form-intro-card div,
  .lead-form {
    box-shadow: 0 20px 48px rgba(15,23,42,0.16) !important;
  }

  .vehicle-photo {
    padding: 14px;
  }
}

/* Darker grey contrast pass: stronger separation between section backgrounds and white cards */
body {
  background: #d7dde6;
}

.premium-match-showcase {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.10), transparent 30%),
    linear-gradient(180deg, #e2e6ec 0%, #d4dae3 58%, #cbd3dd 100%) !important;
}

.premium-match-showcase .section-heading,
.safesource-app .section-heading,
#inventory .section-heading,
.better-experience .section-heading,
.service-area .section-heading,
.split .section-heading,
.form-section .section-heading {
  color: #0b1220;
}

.room-proof-points div,
.buyer-need-list span {
  background: #ffffff !important;
  border-color: #b9c3d1 !important;
  box-shadow: 0 20px 48px rgba(15,23,42,0.16) !important;
}

.safesource-app {
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.08), transparent 28%),
    linear-gradient(180deg, #d4dae3 0%, #c8d0db 100%) !important;
}

.source-path-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%) !important;
  border: 1px solid #aeb8c6 !important;
  box-shadow: 0 22px 52px rgba(15,23,42,0.18) !important;
}

.source-path-card:hover,
.source-path-card:focus-visible {
  border-color: rgba(215,25,32,0.55) !important;
  box-shadow: 0 28px 68px rgba(15,23,42,0.24) !important;
}

.room-does-strip {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.24), transparent 34%),
    linear-gradient(145deg, #151922 0%, #080b10 100%) !important;
  color: #ffffff !important;
}

.room-does-strip .section-heading,
.room-does-strip .section-heading p,
.room-does-strip h2 {
  color: #ffffff !important;
}

.room-does-strip .trust-strip-grid div {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-left: 5px solid var(--red) !important;
  box-shadow: 0 24px 58px rgba(0,0,0,0.32) !important;
}

.room-does-strip .trust-strip-grid strong {
  color: #ffffff !important;
}

.room-does-strip .trust-strip-grid span {
  color: rgba(255,255,255,0.78) !important;
}

#inventory {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.38), transparent 32%),
    linear-gradient(180deg, #cbd3dd 0%, #d8dde5 44%, #c5ceda 100%) !important;
}

.vehicle-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%) !important;
  border: 1px solid #aab5c4 !important;
  border-top: 5px solid #8894a4 !important;
  box-shadow:
    0 30px 70px rgba(15,23,42,0.22),
    0 1px 0 rgba(255,255,255,0.9) !important;
}

.vehicle-photo {
  background:
    radial-gradient(circle at center, #ffffff 0%, #eef2f6 56%, #d6dde7 100%) !important;
  border: 1px solid #d1d8e2 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

.better-experience {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.06), transparent 30%),
    linear-gradient(180deg, #d6dce5 0%, #c9d1dc 100%) !important;
}

.experience-card,
.info-box,
.step,
.lead-form {
  border: 1px solid #aeb8c6 !important;
  box-shadow: 0 26px 62px rgba(15,23,42,0.18) !important;
}

.service-area {
  background:
    radial-gradient(circle at bottom right, rgba(255,255,255,0.32), transparent 32%),
    linear-gradient(180deg, #c8d0db 0%, #dce1e8 100%) !important;
}

.service-area-list span {
  background: #ffffff !important;
  border: 1px solid #aeb8c6 !important;
  box-shadow: 0 16px 38px rgba(15,23,42,0.14) !important;
}

.section.split,
#trade {
  background:
    linear-gradient(180deg, #d3d9e2 0%, #c6cfdb 100%) !important;
}

.form-section {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.10), transparent 32%),
    linear-gradient(180deg, #c4ccd8 0%, #d7dde6 100%) !important;
}

.guided-form-bar {
  background: rgba(218, 224, 232, 0.96) !important;
  border: 1px solid #9da9ba !important;
  box-shadow: 0 22px 55px rgba(15,23,42,0.22) !important;
}

.guided-step:not(.is-active):not(.is-done) {
  background: #ffffff !important;
  border: 1px solid #c1cad6 !important;
}

.lead-form {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%) !important;
  border-top: 6px solid var(--red) !important;
}

.form-note,
.small-disclaimer {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(174,184,198,0.8);
  border-radius: 14px;
  padding: 12px 14px;
}

@media (max-width: 900px) {
  .premium-match-showcase,
  .safesource-app,
  #inventory,
  .better-experience,
  .service-area,
  .section.split,
  #trade,
  .form-section {
    background-color: #c9d1dc !important;
  }

  .vehicle-card,
  .source-path-card,
  .experience-card,
  .info-box,
  .lead-form {
    box-shadow: 0 24px 58px rgba(15,23,42,0.24) !important;
  }
}


/* Final service-area correction: make the area-served band intentionally dark and readable. */
.service-area {
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.22), transparent 34%),
    linear-gradient(145deg, #222b38 0%, #141922 52%, #080b10 100%) !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255,255,255,0.14) !important;
  border-bottom: 1px solid rgba(255,255,255,0.14) !important;
}

.service-area .eyebrow {
  color: var(--yellow) !important;
}

.service-area h2,
.service-area .section-heading,
.service-area-grid h2 {
  color: #ffffff !important;
}

.service-area p,
.service-area-grid p {
  color: rgba(255,255,255,0.86) !important;
}

.service-area-grid {
  align-items: start !important;
}

.service-area-list {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 28px;
  padding: clamp(18px, 2.4vw, 26px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28) !important;
}

.service-area-list span {
  background: rgba(255,255,255,0.10) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22) !important;
}

.service-area-list span.service-area-note {
  width: 100%;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,0.14) !important;
}

@media (max-width: 760px) {
  .service-area-list {
    padding: 16px;
  }

  .service-area-list span {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* Final service area organization pass: group local, border, and regional service areas clearly. */
.service-area .section-heading,
.service-area-grid > div:first-child {
  max-width: 720px;
}

.service-area-list.organized-service-list {
  display: grid !important;
  gap: 18px !important;
  align-content: start;
}

.organized-service-list .service-area-group {
  display: grid;
  gap: 10px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.organized-service-list .service-area-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.organized-service-list .service-area-label {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 900;
}

.organized-service-list .service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.organized-service-list .service-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  text-align: center;
}

.organized-service-list .service-area-final-group {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 16px;
}

.service-area-list.organized-service-list span.service-area-note {
  display: flex !important;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.14) !important;
  border-color: rgba(255,255,255,0.22) !important;
}

@media (max-width: 900px) {
  .service-area-list.organized-service-list {
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  .organized-service-list .service-chip-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .organized-service-list .service-chip-row span,
  .service-area-list.organized-service-list span.service-area-note {
    width: 100%;
  }
}


/* === Conversion and Trust Upgrade Pass === */
.source-status-card {
  display: grid;
  gap: 5px;
  margin: 18px 0 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff8d8, #fff1b3);
  border: 1px solid rgba(255, 212, 0, 0.68);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.source-status-card strong {
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 12px;
}

.source-status-card span {
  color: #2f2f2f;
  font-weight: 800;
  line-height: 1.45;
}

.after-submit-section {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.12), transparent 28%),
    linear-gradient(180deg, #d7dde7 0%, #c5ceda 100%);
}

.after-submit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.after-submit-grid article {
  background: linear-gradient(180deg, #ffffff, #f3f5f8);
  border: 1px solid #aeb8c6;
  border-top: 5px solid var(--red);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 48px rgba(15,23,42,0.16);
}

.after-submit-grid span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  background: var(--black);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 12px;
}

.after-submit-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.after-submit-grid p {
  margin: 0;
  color: #3f4650;
}

.buyer-helper-section {
  background:
    radial-gradient(circle at bottom right, rgba(255,255,255,0.38), transparent 34%),
    linear-gradient(145deg, #202938, #111720 56%, #2a090c);
  color: #ffffff;
}

.buyer-helper-section .eyebrow {
  color: var(--yellow);
}

.buyer-helper-section p {
  color: rgba(255,255,255,0.84);
}

.buyer-helper-grid,
.satisfaction-grid,
.local-trust-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.request-starter-card,
.satisfaction-card,
.local-trust-card,
.local-proof-list {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 26px 68px rgba(0,0,0,0.28);
}

.request-starter-card strong {
  display: block;
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 12px;
}

.request-starter-card ul {
  margin: 0;
  padding-left: 20px;
}

.request-starter-card li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}

.satisfaction-section {
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.14), transparent 34%),
    linear-gradient(180deg, #c7d0dc 0%, #d9dfe8 100%);
}

.satisfaction-card {
  background: #ffffff;
  color: #111;
  border: 1px solid #aeb8c6;
}

.satisfaction-card .eyebrow {
  color: var(--red);
}

.satisfaction-points {
  display: grid;
  gap: 14px;
}

.satisfaction-points div,
.local-proof-list div {
  background: #ffffff;
  border-left: 5px solid var(--red);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.13);
}

.satisfaction-points strong,
.local-proof-list strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.satisfaction-points span,
.local-proof-list span {
  display: block;
  color: #3f4650;
}

.local-trust-section {
  background:
    linear-gradient(180deg, #d5dce6 0%, #c6cfda 100%);
}

.local-trust-card {
  background:
    linear-gradient(145deg, #ffffff, #f4f6f9);
  color: #111;
  border: 1px solid #aeb8c6;
}

.local-proof-list {
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(92,102,112,0.25);
  box-shadow: 0 24px 56px rgba(15,23,42,0.14);
}

.local-proof-list a {
  color: var(--red);
  font-weight: 900;
}

.simplified-form-intro {
  grid-template-columns: repeat(3, 1fr);
}

.lead-form .field-help {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(174,184,198,0.72);
  padding: 10px 12px;
  border-radius: 12px;
}

@media (max-width: 1050px) {
  .after-submit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .simplified-form-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .buyer-helper-grid,
  .satisfaction-grid,
  .local-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .after-submit-grid {
    grid-template-columns: 1fr;
  }

  .source-status-card {
    margin-top: 14px;
  }
}


/* === Final compression and conversion cleanup pass === */

.after-submit-section {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.08), transparent 34%),
    linear-gradient(180deg, #e1e6ec, #f5f7fa);
  border-top: 1px solid rgba(15,23,42,0.12);
  border-bottom: 1px solid rgba(15,23,42,0.12);
}

.after-submit-grid {
  max-width: 1040px;
  margin: 0 auto;
}

.after-submit-grid article {
  border-top: 5px solid var(--red);
  background:
    linear-gradient(180deg, #ffffff, #f4f6f8);
  border-color: rgba(93,102,112,0.42);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.buyer-helper-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.buyer-trust-section {
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(200,204,210,0.14), transparent 34%),
    linear-gradient(145deg, #121821, #090b10 60%, #2a080d);
  color: white;
  position: relative;
  overflow: hidden;
}

.buyer-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.5;
  pointer-events: none;
}

.buyer-trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.buyer-trust-main {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.18);
  border-top: 6px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 24px 62px rgba(0,0,0,0.32);
}

.buyer-trust-main h2 {
  color: white;
}

.buyer-trust-main p {
  color: rgba(255,255,255,0.88);
}

.buyer-trust-main .small-disclaimer {
  color: #111;
  background: rgba(255,255,255,0.94);
  border-left-color: var(--yellow);
  font-weight: 800;
}

.buyer-trust-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.buyer-trust-card-grid div {
  background:
    linear-gradient(180deg, #ffffff, #eef2f6);
  color: #111827;
  border-left: 5px solid var(--red);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.buyer-trust-card-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.buyer-trust-card-grid span {
  display: block;
  color: #374151;
  font-weight: 700;
}

.service-area {
  background:
    radial-gradient(circle at top right, rgba(215,25,32,0.16), transparent 34%),
    linear-gradient(145deg, #161d27, #0b0f15 62%, #21070b);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.service-area .section-heading,
.service-area h2,
.service-area p {
  color: white;
}

.service-area-grid {
  align-items: start;
}

.organized-service-list {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.32);
}

.service-area-group {
  margin-bottom: 18px;
}

.service-area-group:last-child {
  margin-bottom: 0;
}

.service-area-label {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 13px;
  margin-bottom: 10px;
}

.service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip-row span,
.service-area-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 10px 24px rgba(0,0,0,0.2);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
}

.service-area-note {
  width: 100%;
  min-height: 54px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.14));
}

.guided-form-ready .lead-form [data-form-step].is-current-step {
  display: block;
  animation: guidedStepIn 0.26s ease both;
  padding-bottom: 4px;
}

.guided-form-controls {
  border-top: 1px solid #e5e7eb;
  padding-top: 18px;
  margin-top: 22px;
  margin-bottom: 0;
}

.guided-form-ready .lead-form > .guided-form-controls {
  display: none;
}

.guided-form-ready .lead-form [data-form-step].is-current-step > .guided-form-controls {
  display: flex;
}

.guided-form-ready .lead-form [data-form-step].is-current-step > button[type="submit"].is-visible-submit {
  display: inline-flex;
  width: 100%;
  margin-top: 16px;
}

.guided-form-ready .lead-form [data-form-step].is-current-step > .form-note.is-visible-note {
  display: block;
}

@media (max-width: 1050px) {
  .buyer-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .buyer-trust-card-grid {
    grid-template-columns: 1fr;
  }

  .buyer-trust-main {
    padding: 26px;
  }

  .organized-service-list {
    padding: 20px;
  }

  .service-chip-row span,
  .service-area-note {
    width: 100%;
    text-align: center;
  }
}


/* === Final SafeSource Request form/mobile polish pass ===
   Keeps Back, Next, and Submit contained inside the active form card.
   Also prevents the mobile CTA bar from fighting with the guided form controls. */
.guided-form-ready .lead-form {
  position: relative;
  overflow: visible;
}

.guided-form-ready .lead-form [data-form-step] {
  display: none;
}

.guided-form-ready .lead-form [data-form-step].is-current-step {
  display: block;
}

.guided-form-controls {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 0 !important;
  padding: 16px 0 0 !important;
  border: 0 !important;
  border-top: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.guided-form-controls .btn {
  min-height: 52px;
  margin: 0 !important;
}

.guided-form-controls .guided-back[hidden] {
  display: none !important;
}

.guided-form-controls .guided-back[hidden] + .guided-next {
  margin-left: auto !important;
}

.guided-form-ready .lead-form > .guided-form-controls {
  display: none !important;
}

.guided-form-ready .lead-form [data-form-step].is-current-step > .guided-form-controls {
  display: flex !important;
}

.guided-form-ready .lead-form button[type="submit"].is-visible-submit {
  display: inline-flex !important;
  width: 100%;
  min-height: 56px;
  margin: 18px 0 0 !important;
  border-radius: 16px;
}

.guided-form-ready .lead-form .form-note.is-visible-note {
  display: block !important;
  margin: 12px 0 0 !important;
}

@media (max-width: 640px) {
  .lead-form {
    padding-bottom: 18px !important;
  }

  .guided-form-controls {
    position: static !important;
    bottom: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px !important;
    padding: 12px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 12px 26px rgba(15,23,42,0.10) !important;
  }

  .guided-form-controls .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .guided-form-controls .guided-back[hidden] + .guided-next {
    grid-column: 1 / -1;
    margin-left: 0 !important;
  }

  .guided-form-ready .lead-form [data-form-step].is-current-step > .guided-form-controls {
    display: grid !important;
  }

  .guided-form-ready .lead-form button[type="submit"].is-visible-submit {
    min-height: 58px;
  }

  .form-section {
    scroll-margin-bottom: 96px;
  }

  .mobile-cta-bar {
    z-index: 80 !important;
  }
}

@media print {
  .guided-form-controls,
  .mobile-cta-bar {
    position: static !important;
    box-shadow: none !important;
  }
}


/* Final button order correction: on the Send step, Back and Submit live together inside the same contained control card. */
.guided-form-ready .lead-form button[type="submit"]:not(.is-visible-submit) {
  display: none !important;
}

.guided-form-controls > button[type="submit"].is-visible-submit {
  flex: 0 1 320px;
  width: auto !important;
  margin: 0 !important;
}

@media (max-width: 640px) {
  .guided-form-controls > button[type="submit"].is-visible-submit {
    width: 100% !important;
    min-width: 0;
  }
}

.lead-form [data-form-step="4"].is-current-step .guided-next,
body:has(.guided-step[data-guide-step="4"].is-active) .lead-form .guided-next {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* === Accessibility, contrast, and field-level validation === */

:focus-visible {
  outline: 4px solid #005fcc;
  outline-offset: 3px;
}

.footer-accessibility-wrap {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-accessibility-label {
  margin: 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accessibility-tools {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.accessibility-tools button {
  min-height: 42px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 8px 11px;
  background: #ffffff;
  color: #111827;
  font-weight: 900;
  cursor: pointer;
}

.accessibility-tools button[aria-pressed="true"] {
  background: #111827;
  color: #ffffff;
}

.accessibility-large-text {
  font-size: 118%;
}

.accessibility-large-text input,
.accessibility-large-text select,
.accessibility-large-text textarea,
.accessibility-large-text button {
  font-size: 1rem;
}

.accessibility-high-contrast {
  --black: #000000;
  --black-soft: #000000;
  --red: #b00000;
  --red-dark: #7a0000;
  --yellow: #ffff00;
  --white: #ffffff;
  --off-white: #ffffff;
  --gray: #111111;
  --gray-light: #ffffff;
  --steel: #ffffff;
  --steel-light: #ffffff;
  --steel-mid: #000000;
  --steel-dark: #000000;
  color: #000000;
  background: #ffffff;
}

.accessibility-high-contrast .site-header,
.accessibility-high-contrast .hero,
.accessibility-high-contrast .section.dark,
.accessibility-high-contrast .vip-featured-shell,
.accessibility-high-contrast .financing-action-card,
.accessibility-high-contrast .live-room-console,
.accessibility-high-contrast .site-footer {
  background: #000000 !important;
  color: #ffffff !important;
  background-image: none !important;
}

.accessibility-high-contrast .card,
.accessibility-high-contrast .vehicle-card,
.accessibility-high-contrast .lead-form,
.accessibility-high-contrast .form-block,
.accessibility-high-contrast .info-box,
.accessibility-high-contrast .reference-photo-card,
.accessibility-high-contrast .safesource-loan-estimator,
.accessibility-high-contrast .request-starter-card {
  background: #ffffff !important;
  color: #000000 !important;
  border: 3px solid #000000 !important;
  box-shadow: none !important;
}

.accessibility-high-contrast a:not(.btn),
.accessibility-high-contrast .text-link {
  color: #0000ee !important;
  text-decoration: underline !important;
}

.accessibility-high-contrast .btn,
.accessibility-high-contrast button {
  border: 3px solid currentColor !important;
}

.accessibility-high-contrast input,
.accessibility-high-contrast select,
.accessibility-high-contrast textarea {
  border: 3px solid #000000 !important;
  color: #000000 !important;
  background: #ffffff !important;
}

.accessibility-high-contrast ::placeholder {
  color: #333333 !important;
  opacity: 1 !important;
}

.accessible-error-summary {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 3px solid #b91c1c;
  border-radius: 14px;
  background: #fff1f2;
  color: #7f1d1d;
}

.accessible-error-summary strong {
  display: block;
  margin-bottom: 6px;
}

.accessible-error-summary ul {
  margin: 0;
  padding-left: 22px;
}

.accessible-error-summary a {
  color: #7f1d1d;
  font-weight: 900;
  text-decoration: underline;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #991b1b;
  font-size: 0.92rem;
  font-weight: 900;
}

.field-error[hidden] {
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
[aria-invalid="true"] {
  border: 3px solid #b91c1c !important;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.14) !important;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-legal-links a {
  text-decoration: underline;
  font-weight: 800;
}

.consent-text a {
  text-decoration: underline;
  font-weight: 900;
}

@media (max-width: 800px) {
  .footer-accessibility-wrap {
    justify-items: start;
  }

  .accessibility-tools {
    justify-content: flex-start;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }
}

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

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


/* === High-contrast fix: buyer helper / request starter card === */
.accessibility-high-contrast .buyer-helper-section .request-starter-card,
.accessibility-high-contrast .buyer-helper-section .request-starter-card * {
  color: #000000 !important;
}

.accessibility-high-contrast .buyer-helper-section .request-starter-card strong {
  color: #000000 !important;
  background: #ffff00 !important;
  border: 2px solid #000000 !important;
  border-radius: 8px;
  padding: 6px 9px;
  width: fit-content;
}

.accessibility-high-contrast .buyer-helper-section .request-starter-card li,
.accessibility-high-contrast .buyer-helper-section .request-starter-card ul {
  color: #000000 !important;
}

.accessibility-high-contrast .buyer-helper-section .request-starter-card li::marker {
  color: #000000 !important;
}


/* === High-contrast fix: financing action card === */
.accessibility-high-contrast .financing-action-card,
.accessibility-high-contrast .financing-action-card * {
  color: #000000 !important;
}

.accessibility-high-contrast .financing-action-card {
  background: #ffffff !important;
  border: 3px solid #000000 !important;
  box-shadow: none !important;
}

.accessibility-high-contrast .financing-action-card h3 {
  color: #000000 !important;
  background: #ffff00 !important;
  border: 2px solid #000000 !important;
  border-radius: 8px;
  padding: 6px 9px;
  width: fit-content;
}

.accessibility-high-contrast .financing-action-card p,
.accessibility-high-contrast .financing-action-card li,
.accessibility-high-contrast .financing-action-card .small-disclaimer {
  color: #000000 !important;
}

.accessibility-high-contrast .financing-action-card .small-disclaimer {
  background: #ffffff !important;
  border: 3px solid #000000 !important;
}

.accessibility-high-contrast .financing-action-card .btn {
  background: #000000 !important;
  color: #ffffff !important;
  border: 3px solid #000000 !important;
  text-decoration: none !important;
}

.accessibility-high-contrast .financing-action-card .btn:hover,
.accessibility-high-contrast .financing-action-card .btn:focus {
  background: #ffff00 !important;
  color: #000000 !important;
  border-color: #000000 !important;
}


/* === Final high-contrast financing paragraph override === */
.accessibility-high-contrast .financing-action-card p:not(.small-disclaimer) {
  color: #000000 !important;
  background: transparent !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

@media print {
  .reveal-up,
  [class*="reveal"] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
  }

  [hidden] {
    display: none !important;
  }
}

@media print {
  #vehicle-finder-form [data-form-step] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .guided-form-bar,
  .guided-form-actions,
  .form-next,
  .form-back {
    display: none !important;
  }
}
