/* =========================================================
   LB TITLE
   Main Website Styles
   ========================================================= */


/* ---------- RESET ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at top,
      #111827 0%,
      #070b12 42%,
      #030509 100%
    );

  color: #ffffff;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  line-height: 1.5;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

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


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  border-bottom: 1px solid rgba(148, 163, 184, 0.12);

  background: rgba(3, 5, 9, 0.88);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;

  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  display: inline-flex;
  align-items: center;

  font-size: 1.45rem;
  font-weight: 850;

  letter-spacing: -1px;
  text-decoration: none;

  white-space: nowrap;
}

.logo-lb {
  color: #ffffff;
}

.logo-title {
  margin-left: 5px;

  color: #3b82f6;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-left: auto;
}

.main-nav a {
  color: #94a3b8;

  font-size: 0.92rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;

  transform: translateY(-1px);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 0 18px;

  border: 1px solid #3b82f6;
  border-radius: 8px;

  color: #ffffff;

  font-size: 0.88rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-action:hover {
  background: #2563eb;

  transform: translateY(-1px);
}


/* =========================================================
   SHARED
   ========================================================= */

.eyebrow {
  margin-bottom: 16px;

  color: #64748b;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 700px;

  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 12px;

  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;

  letter-spacing: -1.8px;
  line-height: 1.08;
}

.section-heading > p:last-child {
  color: #94a3b8;

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 24px;

  border: 1px solid transparent;
  border-radius: 9px;

  font-size: 0.95rem;
  font-weight: 750;

  text-decoration: none;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: #2563eb;
  border-color: #2563eb;

  color: #ffffff;
}

.button.primary:hover {
  background: #3b82f6;
  border-color: #3b82f6;
}

.button.secondary {
  border-color: #334155;

  background: rgba(15, 23, 42, 0.45);

  color: #e2e8f0;
}

.button.secondary:hover {
  border-color: #3b82f6;

  background: rgba(37, 99, 235, 0.08);

  color: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 680px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.hero::before {
  content: "";

  position: absolute;
  top: -220px;
  right: -180px;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background: rgba(37, 99, 235, 0.12);

  filter: blur(80px);

  pointer-events: none;
}

.hero::after {
  content: "";

  position: absolute;
  bottom: -300px;
  left: -250px;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: rgba(29, 78, 216, 0.08);

  filter: blur(100px);

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;

  padding-top: 80px;
  padding-bottom: 80px;
}

.hero h1 {
  max-width: 900px;

  margin-bottom: 24px;

  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 850;

  letter-spacing: -5px;
  line-height: 0.95;
}

.hero h1 span {
  display: block;

  color: #3b82f6;
}

.hero-copy {
  max-width: 670px;

  color: #94a3b8;

  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
  padding: 110px 0;
}

.service-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 330px;

  display: flex;
  flex-direction: column;

  padding: 32px;

  border: 1px solid #1e293b;
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.92),
      rgba(8, 13, 23, 0.88)
    );

  overflow: hidden;

  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.6);

  transform: translateY(-4px);
}

.service-number {
  margin-bottom: 40px;

  color: #475569;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 2px;
}

.service-card h3 {
  margin-bottom: 10px;

  font-size: 1.55rem;
  font-weight: 800;

  letter-spacing: -0.7px;
}

.service-card > p {
  margin-bottom: 20px;

  color: #94a3b8;

  line-height: 1.65;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 30px;
}

.service-card li {
  padding: 7px 10px;

  border: 1px solid #1e293b;
  border-radius: 6px;

  background: rgba(15, 23, 42, 0.7);

  color: #cbd5e1;

  font-size: 0.78rem;
  font-weight: 650;
}

.service-card > a {
  margin-top: auto;

  color: #60a5fa;

  font-size: 0.9rem;
  font-weight: 750;

  text-decoration: none;
}

.service-card > a:hover {
  color: #93c5fd;
}

.dealer-card {
  border-color: rgba(59, 130, 246, 0.35);

  background:
    linear-gradient(
      145deg,
      rgba(30, 64, 175, 0.18),
      rgba(8, 13, 23, 0.94)
    );
}

.dealer-card::after {
  content: "DEALER";

  position: absolute;
  top: 25px;
  right: 28px;

  color: rgba(96, 165, 250, 0.5);

  font-size: 0.65rem;
  font-weight: 800;

  letter-spacing: 3px;
}


/* =========================================================
   OTHER SERVICES
   ========================================================= */

.other-services {
  padding: 100px 0;

  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);

  background: rgba(15, 23, 42, 0.22);
}

.other-service-card {
  max-width: 760px;

  padding: 30px;

  border: 1px solid #1e293b;
  border-radius: 12px;

  background: rgba(8, 13, 23, 0.7);
}

.other-service-card h3 {
  margin-bottom: 10px;

  font-size: 1.35rem;
}

.other-service-card p {
  margin-bottom: 18px;

  color: #94a3b8;

  line-height: 1.65;
}

.other-service-card a {
  color: #60a5fa;

  font-weight: 700;

  text-decoration: none;
}


/* =========================================================
   GET STARTED
   ========================================================= */

.request {
  padding: 110px 0;
}

.action-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px;
}

.action-card {
  min-height: 150px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 24px;

  border: 1px solid #1e293b;
  border-radius: 12px;

  background: rgba(15, 23, 42, 0.55);

  text-decoration: none;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.action-card:hover {
  border-color: #3b82f6;

  background: rgba(37, 99, 235, 0.08);

  transform: translateY(-3px);
}

.action-card span {
  color: #64748b;

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.action-card strong {
  color: #ffffff;

  font-size: 1rem;
  line-height: 1.35;
}


/* =========================================================
   ASK LB
   ========================================================= */

.ask-lb {
  padding: 0 0 110px;
}

.ask-lb-panel {
  position: relative;

  display: grid;

  grid-template-columns: 1fr auto;

  align-items: center;
  gap: 40px;

  padding: 42px;

  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(30, 64, 175, 0.2),
      rgba(15, 23, 42, 0.6)
    );

  overflow: hidden;
}

.ask-lb-panel::after {
  content: "LB";

  position: absolute;
  right: 170px;
  bottom: -60px;

  color: rgba(59, 130, 246, 0.04);

  font-size: 13rem;
  font-weight: 900;

  line-height: 1;

  pointer-events: none;
}

.ask-lb-panel h2 {
  margin-bottom: 12px;

  font-size: clamp(2rem, 5vw, 3rem);

  letter-spacing: -1.5px;
}

.ask-lb-panel > div:first-child > p:last-child {
  max-width: 650px;

  color: #94a3b8;

  line-height: 1.7;
}

.ask-lb-status {
  position: relative;
  z-index: 1;

  min-width: 180px;

  padding: 18px;

  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 10px;

  background: rgba(3, 5, 9, 0.45);
}

.ask-lb-status span {
  display: block;

  margin-bottom: 4px;

  color: #64748b;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.ask-lb-status strong {
  color: #60a5fa;

  font-size: 0.95rem;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  padding: 110px 0;

  border-top: 1px solid rgba(148, 163, 184, 0.08);

  background: rgba(2, 6, 12, 0.5);
}

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


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

.site-footer {
  padding: 38px 0;

  border-top: 1px solid #111827;

  background: #020407;
}

.footer-content {
  display: grid;

  grid-template-columns: 1fr auto auto;

  align-items: center;
  gap: 40px;
}

.footer-brand strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-size: 1rem;
  letter-spacing: 1px;
}

.footer-brand p {
  color: #475569;

  font-size: 0.82rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact a {
  color: #64748b;

  font-size: 0.8rem;

  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

.powered-by {
  color: #475569;

  font-size: 0.78rem;
}

.powered-by strong {
  color: #64748b;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .main-nav {
    display: none;
  }

  .nav-action {
    margin-left: auto;
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .ask-lb-panel {
    grid-template-columns: 1fr;
  }

  .ask-lb-status {
    width: fit-content;
  }

}


@media (max-width: 560px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-action {
    min-height: 38px;

    padding: 0 13px;

    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);

    letter-spacing: -3.5px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }

  .services,
  .request,
  .contact-section {
    padding: 80px 0;
  }

  .other-services {
    padding: 80px 0;
  }

  .ask-lb {
    padding-bottom: 80px;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .service-number {
    margin-bottom: 28px;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    min-height: 125px;
  }

  .ask-lb-panel {
    padding: 28px;
  }

  .ask-lb-panel::after {
    right: -30px;
    bottom: -35px;

    font-size: 9rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-content {
    gap: 24px;
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 4px;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
  background: #2563eb;
  color: #ffffff;
}

/* =========================================================
   INTAKE PAGES
   ========================================================= */

.intake-hero {
  padding: 70px 0 45px;

  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.back-link {
  display: inline-block;

  margin-bottom: 40px;

  color: #94a3b8;

  font-size: 0.9rem;
  font-weight: 650;

  text-decoration: none;
}

.back-link:hover {
  color: #ffffff;
}

.intake-hero h1 {
  margin-bottom: 16px;

  font-size: clamp(2.7rem, 6vw, 4.5rem);
  font-weight: 850;

  letter-spacing: -3px;
  line-height: 1;
}

.intake-hero > .container > p:last-child {
  max-width: 680px;

  color: #94a3b8;

  font-size: 1.05rem;
  line-height: 1.7;
}


/* ---------- LAYOUT ---------- */

.intake-section {
  padding: 70px 0 110px;
}

.intake-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 340px);

  align-items: start;
  gap: 30px;
}


/* ---------- FORM ---------- */

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-section {
  min-width: 0;

  padding: 30px;

  border: 1px solid #1e293b;
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.88),
      rgba(8, 13, 23, 0.82)
    );
}

.form-section legend {
  padding: 0 10px;

  color: #ffffff;

  font-size: 1.15rem;
  font-weight: 800;
}

.form-help {
  margin-bottom: 24px;

  color: #64748b;

  font-size: 0.9rem;
}


/* ---------- SERVICE CHOICE ---------- */

.service-choice-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 12px;
}

.service-choice {
  position: relative;

  display: block;

  cursor: pointer;
}

.service-choice input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.service-choice span {
  min-height: 120px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 20px;

  border: 1px solid #273449;
  border-radius: 10px;

  background: rgba(15, 23, 42, 0.6);

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.service-choice:hover span {
  border-color: #3b82f6;

  transform: translateY(-2px);
}

.service-choice input:checked + span {
  border-color: #3b82f6;

  background: rgba(37, 99, 235, 0.12);

  box-shadow:
    inset 0 0 0 1px rgba(59, 130, 246, 0.18);
}

.service-choice strong {
  margin-bottom: 7px;

  color: #ffffff;

  font-size: 1rem;
}

.service-choice small {
  color: #94a3b8;

  font-size: 0.8rem;
  line-height: 1.5;
}


/* ---------- FIELDS ---------- */

.form-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}

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

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

.form-field label {
  color: #cbd5e1;

  font-size: 0.82rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;

  border: 1px solid #273449;
  border-radius: 8px;

  outline: none;

  background: #080d17;

  color: #ffffff;

  font: inherit;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 48px;

  padding: 0 14px;
}

.form-field textarea {
  min-height: 145px;

  padding: 14px;

  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #475569;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #3b82f6;

  background: #0b1220;

  box-shadow:
    0 0 0 3px rgba(59, 130, 246, 0.1);
}


/* ---------- CONDITIONAL ---------- */

.conditional-section[hidden] {
  display: none;
}


/* ---------- SUBMIT ---------- */

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding: 24px 28px;

  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;

  background: rgba(37, 99, 235, 0.07);
}

.form-submit[hidden] {
  display: none;
}

.form-submit strong {
  display: block;

  margin-bottom: 4px;
}

.form-submit p {
  color: #64748b;

  font-size: 0.85rem;
}


/* ---------- SIDEBAR ---------- */

.intake-sidebar {
  position: sticky;

  top: 105px;
}

.sidebar-card {
  padding: 28px;

  border: 1px solid #1e293b;
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.9),
      rgba(8, 13, 23, 0.9)
    );
}

.sidebar-card h2 {
  margin-bottom: 12px;

  font-size: 1.5rem;

  letter-spacing: -0.8px;
}

.sidebar-card > p:not(.eyebrow) {
  margin-bottom: 24px;

  color: #94a3b8;

  font-size: 0.9rem;
  line-height: 1.65;
}

.sidebar-card .button {
  width: 100%;

  margin-bottom: 10px;
}

.sidebar-email {
  display: block;

  margin-top: 16px;

  color: #60a5fa;

  font-size: 0.82rem;

  text-align: center;
  text-decoration: none;
}

.sidebar-email:hover {
  color: #93c5fd;
}


/* =========================================================
   INTAKE RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .intake-layout {
    grid-template-columns: 1fr;
  }

  .intake-sidebar {
    position: static;
  }

}


@media (max-width: 560px) {

  .intake-hero {
    padding: 50px 0 35px;
  }

  .back-link {
    margin-bottom: 30px;
  }

  .intake-hero h1 {
    letter-spacing: -2px;
  }

  .intake-section {
    padding: 45px 0 80px;
  }

  .form-section {
    padding: 22px;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .form-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit .button {
    width: 100%;
  }

}
/* =========================================================
   TITLE INTAKE
   ========================================================= */

.title-choice-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 12px;
}


@media (max-width: 760px) {

  .title-choice-grid {
    grid-template-columns: 1fr;
  }

}






/* =========================================================
   DEALER CENTER
   ========================================================= */

.dealer-center-page {
  background:
    radial-gradient(
      circle at 75% 10%,
      rgba(37, 99, 235, 0.14),
      transparent 34%
    ),
    #030509;
}

.dealer-hero {
  min-height: 610px;

  display: flex;
  align-items: center;

  padding: 80px 0;

  border-bottom: 1px solid rgba(59, 130, 246, 0.16);
}

.dealer-hero h1 {
  max-width: 850px;

  margin-bottom: 24px;

  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 850;

  letter-spacing: -5px;
  line-height: 0.96;
}

.dealer-hero h1 span {
  display: block;

  color: #3b82f6;
}

.dealer-hero-copy {
  max-width: 650px;

  color: #94a3b8;

  font-size: 1.1rem;
  line-height: 1.75;
}


/* ---------- DEALER SERVICES ---------- */

.dealer-services {
  padding: 110px 0;
}

.dealer-service-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 16px;
}

.dealer-service-card {
  min-height: 280px;

  display: flex;
  flex-direction: column;

  padding: 28px;

  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(30, 64, 175, 0.11),
      rgba(8, 13, 23, 0.92)
    );

  text-decoration: none;

  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.dealer-service-card:hover {
  border-color: #3b82f6;

  background:
    linear-gradient(
      145deg,
      rgba(37, 99, 235, 0.18),
      rgba(8, 13, 23, 0.96)
    );

  transform: translateY(-4px);
}

.dealer-service-number {
  margin-bottom: 50px;

  color: #475569;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 2px;
}

.dealer-service-card h3 {
  margin-bottom: 10px;

  color: #ffffff;

  font-size: 1.35rem;

  letter-spacing: -0.6px;
}

.dealer-service-card p {
  margin-bottom: 28px;

  color: #94a3b8;

  font-size: 0.9rem;
  line-height: 1.6;
}

.dealer-service-card strong {
  margin-top: auto;

  color: #60a5fa;

  font-size: 0.85rem;
}


/* ---------- DEALER CONTACT ---------- */

.dealer-contact {
  padding: 0 0 110px;
}

.dealer-contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 42px;

  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;

  background: rgba(15, 23, 42, 0.48);
}

.dealer-contact-panel h2 {
  margin-bottom: 10px;

  font-size: clamp(2rem, 4vw, 3rem);

  letter-spacing: -1.5px;
}

.dealer-contact-panel > div:first-child > p:last-child {
  max-width: 620px;

  color: #94a3b8;

  line-height: 1.7;
}

.dealer-contact-actions {
  display: flex;
  flex-shrink: 0;

  gap: 10px;
}


/* ---------- DEALER RESPONSIVE ---------- */

@media (max-width: 900px) {

  .dealer-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dealer-contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

}


@media (max-width: 560px) {

  .dealer-hero {
    min-height: auto;

    padding: 70px 0;
  }

  .dealer-hero h1 {
    letter-spacing: -3px;
  }

  .dealer-services {
    padding: 80px 0;
  }

  .dealer-service-grid {
    grid-template-columns: 1fr;
  }

  .dealer-service-card {
    min-height: 240px;
  }

  .dealer-contact {
    padding-bottom: 80px;
  }

  .dealer-contact-panel {
    padding: 28px;
  }

  .dealer-contact-actions {
    width: 100%;

    flex-direction: column;
  }

  .dealer-contact-actions .button {
    width: 100%;
  }

}



/* =========================================================
   DEALER INTAKE
   ========================================================= */

.dealer-choice-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 12px;
}


@media (max-width: 760px) {

  .dealer-choice-grid {
    grid-template-columns: 1fr;
  }

}



/* =========================================================
   SUCCESS PAGE
   ========================================================= */

.success-page {
  min-height: calc(100vh - 76px);

  display: flex;
  flex-direction: column;
}

.success-section {
  flex: 1;

  display: flex;
  align-items: center;

  padding: 100px 0;
}

.success-card {
  max-width: 760px;

  margin: 0 auto;

  padding: 60px;

  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(30, 64, 175, 0.14),
      rgba(8, 13, 23, 0.92)
    );

  text-align: center;
}

.success-check {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 28px;

  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;

  background: rgba(37, 99, 235, 0.12);

  color: #60a5fa;

  font-size: 2rem;
  font-weight: 800;
}

.success-card h1 {
  margin-bottom: 20px;

  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 850;

  letter-spacing: -4px;
  line-height: 1;
}

.success-copy {
  max-width: 590px;

  margin: 0 auto;

  color: #94a3b8;

  font-size: 1.05rem;
  line-height: 1.75;
}

.success-note {
  max-width: 520px;

  margin: 34px auto 0;

  padding: 20px;

  border: 1px solid #1e293b;
  border-radius: 10px;

  background: rgba(3, 5, 9, 0.35);
}

.success-note strong {
  display: block;

  margin-bottom: 5px;
}

.success-note p {
  color: #64748b;

  font-size: 0.88rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 34px;
}


@media (max-width: 560px) {

  .success-section {
    padding: 60px 0;
  }

  .success-card {
    padding: 36px 22px;
  }

  .success-card h1 {
    letter-spacing: -2.5px;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .button {
    width: 100%;
  }

}