/* ============================================
   Design tokens
   ============================================ */
:root {
  --green-500: #1A9E47;
  --green-600: #168A3D;
  --green-700: #117030;
  --green-100: #E6F4EB;

  --navy-900: #2D3151;
  --navy-800: #383C5E;
  --navy-700: #4A4E70;

  --text-900: #181918;
  --text-700: #3A3B3A;
  --text-500: #6B6D6B;
  --text-300: #B5B6B5;

  --bg-page: #FFFFFF;
  --bg-welcome: #EAEAEA;
  --bg-soft: #F5F5F5;
  --bg-card: #F7F7F8;

  --line: #E2E2E2;
  --line-soft: #ECECEC;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 6px 18px rgba(0, 0, 0, 0.12);

  --max-w: 1440px;
  --gutter: 24px;

  --font-sans: "DM Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900&family=Fredoka:wght@500;600;700&display=swap");

/* ============================================
   Reset / base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

/* ============================================
   Layout helpers
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 64px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--navy-900);
  color: #fff;
}
.btn--primary:hover {
  background: var(--navy-800);
}

.btn--green {
  background: var(--green-500);
  color: #fff;
}
.btn--green:hover {
  background: var(--green-600);
}

.btn--outline {
  background: transparent;
  color: var(--text-900);
  border: 1.5px solid var(--text-900);
}
.btn--outline:hover {
  background: var(--text-900);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--text-900);
}

.btn--white {
  background: #fff;
  color: var(--green-500);
}
.btn--white:hover {
  background: var(--bg-soft);
}

.btn--small {
  padding: 8px 18px;
  font-size: 13px;
}

/* ============================================
   Header
   ============================================ */

/* Sticky header — stays at the top when scrolling */
[data-header] {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-500);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0);
  transition: box-shadow 0.35s ease;
}
[data-header].is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

/* Search bar hidden by default — slides into the header only after scrolling past the hero */
[data-header] .hero-search {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: max-height 0.35s ease,
              padding-top 0.35s ease,
              padding-bottom 0.35s ease;
}
[data-header].is-past-hero .hero-search {
  max-height: 50px;
  padding-top: 8px;
  padding-bottom: 10px;
}
[data-header].is-past-hero .hero-search .hero-search__form {
  padding: 4px 12px;
}
[data-header].is-past-hero .hero-search .hero-search__form input {
  font-size: 13px;
  font-style: normal;
  font-family: inherit;
}
[data-header].is-past-hero .hero-search .hero-search__form input::placeholder {
  font-style: normal;
  font-family: inherit;
}
[data-header].is-past-hero .hero-search .hero-search__submit {
  width: 28px;
  height: 28px;
}
[data-header].is-past-hero .hero-search .hero-search__submit svg {
  width: 13px;
  height: 13px;
}
[data-header].is-past-hero .hero-search .hero-search__icon {
  width: 18px;
  height: 18px;
}

.welcome-bar {
  background: var(--bg-welcome);
  font-size: 14px;
  color: var(--text-700);
  padding: 10px 0;
}

.location-strip {
  background: #2D3338;
  color: #fff;
  font-size: 12px;
  padding: 2px var(--gutter);
}
.location-strip__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  color: #fff;
  text-decoration: none;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-right: 155px;
}
.location-strip svg {
  width: 11px;
  height: 12px;
  color: #fff;
  flex-shrink: 0;
}
.location-strip__inner:hover { opacity: 0.85; }

/* ============================================
   Main header (green strip: brand + phone)
   ============================================ */
.main-header {
  background: var(--green-500);
  color: #fff;
  padding: 2px var(--gutter);
}
.main-header__inner {
  max-width: 1180px;
  height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 16px;
}
.main-header__phone {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;

  letter-spacing: -0.03em;
  transform: scaleX(0.9);      /* ← horizontal squish: 1 = normal, 0.85 = 15% narrower, 0.7 = 30% narrower */
  transform-origin: left center;

  position: relative;
  left: 10px;                /* ← positive = move right (try 20px, 50px, etc.) */
}
.main-header__phone:hover {
  text-decoration: underline;
}

/* ============================================
   Primary nav (darker green, uppercase centered)
   ============================================ */
.primary-nav {
  background: var(--green-600);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.primary-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3.5vw, 55px);
  padding: 11px var(--gutter);
  flex-wrap: wrap;

  padding: 8px var(--gutter);   /* ← raise the 11px to make the bar taller (try 18px, 26px) */
  

}
.primary-nav__inner li a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  
  display: inline-block;          /* ← needed for scaleX to work */
  transform: scaleX(1);          /* ← 1 = normal, 1.2 = stretched wider, 0.85 = squished narrower */

  position: relative;
  left: -15px;                       /* ← X: positive = right, negative = left */
  top: 0;                        /* ← Y: positive = down, negative = up */

  
}
.primary-nav__inner li a:hover {
  border-bottom-color: #fff;
}

/* ============================================
   Nav dropdown (hover panel under "Buy a Car")
   ============================================ */
.primary-nav__inner li.has-dropdown {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 290px;
  background: #fff;
  color: var(--text-900);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 120;
}
.primary-nav__inner li.has-dropdown:hover .nav-dropdown,
.primary-nav__inner li.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e5e7eb;
}
.nav-dropdown__tab {
  flex: 1;
  text-align: center;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-900);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.nav-dropdown__tab.is-active {
  border-bottom-color: var(--text-900);
}
.nav-dropdown__tab--cta {
  background: var(--green-500);
  color: #fff;
}
.nav-dropdown__tab--cta:hover {
  background: var(--green-600);
}
.nav-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.nav-dropdown__list li a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-900);
  text-decoration: none;
  border-bottom: 1px solid #f1f2f4;
  /* override the .primary-nav__inner li a positioning */
  position: static;
  left: 0;
  transform: none;
}
.nav-dropdown__list li:last-child a {
  border-bottom: none;
}
.nav-dropdown__list li a:hover {
  background: var(--bg-soft);
  border-bottom-color: #f1f2f4;
}

/* ============================================
   Hero search bar (dark strip with white input)
   ============================================ */
.hero-search {
  background: #2D3338;
  padding: 50px var(--gutter);
}
.hero-search__form {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  padding: 8px 14px;
  gap: 10px;
}
.hero-search__icon {
  width: 22px;
  height: 22px;
  color: var(--text-500);
  flex-shrink: 0;
}
.hero-search__form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-700);
  background: transparent;
  padding: 6px 0;
  font-family: Georgia, "Times New Roman", serif;
}
.hero-search__form input::placeholder {
  color: #9aa0a6;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}
.hero-search__submit {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hero-search__submit:hover { background: var(--green-600); }
.hero-search__submit svg { width: 16px; height: 16px; }

/* ============================================
   Sell or Trade page (and similar info pages)
   ============================================ */
.trade-page {
  background: #fff;
  color: var(--text-900);
}

.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumb__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px var(--gutter);
  font-size: 14px;
}
.breadcrumb a {
  color: var(--green-500);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep {
  color: var(--text-500);
  margin: 0 8px;
}
.breadcrumb__current {
  color: var(--green-500);
  font-weight: 500;
}

.trade-intro {
  background: var(--bg-soft);
  padding: 80px var(--gutter);
}
.trade-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trade-intro__text {
  padding-left: 40px;
}
.trade-intro__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-900);
}
.trade-intro__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-700);
  max-width: 460px;
}
.trade-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.trade-section {
  padding: 60px var(--gutter);
}
.trade-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.trade-section__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--text-900);
}

.trade-step {
  margin-bottom: 36px;
}
.trade-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-900);
}
.trade-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-900);
  margin-top: 14px;
}

.trade-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-900);
}
.trade-list li {
  margin-bottom: 10px;
}
.trade-list--sub {
  list-style: circle;
  margin-top: 10px;
  padding-left: 24px;
}

.trade-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.trade-link:hover { text-decoration: underline; }

.trade-section--faq {
  padding-top: 20px;
  padding-bottom: 80px;
}
.trade-faq {
  margin-bottom: 28px;
}
.trade-faq h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-900);
}
.trade-faq p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-900);
}

@media (max-width: 800px) {
  .trade-intro {
    padding: 40px var(--gutter);
  }
  .trade-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .trade-intro__text {
    padding-left: 0;
  }
  .trade-intro__title {
    font-size: 26px;
  }
}

/* ============================================
   Financing page
   ============================================ */
.finance-page {
  background: #fff;
  color: var(--text-900);
}

.finance-intro {
  background: var(--bg-soft);
  padding: 70px var(--gutter);
}
.finance-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.finance-intro__text {
  padding-left: 40px;
}
.finance-intro__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--text-900);
}
.finance-intro__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 480px;
  margin-bottom: 14px;
}
.finance-intro__sub em {
  font-style: italic;
}
.finance-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.finance-cards {
  padding: 60px var(--gutter);
  background: #fff;
}
.finance-cards__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.finance-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 40px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--text-900);
  min-height: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.finance-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.finance-card__icon {
  color: var(--green-500);
  margin-bottom: 22px;
  width: 70px;
  height: 56px;
}
.finance-card__icon svg,
.finance-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.finance-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-900);
}
.finance-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-700);
  margin-bottom: 24px;
  flex: 1;
}
.finance-card__cta {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.finance-card__cta svg {
  width: 12px;
  height: 12px;
}
.finance-card:hover .finance-card__cta {
  color: var(--green-600);
}

.finance-disclaimer {
  padding: 20px var(--gutter) 80px;
  background: #fff;
}
.finance-disclaimer__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.finance-disclaimer p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-700);
  margin-bottom: 14px;
}
.finance-disclaimer p strong {
  color: var(--text-900);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .finance-cards__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Locations page
   ============================================ */
.loc-page {
  background: #fff;
  color: var(--text-900);
}

.loc-intro {
  padding: 30px var(--gutter) 24px;
}
.loc-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.loc-intro__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}
.loc-intro__sub {
  font-size: 16px;
  color: var(--text-900);
  margin-bottom: 8px;
}
.loc-intro__links {
  list-style: disc;
  padding-left: 38px;
  margin-bottom: 28px;
}
.loc-intro__links li {
  margin-bottom: 6px;
}
.loc-intro__links a {
  color: var(--green-500);
  font-weight: 500;
  text-decoration: none;
}
.loc-intro__links a:hover { text-decoration: underline; }
.loc-intro__narrow {
  font-size: 15px;
  margin-bottom: 18px;
}

.loc-search {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.loc-search__zip,
.loc-search__state {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-soft);
  color: var(--text-900);
  min-width: 220px;
}
.loc-search__state {
  background: #fff;
  min-width: 260px;
}
.loc-search__or {
  font-size: 14px;
  color: var(--text-700);
  font-weight: 500;
}
.loc-search__btn {
  background: var(--green-500);
  color: #fff;
  padding: 12px 60px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.loc-search__btn:hover { background: var(--green-600); }

.loc-finder {
  padding: 24px var(--gutter) 60px;
}
.loc-finder__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  min-height: 600px;
}

.loc-list {
  background: #fff;
  overflow-y: auto;
  max-height: 600px;
  border-right: 1px solid var(--line);
}
.loc-item {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background 0.15s;
}
.loc-item:hover { background: var(--bg-soft); }
.loc-item.is-active {
  background: #e8f3ed;
  border-left: 3px solid var(--green-500);
  padding-left: 17px;
}
.loc-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.loc-item__addr {
  font-size: 13px;
  color: var(--text-700);
  margin-bottom: 4px;
  line-height: 1.45;
}
.loc-item__phone {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.loc-item__link {
  display: block;
  color: var(--green-500);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 2px;
}
.loc-item__link:hover { text-decoration: underline; }

.loc-map {
  position: relative;
  min-height: 600px;
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

.loc-popup {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 18px 20px;
  max-width: 320px;
  z-index: 2;
}
.loc-popup h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-900);
}
.loc-popup p {
  font-size: 13px;
  color: var(--text-700);
  margin-bottom: 4px;
  line-height: 1.45;
}
.loc-popup__phone {
  font-weight: 700;
  color: var(--text-900) !important;
  margin-bottom: 10px !important;
}
.loc-popup__hours {
  margin-top: 8px;
  margin-bottom: 14px;
}
.loc-popup__hours-title {
  font-weight: 700;
  color: var(--text-900) !important;
  margin-bottom: 4px !important;
}
.loc-popup__hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.loc-popup__hours td {
  padding: 2px 0;
  color: var(--text-700);
}
.loc-popup__hours td:first-child {
  width: 50px;
  font-weight: 600;
  color: var(--text-900);
}
.loc-popup__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.loc-popup__btn {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none;
  color: var(--green-500);
  border: 1px solid var(--green-500);
}
.loc-popup__btn--primary {
  background: var(--green-500);
  color: #fff !important;
}
.loc-popup__btn--primary:hover { background: var(--green-600); }
.loc-popup__btn:hover { background: var(--bg-soft); }
.loc-popup__btn--primary:hover { background: var(--green-600); }

.loc-grouped {
  padding: 40px var(--gutter);
}
.loc-grouped__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.loc-grouped__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-900);
}
.loc-grouped__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
}
.loc-grouped__list a {
  color: var(--green-500);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.loc-grouped__list a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .loc-finder__inner {
    grid-template-columns: 1fr;
  }
  .loc-list {
    max-height: 360px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .loc-map {
    min-height: 420px;
  }
  .loc-popup {
    max-width: calc(100% - 32px);
  }
  .loc-grouped__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .loc-grouped__list {
    grid-template-columns: 1fr;
  }
  .loc-search__zip,
  .loc-search__state {
    min-width: 0;
    width: 100%;
  }
  .loc-search__btn { width: 100%; }
}

/* ============================================
   Special Offers page
   ============================================ */
.offers-page {
  background: #fff;
  color: var(--text-900);
}

.offers-intro {
  background: var(--bg-soft);
  padding: 70px var(--gutter);
}
.offers-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.offers-intro__text {
  padding-left: 40px;
}
.offers-intro__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 22px;
}
.offers-intro__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 540px;
}
.offers-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.offers-link:hover { text-decoration: underline; }
.offers-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.offers-cards {
  padding: 60px var(--gutter);
}
.offers-cards__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.offers-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 50px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--text-900);
  min-height: 340px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.offers-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.offers-card__icon {
  color: var(--green-500);
  margin-bottom: 26px;
  width: 80px;
  height: 60px;
}
.offers-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.offers-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.offers-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-700);
  margin-bottom: 28px;
  flex: 1;
  max-width: 360px;
}
.offers-card__cta {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.offers-card__cta svg {
  width: 12px;
  height: 12px;
}

.offers-seo {
  background: var(--green-500);
  color: #fff;
  padding: 60px var(--gutter);
}
.offers-seo__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.offers-seo__trademark {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 50px;
  color: #fff;
}
.offers-seo__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #fff;
}
.offers-seo__copy {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #fff;
}
.offers-seo__states {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 24px;
}
.offers-seo__states a,
.offers-seo__states span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.offers-seo__states span { cursor: default; }
.offers-seo__states a:hover,
.offers-seo__states span:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .offers-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .offers-intro__text { padding-left: 0; }
  .offers-cards__inner {
    grid-template-columns: 1fr;
  }
  .offers-seo__states {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .offers-seo__states {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Why Enterprise page
   ============================================ */
.why-page {
  background: #fff;
  color: var(--text-900);
}

.why-intro {
  background: var(--bg-soft);
  padding: 70px var(--gutter);
}
.why-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-intro__text {
  padding-left: 40px;
}
.why-intro__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.25;
}
.why-intro__subtitle {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-900);
}
.why-intro__sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-900);
  max-width: 520px;
}
.why-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.why-link:hover { text-decoration: underline; }
.why-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.why-section {
  padding: 40px var(--gutter);
  background: #fff;
}
.why-section + .why-section {
  padding-top: 0;
}
.why-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.why-section__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-900);
}
.why-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-900);
}

@media (max-width: 800px) {
  .why-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-intro__text { padding-left: 0; }
  .why-intro__title { font-size: 26px; }
}

/* ============================================
   For Business page
   ============================================ */
.biz-page {
  background: #fff;
  color: var(--text-900);
}

.biz-intro {
  background: var(--bg-soft);
  padding: 60px var(--gutter);
}
.biz-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.biz-intro__text {
  padding-left: 40px;
}
.biz-intro__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.25;
}
.biz-intro__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 500px;
}
.biz-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.biz-link:hover { text-decoration: underline; }
.biz-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.biz-content {
  padding: 60px var(--gutter);
}
.biz-content__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.biz-form-wrap__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.biz-form-wrap__sub {
  font-size: 15px;
  color: var(--text-900);
  margin-bottom: 28px;
}

.biz-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.biz-form__row--single {
  grid-template-columns: 1fr;
}
.biz-form__field {
  position: relative;
}
.biz-form__field input,
.biz-form__field select,
.biz-form__field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 22px 14px 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-900);
  outline: none;
  transition: border-color 0.15s;
}
.biz-form__field textarea {
  padding-top: 14px;
  resize: vertical;
  min-height: 100px;
}
.biz-form__field input:focus,
.biz-form__field select:focus,
.biz-form__field textarea:focus {
  border-color: var(--green-500);
}
.biz-form__field label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 13px;
  color: var(--text-500);
  pointer-events: none;
  transition: top 0.15s, font-size 0.15s;
  background: transparent;
}
.biz-form__field input:not(:placeholder-shown) + label,
.biz-form__field input:focus + label {
  top: 5px;
  font-size: 11px;
}
.biz-form__field--select label.biz-form__select-label {
  position: absolute;
  top: 5px;
  font-size: 11px;
}
.biz-form__field--select select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6d6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}
.biz-req {
  color: #d32f2f;
}
.biz-form__counter {
  font-size: 12px;
  color: var(--text-500);
  margin-top: -6px;
  margin-bottom: 18px;
}

.biz-form__disclaimer {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-900);
  margin: 18px 0 18px;
}
.biz-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 22px;
}
.biz-form__consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--green-500);
}
.biz-form__submit {
  display: block;
  margin: 0 auto 18px;
  background: var(--green-500);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 14px 70px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.biz-form__submit:hover { background: var(--green-600); }
.biz-form__recaptcha {
  text-align: center;
  font-size: 12px;
  color: var(--text-500);
  margin-top: 8px;
}
/* Inline validation error -- used by the total-loss-replacement form */
.tl-form__error {
  margin: 6px 2px 0;
  font-size: 12px;
  color: #c0252b;
  line-height: 1.4;
}
.tl-form__error[hidden] { display: none; }
.biz-form__field input.is-invalid,
.biz-form__field select.is-invalid {
  border-color: #c0252b !important;
  background-color: #fff6f6;
}

.biz-form__success {
  background: #e8f3ed;
  border: 1px solid var(--green-500);
  color: var(--green-700);
  padding: 14px 18px;
  border-radius: 2px;
  margin-top: 16px;
  font-size: 14px;
}

/* Right column: commercial program */
.biz-program {
  background: #fff;
  padding-top: 6px;
}
.biz-program__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.biz-program__how {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.biz-program__icon {
  width: 56px;
  height: 56px;
  color: var(--green-500);
  flex-shrink: 0;
}
.biz-program__icon svg,
.biz-program__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.biz-program__subtitle {
  font-size: 20px;
  font-weight: 700;
}
.biz-program__list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.biz-program__list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-900);
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .biz-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .biz-intro__text { padding-left: 0; }
  .biz-intro__title { font-size: 24px; }
  .biz-content__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .biz-form__row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Buy a Car (Search Results Page)
   ============================================ */
.srp-page {
  background: #fff;
  color: var(--text-900);
}

.srp-layout {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}

/* Sidebar */
.srp-sidebar {
  background: #2D3338;
  color: #fff;
  padding: 30px 22px 60px;
  min-height: 100%;
}
.srp-sidebar__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.srp-sidebar__store {
  color: var(--green-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.srp-sidebar__count {
  font-size: 14px;
  color: #fff;
  margin-bottom: 22px;
}
.srp-sidebar__blurb {
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.5;
}
.srp-sidebar__blurb a {
  color: var(--green-500);
  text-decoration: none;
  font-weight: 600;
}
.srp-sidebar__blurb a:hover { text-decoration: underline; }
.srp-disclaimer__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 14px;
}

.srp-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 18px;
}
.srp-tab {
  background: none;
  color: #fff;
  border: none;
  padding: 12px 4px;
  margin-right: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.srp-tab.is-active {
  border-bottom-color: var(--green-500);
}

.srp-filter {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 0;
}
.srp-filter > summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.srp-filter > summary::-webkit-details-marker { display: none; }
.srp-filter > summary::after {
  content: '\25BC';
  font-size: 9px;
  color: #fff;
  transition: transform 0.2s;
}
.srp-filter[open] > summary::after {
  transform: rotate(180deg);
}
.srp-filter__body {
  padding-top: 14px;
  font-size: 13px;
  color: #fff;
}
.srp-filter__current {
  margin-bottom: 8px;
}
.srp-filter__link {
  background: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-bottom: 14px;
}
.srp-filter__check {
  display: flex;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.srp-filter__check input { accent-color: var(--green-500); }

/* Auto-generated filter checkbox list (Make, Year, Body Type, etc.) */
.srp-fchk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
  cursor: pointer;
}
.srp-fchk input {
  width: 14px;
  height: 14px;
  accent-color: var(--green-500);
  cursor: pointer;
}
.srp-fchk:hover { color: #b6e2c3; }
.srp-filter__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.srp-chip {
  background: #3a4046;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 8px 4px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 2px;
}
.srp-chip.is-active,
.srp-chip:hover {
  background: var(--green-500);
  border-color: var(--green-500);
}

.srp-more-filters {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 28px 0 0;
  cursor: pointer;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 14px;
}

/* Results area */
.srp-results {
  background: #eef0f2;
  padding: 0 0 60px;
}

.srp-sort-bar {
  background: #eef0f2;
  padding: 16px 24px;
  display: flex;
  gap: 12px;
}
.srp-sort-back,
.srp-sort-btn {
  background: var(--green-500);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.srp-sort-back { padding: 10px 18px; }
.srp-sort-back svg { width: 18px; height: 18px; }
.srp-sort-btn:hover,
.srp-sort-back:hover { background: var(--green-600); }

.srp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 24px;
}

/* Banner shown when the user arrived via a hero search query */
.srp-search-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 4px;
  background: #eef5ec;
  border-left: 4px solid var(--green-500, #1A9E47);
  border-radius: 2px;
  font-size: 14px;
  color: #1f1f1f;
  flex-wrap: wrap;
}
.srp-search-banner__label strong {
  color: #0c3320;
}
.srp-search-banner__clear {
  background: none;
  border: 0;
  color: var(--green-500, #1A9E47);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.srp-search-banner__clear:hover { text-decoration: underline; }

/* "No results for your search" empty state */
.srp-empty {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid #e2e4e7;
  padding: 36px 28px;
  text-align: center;
  border-radius: 4px;
}
.srp-empty__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.35;
}
.srp-empty__body {
  margin: 0 auto 22px;
  max-width: 540px;
  font-size: 14px;
  color: #555;
  line-height: 1.55;
}
.srp-empty__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.srp-empty__btn {
  display: inline-block;
  padding: 12px 22px;
  border: 0;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  background: var(--green-500, #1A9E47);
  color: #fff;
}
.srp-empty__btn:hover { background: #178a3e; }
.srp-empty__btn--outline {
  background: transparent;
  color: var(--green-500, #1A9E47);
  border: 1px solid var(--green-500, #1A9E47);
}
.srp-empty__btn--outline:hover {
  background: var(--green-500, #1A9E47);
  color: #fff;
}

.srp-no-results {
  padding: 20px 24px 4px;
  color: #2b2b2b;
}
.srp-no-results[hidden] { display: none; }
.srp-no-results__primary {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.5;
}
.srp-no-results__secondary {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
}

/* Top duplicate pagination is hidden -- the .srp-pager block below the locator
   banner is the visible one, styled to match Enterprise's look. */
.srp-pagination { display: none; }
.srp-page {
  min-width: 34px;
  padding: 6px 10px;
  border: 1px solid #d4d6da;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #1f1f1f;
  text-align: center;
  text-decoration: none;
  background: #fff;
}
.srp-page:hover { background: #f5f6f8; }
.srp-page.is-active {
  background: var(--green-500);
  color: #fff;
  border-color: var(--green-500);
  cursor: default;
}
.srp-page--nav { font-size: 16px; line-height: 1; padding: 6px 10px; }

.srp-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.srp-card__inspection {
  background: #2D3338;
  color: #fff;
  font-size: 9px;
  line-height: 1.3;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.srp-card__certified {
  background: #2D3338;
  border: 1px solid var(--green-500);
  padding: 2px 6px;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}
.srp-card__certified sub {
  color: var(--green-500);
  font-size: 6px;
}
.srp-card__media {
  background: #fff;
  position: relative;
  border-bottom: 3px solid var(--green-500);
  display: block;
}
.srp-card__model a { color: inherit; }
.srp-card__model a:hover { text-decoration: underline; }
.srp-card__media img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  display: block;
}
.srp-card__photos {
  position: absolute;
  bottom: -22px;
  left: 0;
  background: rgba(45,51,56,0.85);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  z-index: 1;
}
.srp-card__body {
  padding: 28px 14px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 13px;
  position: relative;
}
.srp-card__badge {
  display: inline-block;
  border: 1px solid #1976d2;
  color: #1976d2;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.srp-card__head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.srp-card__year {
  color: var(--green-500);
  font-size: 12px;
  margin-bottom: 2px;
}
.srp-card__model {
  color: var(--green-500);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.srp-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-900);
  white-space: nowrap;
}
.srp-card__price sup {
  color: #1976d2;
  font-size: 9px;
  font-weight: 700;
}
.srp-card__miles {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}
.srp-card__loc {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-700);
  margin-bottom: 2px;
}
.srp-card__mpg {
  color: var(--green-500);
  font-weight: 700;
  font-size: 12px;
  margin: 8px 0 10px;
}
.srp-card__btn {
  display: block;
  width: 100%;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 8px;
  text-align: center;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.srp-card__btn svg {
  width: 18px;
  height: 12px;
}
.srp-card__btn--primary {
  background: var(--green-500);
  color: #fff;
  border-color: var(--green-500);
}
.srp-card__btn--primary:hover { background: var(--green-600); }
.srp-card__btn--outline {
  background: #fff;
  color: var(--green-500);
  border-color: var(--green-500);
}
.srp-card__btn--outline:hover { background: var(--bg-soft); }
.srp-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-700);
}
.srp-card__compare {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.srp-card__compare input { accent-color: var(--green-500); }
.srp-card__save,
.srp-card__details {
  background: none;
  border: none;
  color: var(--text-700);
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.srp-card__save svg { width: 12px; height: 12px; }

/* Promo cards */
.srp-promo {
  background: var(--green-500);
  color: #fff;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.srp-promo--van h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.srp-promo--van p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
}
.srp-promo--van p strong {
  font-size: 22px;
  font-weight: 800;
  display: block;
}
.srp-promo--van img {
  width: 80%;
  margin: 0 auto 14px;
  display: block;
}
.srp-promo__cta {
  background: #fff;
  color: var(--green-700);
  padding: 10px 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
  text-decoration: none;
  border-radius: 2px;
  display: block;
  margin: 0 auto 14px;
  max-width: 160px;
}
.srp-promo__cta:hover { background: var(--bg-soft); }
.srp-promo__brand {
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
}

.srp-promo--purchase {
  background: #fff;
  color: var(--text-900);
  text-align: left;
  border: 1px solid var(--line);
  padding: 0;
}
.srp-promo--purchase .srp-promo__heading {
  background: var(--green-500);
  color: #fff;
  padding: 22px 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0;
}
.srp-promo--purchase .srp-promo__heading span {
  font-weight: 800;
}
.srp-promo--purchase ul {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
}
.srp-promo--purchase li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: 0.02em;
}
.srp-promo--purchase li:last-child { border-bottom: none; }
.srp-promo__icon {
  width: 28px;
  height: 28px;
  background: #e8f3ed;
  color: var(--green-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.srp-promo--find {
  background: #2D3338 url("/images/looking.webp") center/cover no-repeat;
  position: relative;
  color: #fff;
  justify-content: flex-end;
  text-align: left;
  padding: 28px 22px;
}
.srp-promo--find::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
}
.srp-promo--find > * { position: relative; z-index: 1; }
.srp-promo--find h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
.srp-promo--find p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* Vehicle Locator */
.srp-locator {
  margin: 36px 24px 18px;
  padding: 28px 32px;
  background: #eaf3f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.srp-locator__text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.srp-locator__text p {
  font-size: 14px;
  color: var(--text-700);
}
.srp-locator__btn {
  background: var(--green-500);
  color: #fff;
  padding: 14px 36px;
  border-radius: 2px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
.srp-locator__btn:hover { background: var(--green-600); }

/* Pagination */
.srp-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 18px 24px;
  flex-wrap: wrap;
}
.srp-pager__num,
.srp-pager__next {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;
  color: var(--text-900);
  min-width: 38px;
}
.srp-pager__num:hover,
.srp-pager__next:hover {
  background: var(--bg-soft);
}
.srp-pager__num.is-active {
  background: var(--text-900);
  color: #fff;
  border-color: var(--text-900);
}
.srp-pager__next {
  background: var(--green-500);
  color: #fff;
  border-color: var(--green-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.srp-pager__next svg { width: 16px; height: 16px; }
.srp-pager__dots {
  padding: 0 6px;
  color: var(--text-500);
}

/* Disclaimer */
.srp-disclaimer {
  background: #fff;
  padding: 24px 24px 12px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-700);
}
.srp-disclaimer p {
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .srp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .srp-layout { grid-template-columns: 1fr; }
  .srp-sidebar { padding: 24px; }
  .srp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .srp-grid { grid-template-columns: 1fr; }
  .srp-locator { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Digital Dealership Experience page
   ============================================ */
.dde-page {
  background: #fff;
  color: var(--text-900);
}

.dde-intro {
  background: var(--bg-soft);
  padding: 70px var(--gutter);
}
.dde-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dde-intro__text {
  padding-left: 40px;
}
.dde-intro__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
}
.dde-intro__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 500px;
}
.dde-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.dde-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.dde-link:hover { text-decoration: underline; }

.dde-lead {
  padding: 60px var(--gutter) 30px;
}
.dde-lead__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.dde-lead p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-900);
}

.dde-features,
.dde-steps {
  padding: 20px var(--gutter) 40px;
}
.dde-features__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dde-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dde-card__icon {
  color: var(--green-500);
  width: 70px;
  height: 56px;
  margin-bottom: 22px;
}
.dde-card__icon svg,
.dde-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.dde-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-900);
}
.dde-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-700);
  max-width: 420px;
}

.dde-expedite {
  padding: 40px var(--gutter) 20px;
}
.dde-expedite__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.dde-expedite__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-900);
}
.dde-expedite__sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-900);
}

.dde-steps__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dde-steps__cta {
  max-width: 1180px;
  margin: 40px auto 60px;
  text-align: center;
}
.dde-steps__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-500);
  color: #fff;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
}
.dde-steps__btn:hover { background: var(--green-600); }
.dde-steps__btn svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .dde-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dde-intro__text { padding-left: 0; }
  .dde-intro__title { font-size: 24px; }
  .dde-features__inner { grid-template-columns: 1fr; }
  .dde-steps__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dde-steps__inner { grid-template-columns: 1fr; }
}

/* ============================================
   Buy a Car Online page
   ============================================ */
.bco-page {
  background: #fff;
  color: var(--text-900);
}

.bco-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.bco-link:hover { text-decoration: underline; }

.bco-intro {
  background: var(--bg-soft);
  padding: 70px var(--gutter);
}
.bco-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bco-intro__text {
  padding-left: 40px;
}
.bco-intro__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
}
.bco-intro__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-900);
  max-width: 500px;
}
.bco-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.bco-steps,
.bco-section {
  padding: 50px var(--gutter) 30px;
}
.bco-steps__inner,
.bco-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.bco-steps__title,
.bco-section__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.bco-steps__sub {
  font-size: 15px;
  color: var(--text-900);
  margin-bottom: 22px;
}
.bco-stepslist {
  list-style: none;
  margin: 0;
  padding: 0 0 0 22px;
}
.bco-stepslist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.bco-stepslist li:last-child { border-bottom: none; }
.bco-stepslist svg {
  width: 18px;
  height: 18px;
  color: var(--green-500);
  flex-shrink: 0;
}

.bco-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-900);
  margin-bottom: 18px;
}
.bco-bullets {
  padding-left: 24px;
  margin: 0 0 22px;
}
.bco-bullets li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  list-style: disc;
}

.bco-cta-wrap {
  text-align: center;
  padding: 18px 0 30px;
}
.bco-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-500);
  color: #fff;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
}
.bco-btn:hover { background: var(--green-600); }
.bco-btn svg { width: 14px; height: 14px; }

.bco-cards {
  max-width: 1180px;
  margin: 20px auto 10px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bco-delivery {
  margin-top: 18px;
}
.bco-delivery__item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.bco-delivery__item:last-child { border-bottom: none; }
.bco-delivery__icon {
  width: 72px;
  height: 48px;
  color: var(--green-500);
  flex-shrink: 0;
}
.bco-delivery__icon svg,
.bco-delivery__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bco-delivery__text h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.bco-delivery__text p {
  font-size: 15px;
  color: var(--text-900);
  margin: 0;
  line-height: 1.5;
}

.bco-confidence {
  background: var(--bg-soft);
  padding: 60px var(--gutter);
}
.bco-confidence__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.bco-confidence__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.bco-confidence__sub {
  font-size: 15px;
  color: var(--text-700);
  margin-bottom: 30px;
}
.bco-confidence__list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: left;
  padding: 0 22px;
}
.bco-conf-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.bco-conf-item:last-child { border-bottom: none; }
.bco-conf-item__icon {
  width: 36px;
  height: 36px;
  color: var(--green-500);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bco-conf-item__icon svg,
.bco-conf-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bco-conf-item__text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.bco-conf-item__text p {
  font-size: 14px;
  color: var(--text-900);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .bco-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bco-intro__text { padding-left: 0; }
  .bco-intro__title { font-size: 24px; }
  .bco-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bco-cards { grid-template-columns: 1fr; }
}

/* ============================================
   Vehicle Locator page
   ============================================ */
.vl-page {
  background: #fff;
  color: var(--text-900);
}
.vl-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.vl-link:hover { text-decoration: underline; }

.vl-hero {
  background: var(--bg-soft);
  padding: 60px var(--gutter);
}
.vl-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 40px;
}
.vl-hero__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.25;
}
.vl-hero__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 720px;
}

.vl-form-wrap {
  padding: 50px var(--gutter) 80px;
}
.vl-form {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 40px;
}
.vl-form__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 14px;
  color: var(--text-900);
}
.vl-form__field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-900);
  outline: none;
  min-height: 130px;
  resize: vertical;
}
.vl-form__field textarea:focus {
  border-color: var(--green-500);
}
.vl-form__counter {
  font-size: 12px;
  color: var(--text-500);
  margin-top: 4px;
  margin-bottom: 26px;
}
.vl-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .vl-hero__inner,
  .vl-form { padding-left: 0; }
  .vl-hero__title { font-size: 24px; }
}
@media (max-width: 600px) {
  .vl-form__row { grid-template-columns: 1fr; }
}

/* ============================================
   Protection Products page
   ============================================ */
.pp-page {
  background: #fff;
  color: var(--text-900);
}

.pp-intro {
  background: var(--bg-soft);
  padding: 60px var(--gutter);
}
.pp-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pp-intro__text {
  padding-left: 40px;
}
.pp-intro__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.3;
}
.pp-intro__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 480px;
}
.pp-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.pp-cards-section {
  padding: 50px var(--gutter) 80px;
}
.pp-cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pp-card__icon {
  color: var(--green-500);
  width: 72px;
  height: 64px;
  margin-bottom: 28px;
}
.pp-card__icon svg,
.pp-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pp-card__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-900);
  margin-bottom: 32px;
  flex: 1;
  max-width: 360px;
}
.pp-card__cta {
  color: var(--green-500);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pp-card__cta svg { width: 12px; height: 12px; }
.pp-card__cta:hover { color: var(--green-600); }

@media (max-width: 900px) {
  .pp-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pp-intro__text { padding-left: 0; }
  .pp-intro__title { font-size: 22px; }
  .pp-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pp-cards { grid-template-columns: 1fr; }
}

/* ============================================
   Total Loss Replacement page
   ============================================ */
.tl-page {
  background: #fff;
  color: var(--text-900);
}
.tl-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.tl-link:hover { text-decoration: underline; }

.tl-hero {
  background: var(--bg-soft);
  padding: 60px var(--gutter);
}
.tl-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 40px;
}
.tl-hero__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.25;
}
.tl-hero__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 720px;
  margin-bottom: 16px;
}

.tl-form__heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.tl-form__max {
  font-size: 12px;
  color: var(--text-500);
  margin-top: -16px;
  margin-bottom: 20px;
}

.tl-faq {
  padding: 0 var(--gutter) 80px;
}
.tl-faq__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 40px;
}
.tl-faq__item {
  margin-bottom: 28px;
}
.tl-faq__item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-900);
}
.tl-faq__item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 920px;
}

@media (max-width: 900px) {
  .tl-hero__inner,
  .tl-faq__inner { padding-left: 0; }
  .tl-hero__title { font-size: 22px; }
}

/* ============================================
   Online Vehicle Valuation page
   ============================================ */
.ovv-page {
  background: #fff;
  color: var(--text-900);
}

.ovv-hero img {
  width: 100%;
  max-width: 1020px;
  height: 380px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.ovv-section {
  padding: 50px var(--gutter) 80px;
}
.ovv-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.ovv-stepper {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.ovv-stepper::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #c9ccd0;
  z-index: 0;
}
.ovv-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.ovv-step__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c9ccd0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ovv-step__circle svg {
  width: 18px;
  height: 18px;
}
.ovv-step.is-current .ovv-step__circle {
  background: var(--green-500);
}
.ovv-step__label {
  font-size: 13px;
  color: var(--text-700);
}

.ovv-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}
.ovv-sub {
  font-size: 15px;
  color: var(--text-900);
  margin-bottom: 40px;
}

.ovv-form {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ovv-field {
  display: block;
}
.ovv-field__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 8px;
}
.ovv-field__input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--text-900);
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-900);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23181918' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}
.ovv-field__input:focus {
  border-color: var(--green-500);
}

.ovv-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}
.ovv-btn {
  flex: 1;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
}
.ovv-btn--secondary {
  background: #c9ccd0;
  color: #fff;
}
.ovv-btn--secondary:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.ovv-btn--secondary:not(:disabled):hover {
  background: var(--green-500);
}

.ovv-field__input:disabled {
  background-color: #f4f5f6;
  color: #9ca0a4;
  cursor: not-allowed;
  border-color: #d4d6da;
}
.ovv-btn:disabled { cursor: not-allowed; }

.ovv-result {
  max-width: 880px;
  margin: 20px auto 0;
  padding: 28px 24px 40px;
  background: #fff;
  border-radius: 4px;
}
.ovv-result[hidden] { display: none; }
.ovv-result__heading {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-900);
}

/* ---- KBB-style gauge ---- */
.ovv-gauge {
  position: relative;
  width: 360px;
  max-width: 100%;
  margin: 12px auto 24px;
}
.ovv-gauge__marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4px;
}
.ovv-gauge__range {
  background: var(--green-500, #1A9E47);
  color: #fff;
  padding: 8px 22px 10px;
  border-radius: 3px 3px 0 0;
  min-width: 200px;
  text-align: center;
}
.ovv-gauge__range-label { margin: 0; font-size: 12px; letter-spacing: 0.04em; opacity: 0.95; }
.ovv-gauge__range-value { margin: 2px 0 0; font-size: 18px; font-weight: 700; }
.ovv-gauge__value {
  background: #fff;
  color: var(--text-900);
  border: 1px solid #d4d6da;
  border-top: 0;
  padding: 6px 22px 8px;
  border-radius: 0 0 3px 3px;
  min-width: 200px;
  text-align: center;
}
.ovv-gauge__value-label { margin: 0; font-size: 12px; color: var(--text-700); }
.ovv-gauge__value-amount { margin: 2px 0 0; font-size: 18px; font-weight: 700; }
.ovv-gauge__line {
  width: 2px;
  height: 22px;
  background: var(--text-900);
  margin: 0 auto;
}
.ovv-gauge__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-500, #1A9E47);
  border: 2px solid var(--text-900);
  margin: -4px auto 0;
}
.ovv-gauge__arc {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px;
}
.ovv-gauge__badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 22%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #2196f3 0%, #0d47a1 70%, #082567 100%);
  border: 4px solid #f5d020;
  box-shadow: 0 0 0 2px #0d47a1, 0 4px 8px rgba(0,0,0,0.2);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1;
}
.ovv-gauge__badge-arc { font-size: 8px; letter-spacing: 0.06em; color: #f5d020; }
.ovv-gauge__badge-arc--top { margin-bottom: 4px; }
.ovv-gauge__badge-arc--bot { margin-top: 4px; }
.ovv-gauge__badge-middle { font-size: 11px; letter-spacing: 0.02em; color: #fff; }

.ovv-result__condition,
.ovv-result__validity {
  margin: 30px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-900);
}
.ovv-result__validity { margin-top: 6px; }

.ovv-result__cta-heading {
  margin: 40px 0 8px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--text-900);
}
.ovv-result__cta-sub {
  margin: 0 0 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-700);
}
.ovv-result__cta-stack {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ovv-cta-btn {
  display: block;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
}
.ovv-cta-btn--primary {
  background: var(--green-500, #1A9E47);
  color: #fff;
}
.ovv-cta-btn--primary:hover { background: #178a3e; }
.ovv-cta-btn--secondary {
  background: #a4adb8;
  color: #fff;
}
.ovv-cta-btn--secondary:hover { background: #8c95a1; }

.ovv-result__startover {
  margin-top: 30px;
  text-align: center;
}
.ovv-result__startover .ovv-btn { max-width: 200px; }

.ovv-btn--cta {
  background: var(--green-500, #1A9E47) !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.ovv-btn--cta:hover { background: #178a3e !important; }

/* Stepper completed-state highlight */
.ovv-step.is-done .ovv-step__circle { background: var(--green-500, #1A9E47); }
/* Add a green ring around the "you are here" circle. */
.ovv-step.is-current .ovv-step__circle {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--green-500, #1A9E47);
}
/* The connecting line tints green for completed segments. */
.ovv-stepper { position: relative; }
.ovv-stepper::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 5%;
  height: 2px;
  background: var(--green-500, #1A9E47);
  z-index: 0;
  width: 0;
  transition: width 0.3s ease;
  pointer-events: none;
}
.ovv-stepper.is-progress-1::after { width: 14%; }
.ovv-stepper.is-progress-2::after { width: 32%; }
.ovv-stepper.is-progress-3::after { width: 50%; }
.ovv-stepper.is-progress-4::after { width: 68%; }
.ovv-stepper.is-progress-5::after { width: 86%; }

/* Step 2 intro paragraph */
.ovv-step2__intro {
  margin: 0 0 26px;
  font-size: 16px;
  color: var(--text-900);
}

/* Color radio grid */
.ovv-colors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-top: 12px;
}
.ovv-color {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-900);
  cursor: pointer;
}
.ovv-color input[type="radio"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #1f1f1f;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.ovv-color input[type="radio"]:checked {
  border-color: var(--green-500, #1A9E47);
}
.ovv-color input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green-500, #1A9E47);
}

/* Primary green-filled button (step 2 Previous) */
.ovv-btn--primary {
  background: var(--green-500, #1A9E47);
  color: #fff;
}
.ovv-btn--primary:hover { background: #178a3e; }

/* Step 3 -- equipment toggle and options panel */
.ovv-radio-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 48px;
  margin: 8px 0 24px;
}
.ovv-radio-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.ovv-radio-row input[type="radio"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #1f1f1f;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.ovv-radio-row input[type="radio"]:checked { border-color: var(--green-500, #1A9E47); }
.ovv-radio-row input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green-500, #1A9E47);
}
.ovv-radio-row__text { display: flex; flex-direction: column; gap: 2px; }
.ovv-radio-row__title { font-weight: 700; font-size: 16px; color: var(--text-900); }
.ovv-radio-row__sub   { font-size: 13px; color: var(--text-700); }

.ovv-options { margin-top: 12px; }
.ovv-options[hidden] { display: none; }
.ovv-options__section {
  background: #e6eef6;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-900);
  padding: 10px 16px;
  margin: 26px 0 18px;
}
.ovv-options__section:first-child { margin-top: 0; }
.ovv-options__group { margin: 0 0 22px; }
.ovv-options__label {
  font-size: 13px;
  color: var(--text-700);
  margin: 0 0 10px;
}
.ovv-options__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.ovv-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.ovv-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-900);
  cursor: pointer;
}
.ovv-check input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #1f1f1f;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.ovv-check input[type="checkbox"]:checked {
  background: #fff;
}
.ovv-check input[type="checkbox"]:checked::after {
  content: "\2713";
  position: absolute;
  left: 1px;
  top: -3px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-900);
  line-height: 1;
}

/* Step 4 -- condition selection */
.ovv-step4__sub {
  margin: -14px 0 22px;
  font-size: 15px;
  color: var(--text-900);
}
.ovv-conditions {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e0e3e7;
}
.ovv-cond {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid #e0e3e7;
  cursor: pointer;
}
.ovv-cond input[type="radio"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #1f1f1f;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.ovv-cond input[type="radio"]:checked { border-color: var(--green-500, #1A9E47); }
.ovv-cond input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green-500, #1A9E47);
}
.ovv-cond__text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ovv-cond__title { font-weight: 700; font-size: 16px; color: var(--text-900); }
.ovv-cond__desc  { font-size: 13px; color: var(--text-700); }
.ovv-cond__info {
  flex-shrink: 0;
  background: #1976d2;
  color: #fff;
  border: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: 'Times New Roman', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  cursor: help;
}
.ovv-cond__info:hover { background: #105ea3; }

.ovv-disclaimer {
  margin-top: 50px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-700);
}

@media (max-width: 700px) {
  .ovv-hero img { height: 280px; }
  .ovv-stepper::before { left: 8%; right: 8%; }
}

/* ============================================
   In-Person Trade-In Appraisal page
   ============================================ */
.tia-page {
  background: #fff;
  color: var(--text-900);
}
.tia-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.tia-link:hover { text-decoration: underline; }

.tia-intro {
  background: var(--bg-soft);
  padding: 50px var(--gutter) 40px;
}
.tia-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 40px;
}
.tia-intro__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}
.tia-intro__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-900);
  max-width: 760px;
}

.tia-form-wrap {
  padding: 40px var(--gutter) 80px;
}
.tia-form {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 40px;
}
.tia-form__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.tia-form__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.tia-form__field {
  position: relative;
  display: block;
}
.tia-form__field input,
.tia-form__field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 22px 14px 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-900);
  outline: none;
}
.tia-form__field textarea {
  padding-top: 22px;
  resize: vertical;
  min-height: 110px;
}
.tia-form__field input:focus,
.tia-form__field textarea:focus {
  border-color: var(--green-500);
}
.tia-form__field > span {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 13px;
  color: var(--text-500);
  pointer-events: none;
  transition: top 0.15s, font-size 0.15s;
}
.tia-form__field input:not(:placeholder-shown) + span,
.tia-form__field input:focus + span,
.tia-form__field textarea:not(:placeholder-shown) + span,
.tia-form__field textarea:focus + span {
  top: 5px;
  font-size: 11px;
}
.tia-form__field--textarea {
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .tia-intro__inner,
  .tia-form { padding-left: 0; }
  .tia-form__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tia-form__grid { grid-template-columns: 1fr; }
}

/* ============================================
   Our Appraisal Process page
   ============================================ */
.oap-page {
  background: #fff;
  color: var(--text-900);
}
.oap-link {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: none;
}
.oap-link:hover { text-decoration: underline; }

.oap-intro {
  background: var(--bg-soft);
  padding: 50px var(--gutter);
}
.oap-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.oap-intro__text {
  padding-left: 40px;
}
.oap-intro__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.25;
}
.oap-intro__sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-900);
  margin-bottom: 16px;
  max-width: 480px;
}
.oap-intro__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
.oap-intro__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.oap-steps {
  padding: 60px var(--gutter) 40px;
}
.oap-steps__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.oap-steps__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--text-900);
}
.oap-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.oap-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 32px;
}
.oap-step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--green-500);
  color: var(--green-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}
.oap-step__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-900);
}
.oap-step__body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-900);
}

.oap-actions {
  padding: 20px var(--gutter) 80px;
}
.oap-actions__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.oap-action {
  text-decoration: none;
  display: block;
}
.oap-action__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 14px;
}
.oap-action__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.oap-action:hover .oap-action__img img {
  transform: scale(1.04);
}
.oap-action__label {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-500);
}
.oap-action:hover .oap-action__label { color: var(--green-600); }

@media (max-width: 900px) {
  .oap-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oap-intro__text { padding-left: 0; }
  .oap-intro__title { font-size: 24px; }
  .oap-actions__inner { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 800px) {
  .finance-intro {
    padding: 40px var(--gutter);
  }
  .finance-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .finance-intro__text {
    padding-left: 0;
  }
  .finance-intro__title {
    font-size: 26px;
  }
  .finance-cards__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .primary-nav__inner {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter);
  }
  .primary-nav__inner.is-open { display: flex; }
  .primary-nav__inner li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .primary-nav__inner li a {
    display: block;
    padding: 14px 0;
  }
}
.utility-nav {
  background: linear-gradient(180deg, var(--green-500) 0%, var(--green-600) 100%);
  color: #fff;
  font-size: 13px;
}
.utility-nav__inner {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  padding: 8px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.utility-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  opacity: 1;
  transition: opacity 0.2s;
}
.utility-nav__link:hover {
  opacity: 1;
  text-decoration: underline;
}
.utility-nav__link svg {
  width: 14px;
  height: 14px;
}

.main-nav {
  background: var(--green-500);
  color: #fff;
}
.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  left: -50px; 

}
.brand__img {
  height: 20px;
  width: auto;
  display: block;
}
.brand__logo {
  background: #fff;
  color: var(--green-600);
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  display: inline-block;
  align-self: flex-start;
  text-transform: lowercase;
  font-family: "Fredoka", var(--font-sans);
  
}
.brand__name {
  display: inline-block;
  font-family: "Fredoka", var(--font-sans);
  font-size: 35px;
  font-weight: 500;
  line-height: -0.2;
  letter-spacing: -0.001em;
  color: #fff;
  transform: scaleX(1.2);      /* ← horizontal squish: 1 = normal, 0.85 = 15% narrower, 0.7 = 30% narrower */
  transform-origin: left center;
  
}
.brand__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  margin-left: 16px;
  
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-links a:hover {
  border-bottom-color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-actions__fav,
.nav-actions__signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-actions__fav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.2s;
}
.nav-actions__fav:hover {
  background: rgba(255, 255, 255, 0.15);
}
.nav-actions__fav svg {
  width: 22px;
  height: 22px;
}
.nav-actions__signin {
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-actions__signin:hover {
  background: rgba(255, 255, 255, 0.15);
}
.nav-actions__signin svg {
  width: 16px;
  height: 16px;
}

.search-bar-row {
  background: var(--green-500);
  padding: 0 var(--gutter) 24px;
}
.search-bar-row__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.search-input {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  gap: 12px;
}
.search-input svg {
  width: 20px;
  height: 20px;
  color: var(--text-500);
  flex-shrink: 0;
}
.search-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: var(--text-900);
}
.search-input input::placeholder {
  color: var(--text-500);
}
.search-input__submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-600);
  font-weight: 600;
  font-size: 15px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.search-input__submit svg {
  color: var(--green-500);
}

.dealership-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-700);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.dealership-pill svg {
  width: 18px;
  height: 18px;
}
.dealership-pill strong {
  font-weight: 700;
}
.dealership-pill u {
  text-decoration: underline;
  cursor: pointer;
}

/* mobile nav */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-600);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px var(--gutter);
    gap: 4px;
    z-index: 50;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .main-nav__inner {
    position: relative;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-actions__signin span {
    display: none;
  }
  .nav-actions__signin {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .utility-nav__inner {
    gap: 14px;
    font-size: 12px;
  }
  .search-bar-row__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .dealership-pill {
    justify-content: center;
  }
  .brand__name {
    font-size: 18px;
  }
}

/* ============================================
   Footer
   ============================================ */
/* ----- Green top strip: socials + brand + phone ----- */
.footer-top {
  background: var(--green-500);
  padding: 18px var(--gutter);
}
.footer-top__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-top__socials {
  display: flex;
  gap: 14px;
}
.footer-top__socials a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.2s;
}
.footer-top__socials a:hover { opacity: 0.8; }
.footer-top__socials svg { width: 30px; height: 30px; }
.footer-top__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.footer-top__brand img {
  height: 22px;
  width: auto;
}
.footer-top__brand-name {
  font-family: "Fredoka", var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-block;
}
.footer-top__phone {
  justify-self: end;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.footer-top__phone:hover { text-decoration: underline; }

@media (max-width: 800px) {
  .footer-top__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 16px; }
  .footer-top__phone { justify-self: center; }
}

/* ----- Dark Quick Links footer ----- */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px var(--gutter) 28px;
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.site-footer__intro {
  font-size: 14px;
  color: #cfd2d4;
  margin: 0 auto 48px;
  line-height: 1.65;
  text-align: center;
}
.site-footer__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #fff;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  color: #cfd2d4;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col .footer-disabled {
  font-size: 13px;
  color: #cfd2d4;
  cursor: default;
  display: inline-block;
}
.footer-col .footer-disabled:hover { text-decoration: underline; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 12px;
  color: #cfd2d4;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer__bottom a { color: #cfd2d4; transition: color 0.2s; }
.site-footer__bottom a:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom .footer-disabled { color: #cfd2d4; cursor: default; }
.site-footer__bottom .footer-disabled:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom .sep { margin: 0 8px; opacity: 0.4; }
.site-footer__links { display: block; }
.site-footer__attrib { display: block; margin-top: 8px; opacity: 0.6; }
.site-footer__health { display: block; margin: 6px 0; }
.site-footer__choices { display: block; margin-top: 4px; }
.site-footer__choices .ad-icon {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 2px;
  margin-left: 2px;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
}

/* ----- Below-footer green legal strip ----- */
.legal-strip {
  background: var(--green-500);
  color: #fff;
  padding: 36px var(--gutter) 56px;
}
.legal-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.legal-strip__trademark {
  font-size: 13px;
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto 56px;
  text-align: center;
}
.legal-strip__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}
.legal-strip p {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #fff;
}
.state-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 32px;
  margin-top: 32px;
}
.state-grid a {
  color: #fff;
  font-size: 13px;
  padding: 4px 0;
  transition: text-decoration 0.2s;
}
.state-grid a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .state-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .state-grid { grid-template-columns: 1fr; }
}


/* ============================================
   Apply for Financing page (.aff-*)
   ============================================ */
.aff-page { background: #fff; color: #222; }

.aff-intro {
  background: #f3f3f4;
  padding: 56px var(--gutter) 64px;
}
.aff-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.aff-intro__title {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #222;
}
.aff-intro__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  max-width: 980px;
  margin: 0;
}

.aff-finder {
  background: #fff;
  padding: 56px var(--gutter) 64px;
}
.aff-finder__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.aff-finder__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #222;
}
.aff-finder__narrow {
  font-size: 14px;
  color: #444;
  margin: 0 0 18px;
}
.aff-finder__narrow strong { color: #222; }

.aff-search {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.aff-search__zip {
  width: 180px;
  padding: 10px 12px;
  border: 1px solid #c8c8c8;
  background: #f3f3f3;
  border-radius: 2px;
  font-size: 14px;
  color: #444;
  font-family: inherit;
}
.aff-search__or {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}
.aff-search__state {
  flex: 1;
  min-width: 220px;
  padding: 10px 12px;
  border: 1px solid #c8c8c8;
  background: #fff;
  border-radius: 2px;
  font-size: 14px;
  color: #444;
  font-family: inherit;
}
.aff-search__btn {
  background: var(--green-500, #1A9E47);
  color: #fff;
  border: 0;
  padding: 11px 60px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}
.aff-search__btn:hover { background: #157a37; }

.aff-finder__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  border: 1px solid #ddd;
}
.aff-list {
  max-height: 520px;
  overflow-y: auto;
  border-right: 1px solid #ddd;
  background: #fff;
}
.aff-item {
  padding: 16px 18px;
  border-bottom: 1px solid #e5e5e5;
}
.aff-item.is-active {
  background: #e3f0fb;
}
.aff-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #222;
}
.aff-item__addr {
  font-size: 13px;
  color: #444;
  margin: 0 0 6px;
  line-height: 1.4;
}
.aff-item__phone {
  display: none;
}
.aff-item__link {
  display: block;
  color: var(--green-500, #1A9E47);
  font-size: 13px;
  text-decoration: none;
  margin-top: 2px;
}
.aff-item__link:hover { text-decoration: underline; }

.aff-map { background: #e8e8e8; min-height: 520px; }
.aff-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.aff-steps {
  background: #fff;
  padding: 24px var(--gutter) 80px;
}
.aff-steps__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.aff-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.aff-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
}
.aff-step__num {
  width: 80px;
  height: 8 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 600;
  color: #444;
  font-family: Georgia, serif;
  margin: 0 auto;
}
.aff-step__num img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.aff-step__body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0 12px;
  color: #222;
}
.aff-step__body p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 12px;
}
.aff-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.aff-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .aff-finder__grid { grid-template-columns: 1fr; }
  .aff-list { max-height: 360px; border-right: 0; border-bottom: 1px solid #ddd; }
  .aff-map, .aff-map iframe { min-height: 360px; }
  .aff-step { grid-template-columns: 80px 1fr; gap: 16px; }
  .aff-step__num { width: 64px; height: 64px; font-size: 28px; }
  .aff-search__btn { flex: 1; }
}


/* ============================================
   First Time Car Buyer page (.ftb-*)
   ============================================ */
.ftb-page { background: #fff; color: #222; }

.ftb-intro {
  background: #f3f3f4;
  padding: 56px var(--gutter) 64px;
}
.ftb-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ftb-intro__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #222;
  line-height: 1.15;
}
.ftb-intro__sub {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
.ftb-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.ftb-form-wrap {
  background: #fff;
  padding: 56px var(--gutter) 24px;
}
.ftb-form {
  max-width: 980px;
  margin: 0 auto;
}
.ftb-form__heading {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 28px;
  color: #222;
}
.ftb-form__subheading {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #222;
}
.ftb-form__field {
  position: relative;
  margin-bottom: 12px;
}
.ftb-form__field--textarea textarea {
  width: 100%;
  border: 0;
  background: #f3f3f3;
  border-bottom: 1px solid #c8c8c8;
  padding: 16px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #333;
  resize: vertical;
  min-height: 130px;
  box-sizing: border-box;
}
.ftb-form__field--textarea textarea:focus {
  outline: none;
  border-bottom-color: var(--green-500, #1A9E47);
}

.ftb-tips {
  background: #fff;
  padding: 24px var(--gutter) 80px;
}
.ftb-tips__inner {
  max-width: 980px;
  margin: 0 auto;
}
.ftb-tips__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ftb-tip {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: start;
}
.ftb-tip__icon {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500, #1A9E47);
  margin: 0 auto;
}
.ftb-tip__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ftb-tip__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.ftb-tip__body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 14px 0 10px;
  color: #222;
}
.ftb-tip__body p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.ftb-tips__outro {
  margin-top: 40px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.ftb-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.ftb-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .ftb-intro__inner { grid-template-columns: 1fr; gap: 32px; }
  .ftb-tip { grid-template-columns: 80px 1fr; gap: 16px; }
  .ftb-tip__icon { width: 64px; height: 64px; }
}


/* ============================================
   Car Financing Guide page (.cfg-*)
   ============================================ */
.cfg-page { background: #fff; color: #222; }

.cfg-intro {
  background: #f3f3f4;
  padding: 64px var(--gutter) 96px;
}
.cfg-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.cfg-intro__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 22px;
  color: #222;
  line-height: 1.2;
}
.cfg-intro__sub {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 1000px;
  margin: 0;
}

.cfg-topics {
  background: #fff;
  padding: 24px var(--gutter) 32px;
}
.cfg-topics__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.cfg-topic {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid #e3e3e3;
  align-items: start;
}
.cfg-topic:first-child { border-top: 0; }

.cfg-topic__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  color: var(--green-500, #1A9E47);
}
.cfg-topic__icon svg { width: 100%; height: 100%; display: block; }
.cfg-topic__icon img { width: 100%; height: 100%; display: block; object-fit: contain; }
.cfg-topic__icon--percent {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cfg-topic__icon--percent span {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 86px;
  line-height: 1;
  color: var(--green-500, #1A9E47);
}

.cfg-topic__body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 14px;
  color: #222;
}
.cfg-topic__body > p {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0 0 20px;
}

.cfg-faq {
  background: #f3f3f3;
  border-top: 1px solid #e0e0e0;
}
.cfg-faq:last-of-type { border-bottom: 1px solid #e0e0e0; }
.cfg-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cfg-faq summary::-webkit-details-marker { display: none; }
.cfg-faq summary::before {
  content: "+";
  display: inline-block;
  width: 20px;
  font-size: 22px;
  line-height: 1;
  color: #333;
  font-weight: 400;
  text-align: center;
}
.cfg-faq[open] summary::before { content: "\2212"; }
.cfg-faq__body {
  padding: 0 18px 16px 50px;
}
.cfg-faq__body p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.cfg-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.cfg-link:hover { text-decoration: underline; }

.cfg-cta {
  background: #f3f3f4;
  padding: 64px var(--gutter);
}
.cfg-cta__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.cfg-cta__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 28px;
  color: #222;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.cfg-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-500, #1A9E47);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.cfg-cta__btn svg { width: 14px; height: 14px; }
.cfg-cta__btn:hover { background: #157a37; }

@media (max-width: 900px) {
  .cfg-topic { grid-template-columns: 100px 1fr; gap: 20px; }
  .cfg-topic__icon { width: 72px; height: 72px; }
  .cfg-topic__icon--percent span { font-size: 64px; }
  .cfg-faq__body { padding-left: 18px; }
}
@media (max-width: 560px) {
  .cfg-topic { grid-template-columns: 1fr; gap: 12px; }
  .cfg-topic__icon { margin: 0; }
  .cfg-intro__title { font-size: 26px; }
}


/* ============================================
   Car Payment Calculators page (.cpc-*)
   ============================================ */
.cpc-page { background: #fff; color: #222; }

.cpc-intro {
  background: #f3f3f4;
  padding: 56px var(--gutter) 64px;
}
.cpc-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cpc-intro__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #222;
}
.cpc-intro__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  max-width: 460px;
}
.cpc-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.cpc-mind {
  background: #fff;
  padding: 56px var(--gutter) 32px;
}
.cpc-mind__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.cpc-mind__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 28px;
  color: #222;
}
.cpc-mind__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cpc-mind__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}
.cpc-mind__icon {
  width: 56px;
  height: 56px;
  color: var(--green-500, #1A9E47);
}
.cpc-mind__icon svg { width: 100%; height: 100%; display: block; }
.cpc-mind__item p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 6px 0 0;
}

.cpc-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.cpc-link:hover { text-decoration: underline; }

.cpc-calc {
  background: #fff;
  padding: 16px var(--gutter) 64px;
  border-top: 1px solid #e3e3e3;
  margin-top: 32px;
}
.cpc-calc__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.cpc-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #ddd;
  margin: 32px 0 0;
}
.cpc-tab {
  background: transparent;
  border: 0;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.cpc-tab.is-active {
  color: var(--green-500, #1A9E47);
  border-bottom-color: var(--green-500, #1A9E47);
}

.cpc-panel {
  background: #f3f3f4;
  padding: 36px 32px 40px;
  border: 1px solid #e3e3e3;
  border-top: 0;
}
.cpc-panel__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 22px;
  color: #222;
  text-align: center;
}
.cpc-result {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 12px;
}
.cpc-result__value {
  font-size: 38px;
  font-weight: 700;
  color: #222;
}
.cpc-panel__note {
  font-size: 14px;
  color: #555;
  margin: 0 0 28px;
}

.cpc-field {
  position: relative;
  margin-bottom: 22px;
}
.cpc-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
}
.cpc-add {
  display: inline-flex;
  width: 18px;
  height: 18px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}
.cpc-field input,
.cpc-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c8c8c8;
  background: #fff;
  border-radius: 2px;
  font-family: inherit;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
}
.cpc-field input:focus,
.cpc-field select:focus {
  outline: none;
  border-color: var(--green-500, #1A9E47);
}
.cpc-info {
  position: absolute;
  right: -28px;
  top: 38px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c8c8c8;
  color: #fff;
  font-size: 11px;
  font-style: italic;
  font-family: Georgia, serif;
  text-align: center;
  line-height: 18px;
  cursor: help;
}

.cpc-rate { margin: 8px 0 28px; }
.cpc-rate__label {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.cpc-rate__label .cpc-info {
  position: static;
  width: 18px;
  height: 18px;
  line-height: 18px;
}
.cpc-rate__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cpc-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  cursor: pointer;
}
.cpc-radio input { accent-color: var(--green-500, #1A9E47); }
.cpc-rate__col select,
.cpc-rate__col input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c8c8c8;
  background: #fff;
  border-radius: 2px;
  font-family: inherit;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
}
.cpc-rate__col select:disabled,
.cpc-rate__col input:disabled {
  background: #ececec;
  color: #999;
}

.cpc-submit {
  text-align: center;
  margin-top: 12px;
}
.cpc-submit__btn {
  display: inline-block;
  background: var(--green-500, #1A9E47);
  color: #fff;
  text-decoration: none;
  padding: 14px 56px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 2px;
}
.cpc-submit__btn:hover { background: #157a37; }

.cpc-actions {
  background: #fff;
  padding: 24px var(--gutter) 80px;
}
.cpc-actions__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cpc-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 40px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cpc-action:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.cpc-action__icon {
  width: 80px;
  height: 60px;
  color: var(--green-500, #1A9E47);
  margin-bottom: 22px;
}
.cpc-action__icon svg { width: 100%; height: 100%; display: block; }
.cpc-action__label {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-500, #1A9E47);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cpc-intro__inner { grid-template-columns: 1fr; gap: 28px; }
  .cpc-mind__grid { grid-template-columns: 1fr; gap: 28px; }
  .cpc-rate__row { grid-template-columns: 1fr; gap: 16px; }
  .cpc-actions__inner { grid-template-columns: 1fr; }
  .cpc-info { display: none; }
}


/* ============================================
   Vehicle Transfer page (.vt-*)
   ============================================ */
.vt-page { background: #fff; color: #222; }

.vt-intro {
  background: #f3f3f4;
  padding: 64px var(--gutter) 80px;
}
.vt-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.vt-intro__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 22px;
  color: #222;
}
.vt-intro__sub {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  max-width: 540px;
}
.vt-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.vt-how {
  background: #fff;
  padding: 64px var(--gutter) 96px;
}
.vt-how__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.vt-how__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #222;
}
.vt-how__copy {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  margin: 0 0 20px;
}

.vt-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.vt-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .vt-intro__inner { grid-template-columns: 1fr; gap: 28px; }
}


/* ============================================
   How Enterprise Makes It Easy page (.hem-*)
   ============================================ */
.hem-page { background: #fff; color: #222; }

.hem-intro {
  background: #f3f3f4;
  padding: 56px var(--gutter) 80px;
}
.hem-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hem-intro__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #222;
}
.hem-intro__sub {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #222;
}
.hem-intro__copy {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}
.hem-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hem-section {
  background: #fff;
  padding: 48px var(--gutter);
  border-bottom: 1px solid #e3e3e3;
}
.hem-section--alt { background: #fff; }
.hem-section__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.hem-section__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #222;
}
.hem-section__copy {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0;
  max-width: 1100px;
}

.hem-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.hem-link:hover { text-decoration: underline; }
.hem-link--bright { color: var(--green-500, #1A9E47); }

.hem-confidence {
  background: #f3f3f4;
  padding: 72px var(--gutter);
}
.hem-confidence__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.hem-confidence__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 32px;
  color: #222;
  text-align: center;
}
.hem-confidence__card {
  background: #fff;
  border: 1px solid #e3e3e3;
  padding: 24px 32px;
  max-width: 980px;
  margin: 0 auto;
}
.hem-feature {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px dashed #d4d4d4;
  align-items: center;
}
.hem-feature:last-child { border-bottom: 0; }
.hem-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  color: var(--green-500, #1A9E47);
}
.hem-feature__icon svg { width: 100%; height: 100%; display: block; }
.hem-feature__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #222;
}
.hem-feature__body p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.hem-cta {
  background: #f3f3f4;
  padding: 56px var(--gutter) 80px;
  border-top: 1px solid #e3e3e3;
}
.hem-cta__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.hem-cta__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  color: #222;
  margin: 0 0 28px;
}
.hem-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-500, #1A9E47);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.hem-cta__btn:hover { background: #157a37; }
.hem-cta__btn svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .hem-intro__inner { grid-template-columns: 1fr; gap: 28px; }
  .hem-feature { grid-template-columns: 56px 1fr; gap: 16px; }
  .hem-feature__icon { width: 48px; height: 48px; }
  .hem-confidence__card { padding: 16px 18px; }
}


/* ============================================
   Certified Used Advantage page (.cua-*)
   ============================================ */
.cua-page { background: #fff; color: #222; }

.cua-intro {
  background: #f3f3f4;
  padding: 64px var(--gutter) 96px;
}
.cua-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.cua-intro__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 22px;
  color: #222;
  line-height: 1.2;
}
.cua-intro__sub {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  margin: 0;
  max-width: 1000px;
}

.cua-advantages {
  background: #fff;
  padding: 48px var(--gutter) 64px;
}
.cua-advantages__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.cua-advantages__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #222;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 16px;
}

.cua-block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #e3e3e3;
  align-items: start;
}
.cua-block__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  color: var(--green-500, #1A9E47);
}
.cua-block__icon svg,
.cua-block__icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.cua-block__body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #222;
}
.cua-block__body p {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0 0 16px;
}

.cua-list {
  margin: 0;
  padding-left: 22px;
}
.cua-list li {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 10px;
}

.cua-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
  font-weight: 600;
}
.cua-link:hover { text-decoration: underline; }

.cua-faqs {
  margin-top: 18px;
}
.cua-faq {
  background: #f3f3f3;
  border-top: 1px solid #e0e0e0;
}
.cua-faq:last-of-type { border-bottom: 1px solid #e0e0e0; }
.cua-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--green-500, #1A9E47);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cua-faq summary::-webkit-details-marker { display: none; }
.cua-faq summary::before {
  content: "+";
  display: inline-block;
  width: 18px;
  font-size: 20px;
  line-height: 1;
  color: var(--green-500, #1A9E47);
  text-align: center;
}
.cua-faq[open] summary::before { content: "\2212"; }
.cua-faq__body {
  padding: 0 16px 14px 46px;
}
.cua-faq__body p {
  font-size: 14px;
  line-height: 1.55;
  color: #444;
  margin: 0;
}

.cua-cta {
  background: #f3f3f4;
  padding: 56px var(--gutter) 72px;
}
.cua-cta__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.cua-cta__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: #222;
  margin: 0 0 28px;
}
.cua-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-500, #1A9E47);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.cua-cta__btn:hover { background: #157a37; }
.cua-cta__btn svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .cua-block { grid-template-columns: 80px 1fr; gap: 20px; }
  .cua-block__icon { width: 64px; height: 64px; }
  .cua-faq__body { padding-left: 16px; }
}
@media (max-width: 560px) {
  .cua-block { grid-template-columns: 1fr; }
  .cua-block__icon { margin: 0; }
}


/* ============================================
   Why Buy a Rental Car page (.wbr-*)
   ============================================ */
.wbr-page { background: #fff; color: #222; }

.wbr-intro {
  background: #f3f3f4;
  padding: 56px var(--gutter) 80px;
}
.wbr-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.wbr-intro__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #222;
}
.wbr-intro__sub {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}
.wbr-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.wbr-reasons,
.wbr-certified {
  background: #fff;
  padding: 56px var(--gutter);
}
.wbr-reasons__inner,
.wbr-certified__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.wbr-reasons__title,
.wbr-certified__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #222;
}

.wbr-list {
  margin: 0 0 28px;
  padding-left: 22px;
}
.wbr-list li {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 12px;
}

.wbr-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.wbr-link:hover { text-decoration: underline; }

.wbr-cta {
  text-align: center;
  margin-top: 16px;
}
.wbr-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-500, #1A9E47);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.wbr-cta__btn:hover { background: #157a37; }
.wbr-cta__btn svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .wbr-intro__inner { grid-template-columns: 1fr; gap: 28px; }
}


/* ============================================
   About Enterprise Car Sales page (.about-*)
   ============================================ */
.about-page { background: #fff; color: #222; }

.about-intro {
  background: #f3f3f4;
  padding: 56px var(--gutter) 80px;
}
.about-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-intro__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 22px;
  color: #222;
  line-height: 1.2;
}
.about-intro__copy {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0 0 18px;
}
.about-intro__copy:last-child { margin-bottom: 0; }
.about-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.about-link:hover { text-decoration: underline; }

.about-section {
  background: #fff;
  padding: 56px var(--gutter);
  border-bottom: 1px solid #e3e3e3;
}
.about-section--last { border-bottom: 0; padding-bottom: 80px; }
.about-section__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.about-section__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #222;
}
.about-section__copy {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

.about-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 40px auto 0;
  flex-wrap: wrap;
  max-width: 1080px;
}
.about-logo {
  flex: 0 1 auto;
}
.about-logo__plate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #111;
}
.about-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 18px;
  background: var(--green-500, #1A9E47);
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  font-weight: 700;
}
.about-logo__brand {
  font-size: 16px;
  letter-spacing: 0.2px;
}
.about-logo__brand--big { font-size: 20px; }
.about-logo__sub {
  font-size: 10px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.3px;
  margin-left: 2px;
}
.about-logo__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  background: #111;
  color: #fff;
  font-size: 10px;
  border-radius: 2px;
  letter-spacing: 0.3px;
}
.about-logo__plate--era1 { border: 1px solid #d0d0d0; padding: 6px 10px; border-radius: 2px; }
.about-logo__plate--era2 { border: 2px solid #111; border-radius: 22px; padding: 6px 16px; }
.about-logo__plate--era3 { flex-direction: column; align-items: center; gap: 4px; }
.about-logo__plate--era4 { gap: 8px; }
.about-logo__plate--era5 { gap: 8px; }

@media (max-width: 900px) {
  .about-intro__inner { grid-template-columns: 1fr; gap: 28px; }
  .about-logos { gap: 18px; }
  .about-logo__brand { font-size: 14px; }
  .about-logo__brand--big { font-size: 16px; }
}
.about-logos img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Used Car FAQs page (.faqs-*)
   ============================================ */
.faqs-page { background: #fff; }

.faqs-intro {
  background: #f3f3f4;
  padding: 56px var(--gutter) 64px;
}
.faqs-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.faqs-intro__title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin: 0 0 20px;
  line-height: 1.15;
}
.faqs-intro__copy {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px;
}
.faqs-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  max-height: 420px;
}

.faqs-cards {
  background: #fff;
  padding: 56px var(--gutter) 80px;
}
.faqs-cards__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faqs-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faq-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px 32px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.faq-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.faq-card__icon {
  color: var(--green-500);
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.faq-card__icon svg,
.faq-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.faq-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-500);
  margin: 0 0 14px;
}
.faq-card__copy {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin: 0;
}

@media (max-width: 900px) {
  .faqs-intro__inner { grid-template-columns: 1fr; gap: 28px; }
  .faqs-cards__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .faqs-intro__title { font-size: 28px; }
}
@media (max-width: 560px) {
  .faqs-cards__grid { grid-template-columns: 1fr; }
}

/* ============================================
   Buy a Medium-Duty Truck page (.mdt-*)
   ============================================ */
.mdt-page { background: #fff; }

.mdt-intro {
  background: #f3f3f4;
  padding: 56px var(--gutter) 64px;
}
.mdt-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mdt-intro__title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin: 0 0 20px;
  line-height: 1.2;
}
.mdt-intro__copy {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 16px;
}
.mdt-intro__more { margin-top: 8px; }
.mdt-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 360px;
}

.mdt-inventory {
  background: #fff;
  padding: 56px var(--gutter) 80px;
}
.mdt-inventory__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
}
.mdt-inventory__title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin: 0 0 18px;
}
.mdt-inventory__title--sm { margin-top: 36px; }
.mdt-inventory__copy {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 14px;
}
.mdt-list {
  margin: 12px 0 24px 20px;
  padding: 0;
  list-style: disc;
}
.mdt-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.mdt-link {
  color: var(--green-500);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mdt-link:hover { text-decoration: underline; }
.mdt-link--static {
  cursor: default;
  pointer-events: none;
}
.mdt-link--static:hover { text-decoration: none; }
.mdt-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .mdt-intro__inner { grid-template-columns: 1fr; gap: 28px; }
  .mdt-intro__title { font-size: 28px; }
  .mdt-inventory__inner { padding-left: 0; }
}


/* ============================================
   Terms of Use page (.tou-*)
   ============================================ */
.tou-page { background: #fff; color: #222; }

.tou-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px var(--gutter) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.tou-main { min-width: 0; padding-left: 80px; }

.tou-title {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #222;
  margin: 0 0 24px;
}

.tou-meta {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  margin: 0 0 24px;
}

.tou-h2 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #222;
  margin: 32px 0 14px;
}

.tou-h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 22px 0 10px;
}

.tou-p {
  font-size: 15px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 14px;
}

.tou-link {
  color: var(--green-500, #1A9E47);
  text-decoration: none;
}
.tou-link:hover { text-decoration: underline; }

/* Sidebar */
.tou-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.tou-promo {
  display: block;
  background: #fff;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tou-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.tou-promo__media {
  width: 100%;
  height: 160px;
  background: #f3f3f3;
  overflow: hidden;
}
.tou-promo__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tou-promo__caption {
  background: var(--green-500, #1A9E47);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tou-promo__caption strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.tou-promo__caption span {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .tou-wrap { grid-template-columns: 1fr; gap: 32px; }
  .tou-side { position: static; }
}


/* ============================================================
   Car Rental page (.cr-*)  —  Enterprise.com homepage clone
   ============================================================ */
.cr-body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #181918;
  background: #fff;
}
.cr-body *, .cr-body *::before, .cr-body *::after { box-sizing: border-box; }
.cr-body a { text-decoration: none; }

/* ---------- HEADER ---------- */
.cr-header {
  background: #127f4a;
  color: #fff;
}
.cr-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  gap: 24px;
}
.cr-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.cr-header__logo-img {
  height: 40px;
  display: block;
  border: 1px solid #fff;
  padding: 4px 10px;
  background: transparent;
}
.cr-header__logo-fallback {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.5px;
  border: 1px solid #fff;
  padding: 6px 14px;
}
.cr-header__util {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.cr-header__util a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}
.cr-header__util a:hover { opacity: 0.85; }
.cr-header__util svg {
  width: 16px;
  height: 16px;
}
.cr-header__signin {
  border: 1.5px solid #fff;
  border-radius: 999px;
  padding: 8px 20px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.cr-header__signin:hover {
  background: #fff;
  color: #127f4a;
}

.cr-mainnav {
  background: #169a5a;
  border-top: 1px solid #006639;
}
.cr-mainnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.cr-mainnav li {
  flex: 1;
  border-left: 1px solid #006639;
  text-align: center;
}
.cr-mainnav li:first-child { border-left: 0; }
.cr-mainnav a {
  display: block;
  padding: 22px 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.cr-mainnav a:hover { background: #127f4a; }

/* ---------- HERO ---------- */
.cr-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cr-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
}
.cr-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 28px;
  display: flex;
  justify-content: center;
}
.cr-hero__panel {
  background: #fff;
  width: 100%;
  max-width: 980px;
  padding: 40px 48px 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.cr-hero__top {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.cr-hero__title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: #181918;
}
.cr-hero__or {
  font-size: 16px;
  color: #181918;
}
.cr-hero__alt {
  color: #127f4a;
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
}
.cr-hero__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cr-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: #181918;
}
.cr-hero__star { color: #c33; }
.cr-hero__req {
  font-size: 13px;
  color: #181918;
}
.cr-hero__req em { font-style: italic; font-weight: 400; }
.cr-hero__input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #c3c3c3;
  border-radius: 0;
  font-size: 16px;
  font-family: inherit;
  color: #181918;
  margin-bottom: 20px;
}
.cr-hero__input::placeholder { color: #888; }
.cr-hero__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
}
.cr-hero__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #127f4a;
}
.cr-hero__info {
  width: 18px;
  height: 18px;
  margin-left: 4px;
}

/* ---------- BODY BACKGROUND ---------- */
.cr-main { background: #f3f3f3; }

/* ---------- OFFER CARDS ---------- */
.cr-offers { padding: 48px 28px; }
.cr-offers__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cr-offer {
  background: #fff;
  padding: 32px 28px 36px;
  text-align: center;
  color: #181918;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.cr-offer:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.cr-offer__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: #127f4a;
}
.cr-offer__icon svg { width: 100%; height: 100%; }
.cr-offer__title {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: #127f4a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cr-offer__title svg { width: 14px; height: 14px; }
.cr-offer__copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #181918;
}

/* ---------- MEET THE FLEET ---------- */
.cr-fleet {
  background: #f3f3f3;
  padding: 24px 0 56px;
}
.cr-fleet__title {
  margin: 0 0 32px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #181918;
}
.cr-fleet__rail {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 28px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cr-fleet__rail::-webkit-scrollbar { display: none; }
.cr-fleet__item {
  flex: 0 0 280px;
  text-align: center;
  scroll-snap-align: start;
}
.cr-fleet__item img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 6px;
}
.cr-fleet__item a {
  color: #127f4a;
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
}
.cr-fleet__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}
.cr-fleet__arrow {
  background: transparent;
  border: 0;
  color: #127f4a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
}
.cr-fleet__arrow svg { width: 100%; height: 100%; }
.cr-fleet__arrow:hover { color: #006639; }
.cr-fleet__all {
  background: #127f4a;
  color: #fff;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
}
.cr-fleet__all:hover { background: #006639; }

/* ---------- LATEST OFFERINGS ---------- */
.cr-offerings {
  background: #f3f3f3;
  padding: 24px 28px 56px;
}
.cr-offerings__inner { max-width: 1320px; margin: 0 auto; }
.cr-offerings__title {
  margin: 0 0 28px;
  font-size: 26px;
  font-weight: 800;
  color: #181918;
}
.cr-offerings__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cr-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.cr-card__media {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #ddd;
}
.cr-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cr-card__title {
  margin: 22px 16px 8px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #181918;
}
.cr-card__copy {
  margin: 0 16px 18px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  flex: 1;
}
.cr-card .cr-pill {
  margin: 0 auto 22px;
}

.cr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #127f4a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
}
.cr-pill:hover { background: #006639; }
.cr-pill svg { width: 12px; height: 12px; }

/* ---------- CAR RENTAL BAND ---------- */
.cr-band {
  background: #1f6b3e;
  color: #fff;
  padding: 56px 28px;
  position: relative;
  overflow: hidden;
  width: calc(100% - 56px);
  max-width: 1264px;
  margin: 24px auto 40px;
  border-radius: 12px;
}
.cr-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cr-band::before, .cr-band::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 240px;
  height: 240px;
  border: 24px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  transform: translateY(-50%);
}
.cr-band::before { left: -80px; }
.cr-band::after  { right: -80px; }
.cr-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cr-band__title {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.cr-band__copy {
  margin: 0 0 24px;
  font-size: 16px;
  color: #fff;
}
.cr-band__btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
}
.cr-band__btn:hover { background: #fff; color: #1f6b3e; }

/* ---------- PROGRAMS ---------- */
.cr-programs {
  background: #f3f3f3;
  padding: 56px 28px;
}
.cr-programs__inner { max-width: 1264px; margin: 0 auto; }
.cr-programs__title {
  margin: 0 0 28px;
  font-size: 26px;
  font-weight: 800;
}
.cr-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cr-prog {
  background: #fff;
  padding: 32px 28px 36px;
  text-align: center;
  color: #181918;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.cr-prog__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.cr-prog__title a {
  color: #127f4a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.cr-prog__title a:hover { color: #006639; text-decoration: underline; }
.cr-prog__title svg { width: 14px; height: 14px; }
.cr-prog__copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #181918;
}
.cr-link {
  color: #127f4a;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
}
.cr-ext { width: 12px; height: 12px; display: inline-block; }

/* ---------- CONNECTION ---------- */
.cr-connect {
  background: #f3f3f3;
  padding: 24px 28px 56px;
}
.cr-connect__inner { max-width: 1320px; margin: 0 auto; }
.cr-connect__title {
  margin: 0 0 28px;
  font-size: 26px;
  font-weight: 800;
}
.cr-connect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cr-conn { text-align: center; }
.cr-conn__media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #ddd;
  margin-bottom: 18px;
}
.cr-conn__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cr-conn__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #181918;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 1;
}
.cr-conn__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}
.cr-conn__copy {
  margin: 0 16px 18px;
  font-size: 15px;
  line-height: 1.5;
}
.cr-conn .cr-pill { margin-top: 4px; }

/* ---------- POPULAR US LOCATIONS ---------- */
.cr-popular {
  background: #f3f3f3;
  padding: 0 28px 56px;
}
.cr-popular__inner { max-width: 1320px; margin: 0 auto; }
.cr-popular__title {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 800;
}
.cr-popular__card {
  background: #fff;
  padding: 28px 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.cr-popular__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 18px;
  column-gap: 24px;
}
.cr-popular__grid a {
  color: #127f4a;
  font-weight: 700;
  font-size: 15px;
}
.cr-popular__grid a:hover { color: #006639; text-decoration: underline; }

/* ---------- FOOTER ---------- */
.cr-footer {
  background: #fff;
  border-top: 1px solid #169a5a;
  padding: 32px 0 0;
}
.cr-footer__top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px 24px;
}
.cr-footer__logo img { height: 28px; display: block; }
.cr-footer__logo-fallback {
  background: #127f4a;
  color: #fff;
  font-weight: 800;
  padding: 4px 12px;
  font-size: 16px;
  display: inline-block;
}
.cr-footer__grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.cr-foot-col h4 {
  margin: 22px 0 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #181918;
}
.cr-foot-col h4:first-child { margin-top: 0; }
.cr-foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cr-foot-col li { margin: 8px 0; }
.cr-foot-col a {
  color: #127f4a;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cr-foot-col a:hover { color: #006639; text-decoration: underline; }
.cr-foot-col a svg { width: 12px; height: 12px; }
.cr-footer__apps {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.cr-footer__apps img {
  height: 40px;
  display: block;
}

.cr-footer__bottom {
  background: #f3f3f3;
  padding: 24px 28px;
}
.cr-footer__social {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  gap: 12px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.cr-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
}
.cr-social svg { width: 20px; height: 20px; }
.cr-social--fb { background: #1877f2; }
.cr-social--yt { background: #ff0000; }
.cr-social--ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.cr-social--li { background: #0a66c2; }

.cr-footer__legal {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #181918;
}
.cr-footer__legal a {
  color: #127f4a;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
}
.cr-footer__legal a:hover { color: #006639; }
.cr-footer__sep { color: #c3c3c3; }
.cr-footer__copy {
  margin-left: auto;
  color: #181918;
  font-weight: 400;
}
.cr-privacy-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid #127f4a;
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  margin-left: 6px;
}
.cr-privacy-toggle__yes {
  background: #127f4a;
  color: #fff;
  padding: 2px 8px;
}
.cr-privacy-toggle__no {
  color: #127f4a;
  padding: 2px 8px;
}
.cr-adchoice {
  display: inline-block;
  color: #127f4a;
  margin-left: 4px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .cr-offers__inner,
  .cr-offerings__grid { grid-template-columns: repeat(2, 1fr); }
  .cr-popular__grid { grid-template-columns: repeat(3, 1fr); }
  .cr-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cr-header__top { flex-wrap: wrap; gap: 12px; }
  .cr-header__util { gap: 16px; flex-wrap: wrap; }
  .cr-mainnav a { padding: 16px 8px; font-size: 14px; }
  .cr-hero__panel { padding: 28px 24px 24px; }
  .cr-hero__title { font-size: 24px; }
  .cr-programs__grid,
  .cr-connect__grid { grid-template-columns: 1fr; }
  .cr-band::before, .cr-band::after { display: none; }
}
@media (max-width: 620px) {
  .cr-offers__inner,
  .cr-offerings__grid { grid-template-columns: 1fr; }
  .cr-popular__grid { grid-template-columns: repeat(2, 1fr); }
  .cr-footer__grid { grid-template-columns: 1fr; }
  .cr-footer__legal { font-size: 12px; }
  .cr-footer__copy { margin-left: 0; width: 100%; }
}


/* ============================================================
   Privacy Center page (.pp-*)  —  Enterprise Mobility clone
   ============================================================ */
.pp-body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #1e2858;
  background: #fff;
}
.pp-body *, .pp-body *::before, .pp-body *::after { box-sizing: border-box; }
.pp-body a { text-decoration: none; color: inherit; }

/* ---------- TOP UTILITY ---------- */
.pp-util {
  background: #fff;
  border-bottom: 1px solid #e6e7ea;
  padding: 12px 0;
}
.pp-util__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.pp-util__print, .pp-util__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #1e2858;
  font-weight: 600;
}
.pp-util__print svg, .pp-util__lang svg { width: 14px; height: 14px; }
.pp-util__sep { color: #c3c3c8; }
.pp-util__print:hover, .pp-util__lang:hover { text-decoration: underline; }

/* ---------- HEADER ---------- */
.pp-header {
  background: #fff;
  border-bottom: 1px solid #e6e7ea;
  padding: 18px 0;
}
.pp-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.pp-header__logo {
  display: inline-flex;
  align-items: center;
}
.pp-header__logo img { height: 26px; display: block; }
.pp-header__logo-fallback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 22px;
  color: #1e2858;
}
.pp-header__logo-fallback svg { width: 28px; height: 28px; }

.pp-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
}
.pp-header__nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #1e2858;
  padding: 8px 0;
}
.pp-header__nav a:hover { text-decoration: underline; }
.pp-header__nav a svg { width: 12px; height: 12px; }

/* ---------- HERO ---------- */
.pp-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.pp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a3340;
}
.pp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 50, 0.35);
}
.pp-hero__inner {
  position: relative;
  z-index: 1;
  padding: 64px 32px;
  max-width: 880px;
  color: #fff;
}
.pp-hero__pretitle {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}
.pp-hero__title {
  margin: 0 0 22px;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
}
.pp-hero__copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
}

/* ---------- MAIN ---------- */
.pp-main { background: #fff; }

/* ---------- POLICY HEADING ---------- */
.pp-policy {
  background: #fff;
  padding: 56px 32px 24px;
  text-align: center;
}
.pp-policy__inner {
  max-width: 980px;
  margin: 0 auto;
}
.pp-policy__title {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 700;
  color: #1e2858;
}
.pp-policy__title a {
  color: #1e2858;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pp-policy__title a:hover { color: #0f1838; }
.pp-policy__copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #1e2858;
}

/* ---------- 3x3 GRID ---------- */
.pp-grid {
  background: #fff;
  padding: 24px 32px 56px;
}
.pp-grid__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 64px;
}
.pp-cell {
  display: flex;
  flex-direction: column;
}
.pp-cell h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #1e2858;
}
.pp-cell p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #1e2858;
  flex: 1;
}
.pp-select, .pp-cta, .pp-still__cta, .pp-see-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1e2858;
  text-transform: uppercase;
}
.pp-select:hover, .pp-cta:hover, .pp-still__cta:hover, .pp-see-more:hover {
  text-decoration: underline;
}
.pp-select__icon, .pp-cta__icon, .pp-see-more__icon {
  width: 36px;
  height: 36px;
  background: #1e2858;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-select__icon svg, .pp-cta__icon svg, .pp-see-more__icon svg {
  width: 16px;
  height: 16px;
}

/* ---------- TABS SECTION ---------- */
.pp-tabs-section {
  background: #eef0f5;
  padding: 56px 32px;
}
.pp-tabs-section__inner {
  max-width: 1320px;
  margin: 0 auto;
}
.pp-tabs-section__title {
  margin: 0 0 32px;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1e2858;
}
.pp-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 36px;
}
.pp-tab {
  background: transparent;
  border: 0;
  padding: 8px 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #1e2858;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.pp-tab:hover { color: #0f1838; }
.pp-tab.is-active { border-bottom-color: #1e2858; }

.pp-tab-carousel {
  position: relative;
}
.pp-tab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #1e2858;
  color: #1e2858;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background-color .15s ease, color .15s ease;
}
.pp-tab-arrow:hover { background: #1e2858; color: #fff; }
.pp-tab-arrow svg { width: 22px; height: 22px; }
.pp-tab-arrow[hidden] { display: none; }
.pp-tab-arrow--prev { left: 8px; }
.pp-tab-arrow--next { right: 8px; }

.pp-tab-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 96px;
}
.pp-tab-panel[hidden] { display: none; }
.pp-tab-panel__text { padding: 0 16px; }
.pp-tab-panel__text h3 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 700;
  color: #1e2858;
}
.pp-tab-panel__text p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: #1e2858;
}
.pp-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1e2858;
}
.pp-read-more svg { width: 16px; height: 16px; }
.pp-read-more:hover { text-decoration: underline; }
.pp-tab-panel__media {
  width: 100%;
  height: 320px;
  background: #1e2858;
  overflow: hidden;
  border-radius: 4px;
}
.pp-tab-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- PRIVACY REQUESTS ---------- */
.pp-requests {
  background: #fff;
  padding: 64px 32px;
  text-align: center;
}
.pp-requests__inner { max-width: 900px; margin: 0 auto; }
.pp-requests__title {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 700;
  color: #1e2858;
}
.pp-requests__copy {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color: #1e2858;
}

/* ---------- ADDITIONAL INFO ---------- */
.pp-addl {
  background: #eef0f5;
  padding: 56px 32px 80px;
}
.pp-addl__inner { max-width: 1320px; margin: 0 auto; }
.pp-addl__title {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 700;
  color: #1e2858;
}
.pp-addl__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pp-info {
  border-bottom: 3px solid #1e2858;
  padding: 0 0 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pp-info h3 {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  color: #1e2858;
}

/* ---------- STILL HAVE QUESTIONS ---------- */
.pp-still {
  background: #fff;
  padding: 64px 32px 80px;
}
.pp-still__inner { max-width: 1320px; margin: 0 auto; }
.pp-still__title {
  margin: 0 0 36px;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1e2858;
}
.pp-still__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.pp-still__copy {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.45;
  color: #1e2858;
  font-weight: 700;
}

/* ---------- FOOTER ---------- */
.pp-footer {
  background: #14224b;
  color: #fff;
  padding: 56px 32px 32px;
}
.pp-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
}
.pp-footer__logo img { height: 40px; display: block; margin-bottom: 24px; }
.pp-footer__logo-fallback {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #1B9F47;
  margin-bottom: 24px;
}
.pp-footer__social {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  gap: 18px;
}
.pp-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.pp-footer__social svg { width: 22px; height: 22px; }
.pp-footer__social a:hover { color: #b9c0d4; }

.pp-footer__heading {
  margin: 12px 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.pp-footer__legal {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.pp-footer__legal a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
.pp-footer__legal a:hover { text-decoration: underline; }
.pp-footer__legal svg { width: 12px; height: 12px; }
.pp-footer__toggle {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #14224b;
  border-radius: 999px;
  overflow: hidden;
  font-size: 11px;
  margin-left: 6px;
}
.pp-footer__toggle-yes { background: #1e2858; color: #fff; padding: 2px 7px; }
.pp-footer__toggle-no { color: #1e2858; padding: 2px 7px; background: #fff; }
.pp-footer__adchoice {
  display: inline-block;
  color: #4d7eff;
  margin-left: 4px;
}

.pp-footer__disclaimer {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
  max-width: 1100px;
}
.pp-footer__inline {
  color: #58c97f;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pp-footer__inline svg { width: 12px; height: 12px; }
.pp-footer__copy {
  margin: 0;
  font-size: 14px;
  color: #fff;
  opacity: 0.85;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .pp-grid__inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .pp-addl__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pp-header__inner { flex-direction: column; gap: 16px; }
  .pp-header__nav ul { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .pp-hero__title { font-size: 40px; }
  .pp-tab-panel { grid-template-columns: 1fr; gap: 24px; padding: 0 56px; }
  .pp-tab-panel__media { height: 240px; }
  .pp-tab-arrow { width: 44px; height: 44px; }
  .pp-tab-arrow svg { width: 18px; height: 18px; }
  .pp-tab-arrow--prev { left: 4px; }
  .pp-tab-arrow--next { right: 4px; }
  .pp-still__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .pp-grid__inner,
  .pp-addl__grid { grid-template-columns: 1fr; }
  .pp-hero__title { font-size: 32px; }
  .pp-policy__title,
  .pp-tabs-section__title,
  .pp-requests__title,
  .pp-still__title { font-size: 24px; }
}

/* ============================================
   Privacy Preference Center modal
   ============================================ */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.privacy-modal[hidden] { display: none; }
.privacy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.privacy-modal__dialog {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.privacy-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #e6e7ea;
  flex-shrink: 0;
}
.privacy-modal__logo img { height: 38px; display: block; }
.privacy-modal__close {
  background: transparent;
  border: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
}
.privacy-modal__close:hover { background: #f0f0f0; }
.privacy-modal__close svg { width: 20px; height: 20px; }
.privacy-modal__body {
  padding: 24px 28px 8px;
  overflow-y: auto;
  color: #1f1f1f;
  font-size: 14.5px;
  line-height: 1.55;
}
.privacy-modal__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
}
.privacy-modal__subtitle {
  margin: 22px 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
}
.privacy-modal__body p { margin: 0 0 16px; }
.privacy-modal__inline { color: #1f8c4a; text-decoration: underline; }
.privacy-modal__footer {
  padding: 16px 24px;
  border-top: 1px solid #e6e7ea;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}
.privacy-modal__confirm {
  background: var(--green-500, #1A9E47);
  color: #fff;
  border: 0;
  padding: 12px 26px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}
.privacy-modal__confirm:hover { background: #178a3e; }
body.privacy-modal-open { overflow: hidden; }

/* ============================================
   Vehicle Detail Page (VDP) — Enterprise style
   ============================================ */
.vdp-page { background: #fff; color: #1f1f1f; font-family: Inter, sans-serif; }

/* ---- breadcrumb ---- */
.vdp-breadcrumb { padding: 18px 32px; border-bottom: 1px solid #e6e7ea; }
.vdp-breadcrumb__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}
.vdp-breadcrumb__trail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vdp-breadcrumb__trail li { display: inline-flex; align-items: center; }
.vdp-breadcrumb__trail a { color: #1f1f1f; font-weight: 500; }
.vdp-breadcrumb__trail a:hover { text-decoration: underline; }
.vdp-breadcrumb__current { color: var(--green-500, #1A9E47); font-weight: 600; }
.vdp-breadcrumb__sep { color: #6c6f76; margin: 0 10px; }

.vdp-breadcrumb__share {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f1f1f;
  font-size: 14px;
}
.vdp-share, .vdp-share__ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f3f5;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f1f1f;
  cursor: pointer;
}
.vdp-share__ico { background: #f1f3f5; }
.vdp-share svg, .vdp-share__ico svg { width: 14px; height: 14px; }
.vdp-share__sep { color: #ccd0d6; }
.vdp-share__email { color: var(--green-500, #1A9E47); font-weight: 600; }
.vdp-share__email:hover { text-decoration: underline; }

/* ---- hero layout ---- */
.vdp-hero { padding: 28px 32px 36px; }
.vdp-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 36px;
}

/* ---- gallery (left) ---- */
.vdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.vdp-gallery__banner {
  background: #0e0e0e;
  color: #fff;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.35;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.vdp-gallery__cert {
  background: #fff;
  color: #0e0e0e;
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vdp-gallery__cert-c { color: var(--green-500, #1A9E47); }
.vdp-gallery__cert-sub {
  border-left: 1px solid #ccc;
  margin-left: 6px;
  padding-left: 6px;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 500;
}

.vdp-gallery__main {
  position: relative;
  background: #f8f8f8;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vdp-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vdp-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.vdp-gallery__arrow svg { width: 18px; height: 18px; }
.vdp-gallery__arrow:hover { background: rgba(0, 0, 0, 0.75); }
.vdp-gallery__arrow--prev { left: 10px; }
.vdp-gallery__arrow--next { right: 10px; }
.vdp-gallery__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--green-500, #1A9E47);
}

.vdp-gallery__strip {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.vdp-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex: 1;
}
.vdp-thumb {
  flex: 0 0 90px;
  height: 70px;
  padding: 0;
  border: 2px solid transparent;
  background: #f8f8f8;
  cursor: pointer;
  overflow: hidden;
}
.vdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vdp-thumb.is-active { border-color: var(--green-500, #1A9E47); }

.vdp-gallery__360 {
  flex: 0 0 110px;
  background: #1f1f1f;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  padding: 8px;
}
.vdp-gallery__360-label { color: #1f1f1f; background: transparent; }
.vdp-gallery__360 .vdp-gallery__360-label {
  color: #1f1f1f;
  position: absolute;
  margin-top: -90px;
  background: transparent;
}
.vdp-gallery__strip { position: relative; }
.vdp-gallery__360-icon {
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  padding: 4px 6px;
  border-radius: 50%;
}

/* ---- info (right) ---- */
.vdp-info { display: flex; flex-direction: column; }
.vdp-info__title {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.2;
}

.vdp-price {
  background: #edf1f7;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
}
.vdp-price__mileage {
  background: #fff;
  border-radius: 2px;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Courier New', monospace;
  line-height: 1.1;
  min-width: 110px;
}
.vdp-price__mileage-label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #1f1f1f;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  margin-bottom: 6px;
}
.vdp-price__mileage-num {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
}
.vdp-price__main { flex: 1; text-align: center; }
.vdp-price__label {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
}
.vdp-price__amount {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #1f1f1f;
}
.vdp-price__fee {
  margin: 6px 0 0;
  padding: 0 22px;
  background: #edf1f7;
  text-align: right;
  font-size: 14px;
  color: #1f1f1f;
}
.vdp-price__estimate-row {
  margin: 0 0 18px;
  padding: 6px 22px 12px;
  background: #edf1f7;
  text-align: right;
}
.vdp-price__estimate {
  color: var(--green-500, #1A9E47);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}

.vdp-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 4px;
}

.vdp-specs__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #1f1f1f;
}
.vdp-specs__list li strong { font-weight: 700; }

.vdp-specs__doclink {
  margin: 4px 0;
}
.vdp-specs__doclink a {
  color: var(--green-500, #1A9E47);
  text-decoration: underline;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vdp-specs__doclink svg { width: 14px; height: 14px; }
.vdp-specs__doclink--carfax {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vdp-carfax-badge {
  display: inline-flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #1f1f1f;
  padding: 1px 6px;
  font-family: 'Arial Black', sans-serif;
  font-size: 8px;
  line-height: 1.05;
  color: #1f1f1f;
  text-align: center;
}
.vdp-carfax-badge__top { font-size: 7px; letter-spacing: 0.5px; }
.vdp-carfax-badge__mid { font-size: 10px; font-weight: 900; }
.vdp-carfax-badge__a { color: #d8232a; }
.vdp-carfax-badge__bot { font-size: 10px; font-weight: 900; display: flex; align-items: center; justify-content: center; gap: 3px; }
.vdp-carfax-badge__owner { background: #1f1f1f; color: #fff; padding: 0 3px; font-size: 8px; }

.vdp-specs__mpg {
  margin: 12px 0 4px;
  font-weight: 700;
  color: var(--green-500, #1A9E47);
  font-style: italic;
}
.vdp-specs__rental {
  margin: 0;
  font-size: 14px;
  color: #1f1f1f;
}

.vdp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vdp-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
}
.vdp-btn--primary {
  background: var(--green-500, #1A9E47);
  color: #fff;
  border: 1px solid var(--green-500, #1A9E47);
}
.vdp-btn--primary:hover { background: #178a3e; }
.vdp-btn--outline {
  background: #fff;
  color: var(--green-500, #1A9E47);
  border: 1px solid var(--green-500, #1A9E47);
}
.vdp-btn--outline:hover { background: rgba(26, 158, 71, 0.06); }

.vdp-contact { margin-top: 8px; }
.vdp-contact__heading {
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
}
.vdp-contact__phone {
  color: var(--green-500, #1A9E47);
  font-size: 22px;
  font-weight: 700;
}
.vdp-contact__addr { margin: 0; font-size: 15px; color: #1f1f1f; line-height: 1.4; }

/* ---- standard features ---- */
.vdp-stdf { padding: 12px 32px 24px; border-top: 1px solid #e6e7ea; }
.vdp-stdf__inner { max-width: 1320px; margin: 0 auto; }
.vdp-stdf__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e7ea;
}
.vdp-stdf__subtitle {
  margin: 8px 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-500, #1A9E47);
}
.vdp-stdf__list {
  list-style: disc;
  margin: 0;
  padding-left: 28px;
  columns: 2;
  column-gap: 64px;
  font-size: 15px;
  line-height: 1.85;
  color: #1f1f1f;
}
.vdp-stdf__list li { break-inside: avoid; }

/* ---- accordions ---- */
.vdp-acc-section { padding: 0 32px; }
.vdp-acc-section__inner { max-width: 1320px; margin: 0 auto; }
.vdp-acc {
  border-bottom: 1px solid #e6e7ea;
}
.vdp-acc > summary {
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: #1f1f1f;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vdp-acc > summary::-webkit-details-marker { display: none; }
.vdp-acc > summary::after {
  content: '\002B';
  font-size: 20px;
  color: #6c6f76;
}
.vdp-acc[open] > summary::after { content: '\2212'; }
.vdp-acc__body {
  padding: 4px 0 16px;
  font-size: 14px;
  color: #1f1f1f;
  columns: 2;
  column-gap: 64px;
}
.vdp-acc__body div { padding: 3px 0; break-inside: avoid; }

/* ---- similar vehicles ---- */
.vdp-similar { padding: 32px; }
.vdp-similar__inner { max-width: 1320px; margin: 0 auto; }
.vdp-similar__title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
}
.vdp-similar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.vdp-sim-card {
  background: #fff;
  border: 1px solid #e6e7ea;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.vdp-sim-card__banner {
  background: #0e0e0e;
  color: #fff;
  padding: 6px 10px;
  font-size: 10px;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vdp-sim-card__cert {
  background: #fff;
  color: #0e0e0e;
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 9px;
}
.vdp-sim-card__cert-c { color: var(--green-500, #1A9E47); }
.vdp-sim-card__media {
  aspect-ratio: 4 / 3;
  background: #f8f8f8;
  position: relative;
}
.vdp-sim-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.vdp-sim-card__bar {
  height: 4px;
  background: var(--green-500, #1A9E47);
}
.vdp-sim-card__body {
  padding: 14px 16px 0;
  flex: 1;
}
.vdp-sim-card__year {
  margin: 0;
  font-size: 14px;
  color: #1f1f1f;
}
.vdp-sim-card__model {
  margin: 2px 0 8px;
  font-size: 14px;
  font-weight: 400;
  color: #1f1f1f;
}
.vdp-sim-card__price {
  margin: 0 0 14px;
  font-size: 16px;
  color: #1f1f1f;
}
.vdp-sim-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--green-500, #1A9E47);
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px 14px;
}
.vdp-sim-card__cta a {
  color: var(--green-500, #1A9E47);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vdp-sim-card__cta-arrow {
  background: var(--green-500, #1A9E47);
  color: #fff;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ---- disclaimer ---- */
.vdp-disclaimer { padding: 8px 32px 40px; }
.vdp-disclaimer__inner { max-width: 1320px; margin: 0 auto; }
.vdp-disclaimer__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1f1f1f;
}
.vdp-disclaimer__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #1f1f1f;
}

/* ---- responsive ---- */
@media (max-width: 1024px) {
  .vdp-hero__inner { grid-template-columns: 1fr; }
  .vdp-cols { grid-template-columns: 1fr; }
  .vdp-similar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vdp-info__title { font-size: 24px; }
  .vdp-stdf__list { columns: 1; }
  .vdp-acc__body { columns: 1; }
  .vdp-similar__grid { grid-template-columns: 1fr; }
}

/* ---- 360 interior viewer trigger (button) ---- */
.vdp-gallery__360 {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  color: inherit;
  text-align: center;
}
.vdp-gallery__360:hover { background: #2a2a2a; }
.vdp-gallery__360[hidden] { display: none; }

/* ---- 360 viewer modal ---- */
.vdp-360-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.vdp-360-modal[hidden] { display: none; }
.vdp-360-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.vdp-360-modal__dialog {
  position: relative;
  background: #000;
  width: 100%;
  max-width: 1100px;
  height: 80vh;
  max-height: 800px;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  overflow: hidden;
}
.vdp-360-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.vdp-360-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f1f1f;
  cursor: pointer;
  z-index: 2;
}
.vdp-360-modal__close:hover { background: #fff; }
.vdp-360-modal__close svg { width: 18px; height: 18px; }
body.vdp-360-open { overflow: hidden; }

/* ============================================
   Real appraisal-application CSS (copied verbatim from
   https://cdnqa.enterprisecarsales.com/content/plugins/jzl-auto5-products/
   integrations/elementor/css/appraisal.css)
   ============================================ */
.appraisal-application__nav {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.appraisal-application__equipment-types {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
}
.appraisal-application__equipment-type {
    flex-basis: 40%;
    flex-shrink: 1;
    display: flex;
    align-items: center;
}

.appraisal-application__equipment-categories {
    display: none;
}

.appraisal-application__equipment-category {
    padding-bottom: 16px;
}

.appraisal-application__equipment-category-title {
    padding: 6px;
    font-size: 18px;
    font-weight: 700;
    background-color: #dfeaf6;
    width: 100%;
    display: block;
}

.appraisal-application__equipment-group {
    margin-top: 10px;
    margin-bottom: 20px;
}

.appraisal-application__equipment-group-title {
    font-size: 16px;
}

.appraisal-application__equipment-items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
@media (min-width: 768px) {
    .appraisal-application__equipment-items {
        max-width: 70%;
    }
}

.appraisal-application__header {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #1f1f1f;
    margin: 0 0 14px;
}

.appraisal-application__description {
    display: block;
    font-size: 15px;
    color: #1f1f1f;
    line-height: 1.55;
    margin: 0 0 24px;
}

.appraisal-application__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1f1f1f;
    margin-top: 18px;
    margin-bottom: 8px;
}

.appraisal-application__select {
    display: block;
    width: 100%;
    height: 44px;
    background: #fff;
    border: 1px solid #1f1f1f;
    border-radius: 2px;
    padding: 0 36px 0 14px;
    font-size: 15px;
    font-family: inherit;
    color: #1f1f1f;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23181918' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    box-sizing: border-box;
}
.appraisal-application__select:focus {
    outline: none;
    border-color: var(--green-500, #1A9E47);
}
.appraisal-application__select:disabled {
    background-color: #f4f5f6;
    color: #9ca0a4;
    cursor: not-allowed;
    border-color: #d4d6da;
}

.appraisal-application__option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    flex-basis: 50%;
    flex-grow: 1;
}

/* option - start */
.appraisal-application__option-radio,
.appraisal-application__option-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    width: 0;
    height: 0;
    -webkit-appearance: none;
}
.appraisal-application__option-radio + label {
    padding-left: 28px;
    cursor: pointer;
}
.appraisal-application__option-radio:before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 100%;
}
.appraisal-application__option-radio:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s;
}
.appraisal-application__option-radio:not(:checked):after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.appraisal-application__option-radio:checked:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.appraisal-application__option-radio:focus:before {
    box-shadow: 0 0 0 2px #00a6ffc4;
}
/* option - end */
/* checkbox - start */
.appraisal-application__option-checkbox + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
}
.appraisal-application__option-checkbox:before {
    content: '';
    position: absolute;
    left: 2px;
    width: 16px;
    height: 16px;
    border: 2px solid #000;
}
.appraisal-application__option-checkbox:checked:after {
    position:absolute;
    top:50%;
    content:'';
    display:block;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translateY(-100%);
    width: 6px;
    height: 10px;
}
.appraisal-application__option-checkbox:focus:before {
    box-shadow: 0 0 0 2px #00a6ffc4;
}
/* checkbox - end */

.appraisal-application__option-label {

}

.appraisal-application__nav {
    gap: 16px;
}
.appraisal-application__nav .appraisal-application__nav-button {
    cursor: pointer;
    flex: 1;
    padding: 14px 40px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    background-color: #009a5f;
    background: linear-gradient(to bottom,#01a563,#048551);
    outline: 0;
    border: 0;
    border-radius: 2px;
    color: #fff;
}
.appraisal-application__nav .appraisal-application__nav-button:hover {
    background: linear-gradient(to bottom,#00995c,#037a49);
    text-decoration: none;
}

.appraisal-application__nav .appraisal-application__nav-button:disabled {
    cursor: default;
    color: #999;
    background: -webkit-gradient(linear,left top,left bottom,from(#e6e6e6),to(#eee));
    opacity: .6;
}

/* step 4 */
.appraisal-application__condition {
    display: flex;
    align-items: center;
    padding: 12px 8px;
    border-bottom: 1px solid #bbb;
}

.appraisal-application__option-description {
    color: #757575;
    font-size: .875em;
    display: block;
}

/* step 5 */
.appraisal-application__estimate {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0;
}

.appraisal-application__detail {
    display: flex;
    justify-content: center;
}

/* step bar */
.appraisal-application .step-bar {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.appraisal-application .step-bar__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.appraisal-application .step-bar__item::after {
    position: absolute;
    content: "";
    border-bottom: 6px solid #d5d5d5;
    width: calc(100% - 20px - 6px);
    top: 7px;
    right: calc(-1 * (100% - 20px - 6px) / 2);
    z-index: 3;
}

.appraisal-application .step-bar__item .step-bar__item-icon-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
}

.appraisal-application .step-bar__item .step-bar__item-icon::before,
.appraisal-application .step-bar__item .step-bar__item-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
}
.appraisal-application .step-bar__item .step-bar__item-icon::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.appraisal-application .step-bar__item .step-bar__item-icon::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

.appraisal-application .step-bar__item .step-bar__item-name {
    font-size: 14px;
}

.appraisal-application .step-bar__item--active .step-bar__item-icon-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #009a5f;
}

.appraisal-application .step-bar__item--completed .step-bar__item-icon-wrapper,
.appraisal-application .step-bar__item--active .step-bar__item-icon-wrapper {
    background-color: #4bb543;
}

.appraisal-application .step-bar__item--completed .step-bar__item-icon::before,
.appraisal-application .step-bar__item--active .step-bar__item-icon::before {
    width: 4px;
    transform: translate(-6px, 0) rotate(45deg);
}
.appraisal-application .step-bar__item--completed .step-bar__item-icon::after,
.appraisal-application .step-bar__item--active .step-bar__item-icon::after {
    width: 10px;
    transform: translate(-4px, -1px) rotate(-45deg);
}

.appraisal-application .step-bar__item--completed::after {
    border-bottom-color: #009a5f;
}

.appraisal-application .step-bar__item:last-child::after {
    content: none;
}

/* tooltip */
.appraisal-application__tooltip-anchor {
    margin-left: auto;
    position: relative;
}

.appraisal-application__icon {
    display: flex;
    padding: 5px;
    cursor: pointer;
}

.appraisal-application__icon-info {
    color: #2e6bad;
    fill: #2e6bad;
}

.appraisal-application__tooltip {
    display: none;
    position: absolute;
    z-index: 9;
    width: 400px;
    right: 50px;
    top: -25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), 25px 10px 25px rgba(0,0,0,0.05);
    padding: 1em 1.5em 1.75em 1.5em;
    background: #fff;
    font-size: 14px;
    max-width: 75vw;
}

.appraisal-application__tooltip:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -9;
    border-top: solid 16px transparent;
    border-bottom: solid 16px transparent;
    border-left: solid 25px #fff;
    right: -20px;
    top: 25px;
}

.appraisal-application__tooltip--visible {
    display: block;
}

.appraisal-application__tooltip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.appraisal-application__tooltip-title {
    font-weight: bold;
}

.appraisal-application__tooltip-description {
    margin: 1em 0;
}

/* message */
.appraisal-application__message {
    text-align: center;
    font-size: 16px;
    color: #000;
    padding: 1.5em;
    margin: 10px 0 0;
    background: #dfeaf6;
}

.appraisal-application [data-item-type="optional-message"] {
    display: none;
}


/* ---- Patches for our locally-driven version of the appraisal app ---- */
/* Gauge sits centered when populated */
.appraisal-application__estimate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 12px 0 22px;
}
.appraisal-application__kbb-meter { display: flex; justify-content: center; }
.appraisal-application__details {
  text-align: center;
  font-size: 15px;
  color: #1f1f1f;
  line-height: 1.8;
}
.appraisal-application__detail { margin: 2px 0; }
.appraisal-application__detail-label { color: #555; }
.appraisal-application__detail-value { font-weight: 700; }

/* The "Ready to Take the Next Step?" block we render below the form */
.appraisal-application__cta-section {
  margin-top: 36px;
  text-align: center;
}
.appraisal-application__cta-section[hidden] { display: none; }
.appraisal-application__cta-heading {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}
.appraisal-application__cta-sub {
  margin: 0 auto 22px;
  max-width: 640px;
  font-size: 14px;
  color: #555;
}
.appraisal-application__cta-btn {
  display: block;
  max-width: 480px;
  margin: 0 auto 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  background: #a4adb8;
  color: #fff;
}
.appraisal-application__cta-btn:hover { background: #8c95a1; }
.appraisal-application__cta-btn--primary { background: var(--green-500, #1A9E47); }
.appraisal-application__cta-btn--primary:hover { background: #178a3e; }

/* Color picker items (panel 2): 2-column grid */
.appraisal-application [data-option-name="color"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-top: 10px;
}
.appraisal-application__equipment-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.appraisal-application__equipment-item .appraisal-application__option-content {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.appraisal-application .step-bar { padding: 12px 0 28px; }

/* Inputs on panel 2 need consistent styling with the dropdowns */
.appraisal-application input[type="number"] {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #1f1f1f;
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #1f1f1f;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.appraisal-application input[type="number"]:focus {
  outline: none;
  border-color: var(--green-500, #1A9E47);
}

/* ===== Email Signup page ===== */
.email-signup-page { background: #fff; }
.email-signup__title {
  background: #f3f4f6;
  padding: 32px 0 36px;
}
.email-signup__title-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.email-signup__title h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: #1f1f1f;
  letter-spacing: -0.01em;
}
.email-signup__form-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}
.email-signup__form .appt-check.email-signup__consent span {
  font-size: 13px;
  color: #1f1f1f;
  line-height: 1.55;
}
.email-signup__consent { align-items: flex-start; margin: 8px 0 20px; }
.email-signup__success {
  text-align: center;
  margin: 14px auto 0;
  max-width: 480px;
  padding: 14px 18px;
  background: #eef5ec;
  border: 1px solid #cfe3c8;
  color: #0c3320;
  font-weight: 600;
  border-radius: 2px;
}
.email-signup__success[hidden] { display: none; }

/* Inline field validation errors */
.appt-field.is-invalid {
  background: #fdecec;
  outline: 1px solid #a32024;
}
.appt-field__error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #a32024;
  font-weight: 600;
}
.appt-field__error[hidden] { display: none; }

/* ===== Schedule Your Appointment modal ===== */
.appt-modal[hidden] { display: none; }
.appt-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.appt-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.appt-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #fff;
  border-radius: 4px;
  padding: 28px 36px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.appt-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: #1f1f1f;
}
.appt-form__header {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.appt-form__title {
  font-size: 20px;
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 6px;
}
.appt-form__sub {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.appt-form__section {
  font-size: 15px;
  font-weight: 700;
  color: #1f4d8a;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 10px;
  margin: 22px 0 18px;
}
.appt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.appt-field {
  display: block;
  position: relative;
  background: #f3f4f6;
  border-radius: 2px;
  padding: 10px 14px;
  min-height: 64px;
  box-sizing: border-box;
}
.appt-field--full { grid-column: 1 / -1; }
.appt-field__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #555;
  margin-bottom: 4px;
  text-transform: none;
}
.appt-field__req { color: #a32024; }
.appt-field input,
.appt-field select,
.appt-field textarea {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 15px;
  color: #1f1f1f;
  font-family: inherit;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  appearance: none;
}
.appt-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23181918' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 14px;
  padding-right: 22px;
}
.appt-field textarea {
  resize: vertical;
  min-height: 90px;
  background: transparent;
}
.appt-field--full {
  background: #f3f4f6;
  padding: 14px;
}
.appt-counter {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 6px;
}
.appt-form__radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 22px;
}
.appt-form__radios .appt-field__label--standalone {
  margin-bottom: 0;
}
.appt-radio,
.appt-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1f1f1f;
  cursor: pointer;
  line-height: 1.5;
}
.appt-radio input[type="radio"],
.appt-check input[type="checkbox"] {
  margin: 2px 0 0;
  accent-color: #1976d2;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.appt-check { margin: 14px 0; }
.appt-form__disclaimer {
  font-size: 13px;
  color: #1f1f1f;
  line-height: 1.5;
  margin: 18px 0;
}
.appt-form__submit {
  display: flex;
  justify-content: center;
  margin: 26px 0 14px;
}
.appt-form__btn {
  min-width: 220px;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(to bottom, #01a563, #048551);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}
.appt-form__btn:hover { background: linear-gradient(to bottom, #00995c, #037a49); }
.appt-form__captcha {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  margin: 6px 0 0;
}
.appt-form__captcha a { color: #2e6bad; }

body.appt-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .appt-modal { padding: 12px; }
  .appt-modal__dialog { padding: 20px 18px 28px; }
  .appt-form__row { grid-template-columns: 1fr; gap: 14px; }
}

/* Panel 3 equipment categories: render group title as a labeled row above
   the 2-column option grid. */
.appraisal-application__equipment-group-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 8px;
}
.appraisal-application__equipment-category-title {
  font-size: 16px;
  padding: 8px 12px;
  margin-bottom: 4px;
}
.appraisal-application__equipment-category {
  padding-bottom: 24px;
}
.appraisal-application__equipment-group {
  margin: 14px 0 22px;
}
/* Reset the 70%-width clip from the upstream stylesheet so two columns
   actually fit side-by-side. */
@media (min-width: 768px) {
  .appraisal-application__equipment-categories
    .appraisal-application__equipment-items {
    max-width: 100%;
  }
}
.appraisal-application__equipment-items .appraisal-application__option {
  flex-basis: 50%;
  max-width: 50%;
  flex-grow: 0;
  padding: 6px 8px 6px 4px;
  box-sizing: border-box;
}
.appraisal-application__option-label {
  font-size: 14px;
  color: #1f1f1f;
  line-height: 1.4;
}
/* Group titles get a thin underline like the Enterprise UI */
.appraisal-application__equipment-group > .appraisal-application__equipment-group-title {
  border-bottom: 1px solid #e2e4e7;
  padding-bottom: 6px;
}
/* Equipment types (the "standard / select your options" toggle) need to
   show as the two-up cards from the screenshot. */
.appraisal-application__equipment-type {
  flex-basis: 48%;
  align-items: flex-start;
  padding: 6px 4px;
}
.appraisal-application__equipment-type .appraisal-application__option-content {
  display: flex;
  flex-direction: column;
  padding-left: 28px;
}

/* ============================================================================
   GLOBAL RESPONSIVE OVERRIDES
   Single, end-of-file block that adjusts every shared layout in the site
   across three breakpoints:
     - <=1024px : tablet (sidebars collapse, grids drop a column)
     - <=900px  : small tablet / large phone (mobile nav appears)
     - <=640px  : phone (single column, smaller type, full-width buttons)
   ============================================================================ */

/* Prevent horizontal overflow on any page.
   - box-sizing: border-box everywhere so padding doesn't push elements past
     their parent.
   - overflow-x: clip on html+body (clip allows position:sticky, hidden breaks
     it on some browsers).
   - Anything that's known to be visual-only (images, video) is constrained
     to its container. */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100vw; overflow-x: clip; }
@supports not (overflow-x: clip) {
  body { overflow-x: hidden; }
}
img, video, iframe { max-width: 100%; height: auto; }
.appraisal-application__kbb-meter svg { max-width: 100%; height: auto; }

/* Header: keep the phone number from forcing a wider layout on tiny phones */
@media (max-width: 480px) {
  .main-header__phone { font-size: 14px !important; left: 0 !important; transform: none !important; }
  .location-strip__inner { font-size: 11px; padding: 0 12px; }
  .main-header__inner { gap: 8px; padding: 0 10px; }
}

/* ----- Tablet & below ---------------------------------------------------- */
@media (max-width: 1024px) {
  /* SRP: sidebar above grid */
  .srp-layout { grid-template-columns: 1fr; }
  .srp-sidebar { padding: 22px 18px; min-height: 0; }
  .srp-grid { grid-template-columns: repeat(3, 1fr); padding: 0 16px; gap: 14px; }

  /* VDP: gallery + info stack */
  .vdp-hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .vdp-hero { padding: 20px 18px 28px; }

  /* Finance cards */
  .finance-cards__inner { grid-template-columns: repeat(2, 1fr) !important; }

  /* Hide the welcome-bar text on tight screens */
  .location-strip__inner { padding-right: 16px; }
}

/* ----- Phone / small tablet --------------------------------------------- */
@media (max-width: 900px) {
  /* ===== HEADER: mobile nav ===== */
  .main-header__inner {
    height: 52px;
    padding: 0 12px;
    gap: 10px;
  }
  .main-header__phone {
    font-size: 16px;
    left: 0;
    transform: none;
  }
  .menu-toggle {
    display: inline-flex;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
  }

  /* The primary nav becomes a vertical drawer that the toggle opens */
  .primary-nav__inner {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 16px 14px;
    width: 100%;
    max-width: none;
  }
  .primary-nav__inner.is-open { display: flex; }
  .primary-nav__inner li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .primary-nav__inner li a {
    display: block;
    width: 100%;
    padding: 12px 0;
    left: 0;
    transform: none;
    font-size: 15px;
  }

  /* Nav dropdowns become an inline accordion on mobile (no hover panel) */
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
    padding: 0 0 8px;
    transition: none;
  }
  .nav-dropdown__list li a {
    color: #fff;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-dropdown__list li a:hover { background: rgba(255, 255, 255, 0.1); }

  /* Hero search bar inside header shrinks */
  .hero-search { padding: 24px 14px; }
  .hero-search__form { padding: 6px 10px; gap: 6px; }
  .hero-search__form input { font-size: 14px; }

  /* ===== HOME ===== */
  .hero__title { font-size: clamp(28px, 7vw, 44px); line-height: 1.15; }
  .hero__searchbar { padding: 0 14px; }
  .shop-tabs { flex-wrap: wrap; }
  .shop-tab { flex: 1 1 50%; font-size: 14px; padding: 12px 8px; }
  .shop-chips { flex-wrap: wrap; gap: 10px; padding: 16px; }
  .shop-chip { flex: 1 1 calc(50% - 10px); text-align: center; padding: 10px 14px; font-size: 14px; }
  .shop-grid__tiles { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .shop-brands, .shop-mpgs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .shop-grid__action { display: block; margin: 14px auto 0; max-width: 240px; text-align: center; }
  .offer-cards { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; padding: 0 14px; }

  /* ===== SRP ===== */
  .srp-grid { grid-template-columns: repeat(2, 1fr); }
  .srp-card { font-size: 13px; }
  .srp-search-banner { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* ===== Forms (appointment, email signup, financing apply) ===== */
  .appt-form__row { grid-template-columns: 1fr; gap: 12px; }
  .email-signup__form-wrap { padding: 28px 16px 48px; }
  .email-signup__title { padding: 24px 0; }
  .email-signup__title h1 { font-size: 22px; }

  /* ===== Footer ===== */
  .footer-top__inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-top__socials { justify-content: center; }
  .footer-cols { grid-template-columns: repeat(2, 1fr) !important; gap: 22px; padding: 0 16px; }

  /* ===== Misc page wrappers ===== */
  .finance-intro__inner,
  .aff-intro__inner,
  .breadcrumb__inner { padding: 0 16px; }
  .finance-intro__title { font-size: 24px; line-height: 1.25; }
  .finance-intro__inner { flex-direction: column; gap: 18px; }
  .finance-cards__inner { padding: 0 14px; }

  /* Valuation page */
  .ovv-hero img { width: 100%; height: auto; }
  .appraisal-application { padding: 20px 14px !important; }
  .appraisal-application__panel { padding: 0; }

  /* Modals: use full screen on phone */
  .appt-modal { padding: 0; }
  .appt-modal__dialog { border-radius: 0; padding: 18px 16px 28px; min-height: 100vh; }

  /* Buy-a-medium-duty-truck etc. */
  .mdt-list { padding-left: 22px; }
}

/* ----- Small phone ------------------------------------------------------ */
@media (max-width: 640px) {
  /* Header: hide phone number text, keep brand only */
  .location-strip { font-size: 11px; }
  .brand__name { font-size: 18px; }
  .brand__img { width: 60px; height: auto; }

  /* SRP: single column */
  .srp-grid { grid-template-columns: 1fr; padding: 0 12px; }
  .srp-card__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .srp-pager { flex-wrap: wrap; gap: 6px; padding: 18px 12px; }

  /* Shop tiles 2-up */
  .shop-grid__tiles { grid-template-columns: repeat(2, 1fr); }
  .shop-brands, .shop-mpgs { grid-template-columns: repeat(2, 1fr); }
  .offer-cards { grid-template-columns: 1fr !important; }

  /* Finance cards single column */
  .finance-cards__inner { grid-template-columns: 1fr !important; }

  /* Footer single column */
  .footer-cols { grid-template-columns: 1fr !important; padding: 0 18px; }
  .footer-top__phone { font-size: 18px; }

  /* CTA section / generic content */
  .appraisal-application__cta-btn { padding: 12px 14px; font-size: 13px; }
  .appraisal-application__cta-heading { font-size: 18px; }

  /* Buttons: full width on tight screens for forms */
  .appt-form__btn,
  .email-signup__form .appt-form__btn { width: 100%; min-width: 0; }

  /* VDP: tighter padding + stack share row */
  .vdp-breadcrumb__inner { flex-wrap: wrap; gap: 8px; padding: 8px 12px; }
  .vdp-breadcrumb__trail { flex-wrap: wrap; }

  /* Valuation step bar: smaller labels */
  .appraisal-application .step-bar__item .step-bar__item-name { font-size: 11px; }

  /* Tooltip in valuation: clip to viewport */
  .appraisal-application__tooltip {
    width: calc(100vw - 32px);
    max-width: none;
    right: 0;
    left: auto;
  }

  /* Modal close button visible on tight screens */
  .appt-modal__close { top: 8px; right: 8px; }

  /* Hero title shrinks further */
  .hero__title { font-size: clamp(24px, 8vw, 34px); }

  /* Intro text */
  .finance-intro__title,
  .aff-intro__title { font-size: 22px; }
  .finance-intro__sub { font-size: 14px; }
}

/* ----- Very small phone (< 380px) --------------------------------------- */
@media (max-width: 380px) {
  .main-header__phone { font-size: 14px; }
  .brand__name { font-size: 16px; }
  .shop-chips { padding: 12px; }
  .shop-chip { flex: 1 1 100%; }
  .appt-form__title { font-size: 17px; }
  .appt-form__sub { font-size: 12px; }
}
