/* ============================================
   MITSUBISHI MOTORS - SAM PIALAGO
   Landing Page Styles
   ============================================ */

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

:root {
  --red: #E60012;
  --red-dark: #c4000f;
  --black: #0A0A0A;
  --dark: #1a1a1a;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #9CA3AF;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-900: #171717;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Remove tap highlight on iOS, eliminate flicker */
a, button, [role="button"], .action-card, .proof-card, .carousel-arrow {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  color: #0a0a0a;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 0 rgba(0,0,0,0.04);
  border-bottom: 1px solid #f5f5f5;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .brand-name {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #0a0a0a;
}

.brand-text .brand-sub {
  font-size: 10px;
  color: #737373;
  font-style: italic;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #404040;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

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

.nav-links a.active {
  color: var(--red);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white);
}

.btn-cta {
  background: var(--red);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}

.btn-cta:hover { background: var(--red-dark); }
.btn-cta:active { transform: translateY(1px); }

/* Hamburger toggle (mobile) — black on white navbar */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid #e5e5e5;
  color: #0a0a0a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.mobile-menu-toggle:hover {
  background: #f5f5f5;
  border-color: #d4d4d4;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: mm-fade 0.25s ease-out;
}

.mobile-menu.is-open {
  display: flex;
}

@keyframes mm-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  animation: mm-slide-up 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mm-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: var(--red);
  border-color: var(--red);
}

.mobile-menu-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--red);
  background: rgba(230,0,18,0.12);
  border: 1px solid rgba(230,0,18,0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  width: 100%;
}

.mobile-menu-links a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  background: rgba(230,0,18,0.15);
  color: var(--red);
}

.mobile-menu-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-cta.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(230,0,18,0.35);
}

.mobile-menu-cta.primary:hover {
  background: var(--red-dark);
}

.mobile-menu-cta.outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.mobile-menu-cta.outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.mobile-menu-foot {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ============================================
   HERO v2 (action cards + inquiry)
   ============================================ */
.hero-v2 {
  position: relative;
  background: #050505;
  color: var(--white);
  padding: 56px 48px;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 35%, rgba(5,5,5,0.2) 60%, rgba(5,5,5,0.5) 100%);
  pointer-events: none;
}

.hero-v2 .hero-slideshow {
  z-index: 0;
}

.hero-v2-grid {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-v2-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-v2-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.02;
  margin: 0;
}

.t-line-white { color: var(--white); }

.t-line-red {
  background: linear-gradient(135deg, #ff3344 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-v2-sub {
  font-size: 15px;
  color: #b8b8b8;
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}

/* Action cards grid */
.action-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: var(--white);
  color: var(--gray-900);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}

.action-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(230,0,18,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.action-text {
  flex: 1;
  min-width: 0;
}

.action-text h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.1px;
  color: var(--gray-900);
}

.action-text p {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.35;
}

.action-arrow {
  color: var(--red);
  font-size: 22px;
  font-weight: 300;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

/* Green-themed action cards (Apply Online + Explore Vehicles) */
.action-card.action-green .action-icon {
  background: rgba(22,163,74,0.1);
  color: #16A34A;
}

.action-card.action-green .action-arrow {
  color: #16A34A;
}

.action-card.action-green:hover {
  border-color: #16A34A;
}

.action-card:hover .action-arrow {
  transform: translateX(3px);
}

/* Quick Inquiry Card */
.hero-v2-right {
  display: flex;
  justify-content: flex-end;
}

.inquiry-card {
  background: var(--white);
  color: var(--gray-900);
  padding: 28px 26px;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.inquiry-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.inquiry-sub {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.inquiry-card .form-group {
  margin-bottom: 12px;
}

.inquiry-card .form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--gray-700);
  margin-bottom: 5px;
  display: block;
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  padding-right: 38px;
}

.input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.inquiry-card .form-group input,
.inquiry-card .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s;
}

.inquiry-card .form-group input:focus,
.inquiry-card .form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.inquiry-card .btn-submit {
  margin-top: 8px;
  background: var(--red);
  color: var(--white);
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.inquiry-card .btn-submit:hover {
  background: var(--red-dark);
}

/* Honeypot — hidden from real users, bots fill it */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Required asterisk */
.req-mark {
  color: #dc2626;
  font-weight: 700;
  margin-left: 2px;
}

/* Consent checkbox group */
.consent-group {
  margin-top: 4px;
  margin-bottom: 12px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  color: #525252;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #16a34a;
  cursor: pointer;
}
.consent-text {
  flex: 1;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.2;
}

.trust-item svg { flex-shrink: 0; }

/* ============================================
   HERO (legacy)
   ============================================ */
.hero {
  position: relative;
  min-height: 640px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  padding: 48px;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  width: 700px;
  max-width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3);
  color: #16A34A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.6);
  animation: pulse-dot 1.8s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

.hero-left h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.05;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--red) 0%, #ff3344 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 22px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-700);
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(22,163,74,0.1);
  display: grid;
  place-items: center;
  color: #16A34A;
  flex-shrink: 0;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }

/* Green variant — used for Talk to Sam / contact CTAs */
.btn-green {
  background: #16A34A !important;
}
.btn-green:hover { background: #15803d !important; }

.btn-outline-green {
  border-color: #16A34A !important;
  color: #16A34A !important;
}
.btn-outline-green:hover {
  background: #16A34A !important;
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  color: var(--gray-900);
  padding: 12px 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* Hero Right - Inquiry Form */
.hero-right h2 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-sub {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--red-dark); }

/* ============================================
   FEATURED MODELS
   ============================================ */
.section {
  padding: 56px 48px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 6px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--red);
}

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

.featured-layout {
  display: block;
}

/* Model search bar */
.model-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 0 24px;
}

.model-search-wrap input {
  width: 100%;
  padding: 14px 44px 14px 50px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.model-search-wrap input::placeholder {
  color: var(--gray-400);
}

.model-search-wrap input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230,0,18,0.08);
}

.model-search-wrap .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-700);
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.search-clear:hover {
  background: var(--gray-400);
  color: var(--white);
}

.search-no-results {
  font-size: 14px;
  color: var(--gray-600);
  font-style: italic;
  margin: 16px 0;
  padding: 18px;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: 10px;
  text-align: center;
}

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

.model-card {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--gray-200);
}

.model-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.model-card.available { cursor: pointer; }

.model-card.coming-soon {
  opacity: 0.55;
  position: relative;
}

.model-card.coming-soon::after {
  content: "COMING SOON";
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gray-900);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
}

.model-image {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.model-image img { width: 90%; object-fit: contain; }

.model-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.model-tagline {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 1.4;
}

.model-link {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Service Highlights */
.service-highlights {
  background: var(--white);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.service-item:hover { border-color: var(--red); }

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(230,0,18,0.08);
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
}

.service-info { flex: 1; }
.service-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.service-info p { font-size: 11px; color: var(--gray-600); }

.service-arrow {
  color: var(--gray-400);
  font-size: 18px;
}

.btn-services {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--red);
  border-radius: 10px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  transition: background 0.2s, color 0.2s;
}
.btn-services:hover { background: var(--red); color: var(--white); }

/* ============================================
   QUICK ACTIONS SECTION (after Proof of Transaction)
   ============================================ */
.actions-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 72px 48px;
}

.actions-container {
  max-width: 1280px;
  margin: 0 auto;
}

.actions-header {
  text-align: center;
  margin-bottom: 40px;
}

.actions-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
  background: rgba(230,0,18,0.08);
  border: 1px solid rgba(230,0,18,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.actions-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.actions-sub {
  font-size: 15px;
  color: var(--gray-600);
}

.actions-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Override card styles for light background context */
.actions-section .action-card {
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
}

.actions-section .action-card:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  border-color: var(--red);
}

.actions-section .inquiry-card {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-200);
  max-width: 100%;
  padding: 28px 26px;
  scroll-margin-top: 100px;
}

/* Pricelist action card — visually distinct */
.action-pricelist {
  background: linear-gradient(135deg, #fff9e0 0%, #ffffff 100%) !important;
  border-color: #f0c14b !important;
}

.action-pricelist .action-icon {
  background: rgba(245,158,11,0.15);
  color: #d97706;
}

.action-pricelist .action-arrow {
  color: #d97706;
}

/* Locked pricelist notice inside inquiry form */
.pricelist-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #fff7e6 0%, #fffbeb 100%);
  border: 1.5px solid #f59e0b;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  animation: pl-slide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.pricelist-notice .notice-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f59e0b;
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pricelist-notice .notice-body strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #78350f;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.pricelist-notice .notice-body p {
  font-size: 12px;
  color: #92400e;
  line-height: 1.45;
}

.btn-submit-pricelist {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
}

.btn-submit-pricelist:hover {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%) !important;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-hero {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 60%);
  padding: 80px 24px 64px;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.thankyou-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.thankyou-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.thankyou-success-icon {
  margin-bottom: 24px;
  animation: ty-pop 0.6s cubic-bezier(0.16, 1.4, 0.4, 1);
}

@keyframes ty-pop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thankyou-eyebrow {
  display: inline-block;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.35);
  color: #16A34A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.thankyou-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.05;
  background: linear-gradient(135deg, #0a0a0a 0%, #16A34A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.thankyou-message {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 32px;
}

.thankyou-message strong { color: var(--gray-900); }

/* Download box (pricelist mode) */
.download-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #fff8e1 0%, #fffbeb 100%);
  border: 2px solid #f59e0b;
  border-radius: 18px;
  padding: 22px 24px;
  margin: 0 auto 36px;
  max-width: 640px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(245,158,11,0.18);
}

.download-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(245,158,11,0.35);
}

.download-content { flex: 1; }

.download-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: #78350f;
  margin-bottom: 4px;
}

.download-content p {
  font-size: 12.5px;
  color: #92400e;
  line-height: 1.45;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(217,119,6,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217,119,6,0.45);
}

.btn-download.btn-pulse {
  animation: btn-pulse 1.4s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(217,119,6,0.35); }
  50% { box-shadow: 0 10px 24px rgba(217,119,6,0.35), 0 0 0 10px rgba(217,119,6,0.18); }
}

.thankyou-next {
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.thankyou-next h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gray-700);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-text {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-text:hover { color: var(--red); }

.thankyou-agent {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
  text-align: left;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.thankyou-agent-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #16A34A;
}

.thankyou-agent strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-900);
}

.thankyou-agent div {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .thankyou-title { font-size: 36px; }
  .thankyou-message { font-size: 14px; }
  .download-box { flex-direction: column; text-align: center; gap: 12px; }
  .thankyou-actions { flex-direction: column; }
  .thankyou-actions .btn-primary, .thankyou-actions .btn-outline { width: 100%; justify-content: center; }
}

/* About section enhanced as hero */
.about-section {
  padding-top: 64px;
}

/* ============================================
   PROOF OF TRANSACTION
   ============================================ */
.proof-section {
  background: linear-gradient(180deg, #050505 0%, #141414 60%, #1a1a1a 100%);
  color: var(--white);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.proof-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  z-index: 2;
}

.proof-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(230,0,18,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* 100% Customer Satisfaction Stamp — centered above title */
.satisfaction-stamp {
  position: relative;
  margin: 0 auto 18px;
  width: 140px;
  height: 140px;
  z-index: 3;
  animation: stamp-float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(22,163,74,0.4));
}

@keyframes stamp-float {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-4px); }
}

.stamp-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #4ade80 0%, transparent 50%),
    linear-gradient(135deg, #16A34A 0%, #15803d 100%);
  border: 3px solid #ffffff;
  box-shadow:
    inset 0 0 0 2px #16A34A,
    inset 0 0 0 4px #ffffff,
    inset 0 0 0 5px #16A34A,
    0 6px 24px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 14px;
  position: relative;
}

.stamp-inner::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.4);
  pointer-events: none;
}

.stamp-stars {
  font-size: 11px;
  letter-spacing: 2px;
  color: #ffd700;
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.stamp-percent {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.stamp-percent sup {
  font-size: 16px;
  font-weight: 800;
  vertical-align: top;
  margin-left: 1px;
}

.stamp-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stamp-guarantee {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffd700;
  background: rgba(0,0,0,0.25);
  padding: 2px 7px;
  border-radius: 999px;
  margin-top: 2px;
}

.proof-header {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
  padding: 0 24px;
  z-index: 2;
}

.badge-trust {
  display: inline-block;
  background: rgba(22,163,74,0.14);
  border: 1px solid rgba(74,222,128,0.35);
  color: #4ade80;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.proof-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof-sub {
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 30px;
}

.proof-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 26px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-item strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(180deg, #4ade80 0%, #16A34A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #999999;
  font-weight: 700;
  line-height: 1.4;
}

.stat-item span small {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.5px;
  color: #777;
  font-weight: 500;
  margin-top: 3px;
  text-transform: none;
  font-style: italic;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Proof Carousel (native scroll + JS auto-advance) */
.proof-carousel {
  position: relative;
  padding: 14px 0;
}

.proof-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto; /* JS handles smoothness */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
}

.proof-strip::-webkit-scrollbar { display: none; }

/* Carousel arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, transform 0.15s;
}

.carousel-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-arrow.prev:hover { transform: translateY(-50%) translateX(-3px); }
.carousel-arrow.next:hover { transform: translateY(-50%) translateX(3px); }

.proof-card {
  flex: 0 0 300px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.5);
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 2px solid rgba(255,255,255,0.06);
  scroll-snap-align: center;
}

/* Skeleton shimmer while image loads */
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  z-index: 0;
}

.proof-card.loaded::before {
  display: none;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.proof-card img { opacity: 0; }
.proof-card.loaded img { opacity: 1; }

.proof-card:hover {
  transform: scale(1.07) translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.7), 0 0 0 2px var(--red);
  z-index: 5;
  border-color: var(--red);
}

.proof-card img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.proof-card:hover img {
  transform: scale(1.12);
}

.proof-card::after {
  content: "✓ DELIVERED";
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(22,163,74,0.95);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(22,163,74,0.4);
}

.proof-card::before {
  content: "🔍 TAP TO VIEW";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.proof-card:hover::before {
  opacity: 1;
}

.proof-cta {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: #aaaaaa;
}

.proof-cta a {
  color: var(--red);
  font-weight: 700;
}

.proof-cta a:hover {
  color: #ff3344;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: lightbox-in 0.25s ease-out;
}

.lightbox.is-open {
  display: flex;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  object-fit: contain;
  animation: lightbox-zoom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightbox-zoom {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: grid;
  place-items: center;
  font-family: inherit;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ============================================
   PROMOTIONS
   ============================================ */
.promotions-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
  padding: 72px 48px;
  position: relative;
}

.promo-container {
  max-width: 1280px;
  margin: 0 auto;
}

.promo-header {
  text-align: center;
  margin-bottom: 44px;
}

.promo-eyebrow {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(230,0,18,0.3);
}

.promo-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #0a0a0a 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promo-sub {
  font-size: 15px;
  color: var(--gray-600);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.promo-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.15);
  border-color: var(--red);
}

.promo-card-featured {
  border: 2px solid var(--red);
  box-shadow: 0 14px 36px rgba(230,0,18,0.2);
}

.promo-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2a2a2a 0%, #4a4a4a 100%);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Model-specific backgrounds — real showroom images */
.promo-bg-montero,
.promo-bg-xforce,
.promo-bg-triton,
.promo-bg-destinator,
.promo-bg-l300,
.promo-bg-mirage,
.promo-bg-xpander,
.promo-bg-xpander-cross,
.promo-bg-versa {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.promo-bg-montero       { background-image: url('MONTERO SHOWROOM.png'); }
.promo-bg-xforce        { background-image: url('XFORCE SHOWROOM.png'); }
.promo-bg-triton        { background-image: url('TRITON SHOWROOM.png'); }
.promo-bg-destinator    { background-image: url('DESTINATOR SHOWROOM.png'); }
.promo-bg-l300          { background-image: url('L300 SHOWROOM.png'); }
.promo-bg-mirage        { background-image: url('MIRAGE HB SHOWROOM.png'); }
.promo-bg-xpander       { background-image: url('XPANDER SHOWROOM.png'); }
.promo-bg-xpander-cross { background-image: url('XPANDER CROSS.png'); }
.promo-bg-versa         { background-image: url('VERSA VAN SHOROOM.png'); }

.promo-badge-hot {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 11px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255,153,0,0.4);
}

.promo-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.promo-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.promo-variant {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.promo-prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}

.promo-srp {
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.promo-net {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 600;
}

.promo-save {
  background: linear-gradient(135deg, #16A34A 0%, #15803d 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 9px 14px;
  border-radius: 8px;
  text-align: center;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.promo-cta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-cta span {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.promo-card:hover .promo-cta span {
  transform: translateX(4px);
}

.promo-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--gray-600);
  font-style: italic;
}

/* ============================================
   ABOUT SAM
   ============================================ */
.about-section {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  padding: 80px 48px;
  position: relative;
}

.anchor-offset {
  position: absolute;
  top: -100px;
}

.about-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.about-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  border: 4px solid var(--white);
  outline: 3px solid #16A34A;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(22,163,74,0.95);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 6px 16px rgba(22,163,74,0.4);
}

.about-photo-caption {
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

.about-photo-caption strong {
  display: block;
  font-size: 16px;
  color: var(--gray-900);
  margin-bottom: 2px;
  font-weight: 800;
}

.experience-pill {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe082 100%);
  color: #8b6914;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #f5d570;
  box-shadow: 0 4px 12px rgba(245,213,112,0.3);
}

.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

.about-text strong {
  color: var(--gray-900);
  font-weight: 700;
}

.about-contact-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.about-contact-pill:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(230,0,18,0.04);
}

.about-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  border-color: var(--gray-900);
  color: var(--gray-900);
}

.btn-outline-dark:hover {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}

/* ============================================
   AGENT STRIP (legacy — kept for any leftover usage)
   ============================================ */
.agent-strip {
  background: var(--gray-50);
  padding: 48px;
  border-top: 1px solid var(--gray-200);
}

.agent-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
}

.agent-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #16A34A;
  background: var(--gray-100);
}
.agent-photo img { width: 100%; height: 100%; object-fit: cover; }

.agent-info .agent-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 6px;
}

.agent-info h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
}

.agent-info .agent-role {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.agent-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.agent-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-700);
}

.agent-contact a:hover { color: var(--red); }

.agent-action .btn-primary { white-space: nowrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-brand .brand-text .brand-name { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f1f1f;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background 0.2s;
}

.footer-socials a:hover { background: var(--red); }

.footer-col h5 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

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

.footer-col a {
  font-size: 13px;
  color: #b8b8b8;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-stay h5 { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 8px; }
.footer-stay p { font-size: 12px; color: #b8b8b8; margin-bottom: 16px; }

.subscribe-form {
  display: flex;
  gap: 8px;
}

.subscribe-form input {
  flex: 1;
  padding: 11px 14px;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-family: inherit;
}

.subscribe-form input:focus { outline: none; border-color: var(--red); }

.subscribe-form button {
  background: var(--red);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.2s;
}
.subscribe-form button:hover { background: var(--red-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: #888;
}

.footer-bottom .legal {
  display: flex;
  gap: 18px;
}

.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   VEHICLE DETAIL PAGE (mirage-g4.html)
   ============================================ */
.detail-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.detail-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.detail-image {
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  padding: 24px;
  border-radius: 16px;
}

.detail-image img { width: 100%; }

.detail-content .badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.detail-content h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1;
}

.detail-tagline {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 28px;
}

.detail-price {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 28px;
}

.detail-price .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #aaaaaa;
  margin-bottom: 4px;
}

.detail-price .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}

.detail-price .price small {
  font-size: 14px;
  font-weight: 500;
  color: #aaaaaa;
  margin-left: 6px;
}

.detail-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 28px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-white {
  background: var(--white);
  color: var(--gray-900);
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.btn-white:hover { background: var(--gray-100); }

/* Specs Section */
.specs-section {
  padding: 64px 48px;
  background: var(--gray-50);
}

.specs-container {
  max-width: 1280px;
  margin: 0 auto;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.spec-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.spec-card .spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(230,0,18,0.08);
  color: var(--red);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.spec-card h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.spec-card .spec-value {
  font-size: 18px;
  font-weight: 800;
}

.variants-section { margin-top: 32px; }

.variants-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

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

.variants-group-title {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gray-700, #525252);
  margin: 28px 0 4px;
  padding: 8px 14px;
  background: var(--gray-100, #f5f5f5);
  border-left: 4px solid #16a34a;
  border-radius: 4px;
}
.variants-group-title:first-of-type { margin-top: 8px; }

.variant-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, transform 0.2s;
}

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

.variant-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.4px;
  color: var(--gray-900);
  line-height: 1.15;
}

.variant-card .variant-type {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.variant-srp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(230,0,18,0.06) 0%, rgba(230,0,18,0.02) 100%);
  border: 1px solid rgba(230,0,18,0.15);
  border-radius: 8px;
  margin-bottom: 6px;
}

.variant-srp-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gray-700);
}

.variant-srp-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.3px;
}

.variant-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.variant-card .srp {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.variant-card .net {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
}

.variant-card .disc {
  display: inline-block;
  background: rgba(230,0,18,0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 8px;
}

/* VIEW FINANCING COMPUTATION button (in variant cards) */
.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 14px;
  background: transparent;
  border: 1.5px solid #16A34A;
  border-radius: 8px;
  color: #16A34A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn-card:hover {
  background: #16A34A;
  color: var(--white);
}

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

/* Anchor target offset so navbar doesn't cover the variant card */
#glx-mt,
#glx-cvt,
#gls-at {
  scroll-margin-top: 100px;
}

/* APPLY NOW button inside DP blocks */
.btn-apply-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 11px 14px;
  background: linear-gradient(135deg, #16a34a 0%, #0f7c37 100%);
  color: var(--white);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  box-shadow: 0 6px 16px rgba(22,163,74,0.25);
}

.btn-apply-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22,163,74,0.4);
}

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

/* Navbar "Apply Now" highlight */
.nav-apply {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-apply:hover {
  background: var(--red-dark);
}

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

.nav-links a.nav-apply.active {
  background: var(--red-dark);
}

/* Mobile menu "Apply Now" highlight */
.mobile-menu-links a.mobile-apply-active {
  background: var(--red);
  color: var(--white) !important;
  margin-top: 8px;
}

.mobile-menu-links a.mobile-apply-active:hover {
  background: var(--red-dark);
}

/* ============================================
   APPLICATION FORM PAGE
   ============================================ */
.app-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a0a0a 100%);
  color: var(--white);
  padding: 64px 48px 48px;
  position: relative;
  overflow: hidden;
}

.app-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(230,0,18,0.18) 0%, transparent 50%);
  pointer-events: none;
}

.app-header {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(74,222,128,0.45);
  color: #4ade80;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.app-badge svg { flex-shrink: 0; }

.app-hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.app-subtitle {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 22px;
}

.app-selection {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 18px;
  border-radius: 12px;
}

.app-selection-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #aaaaaa;
}

.app-selection strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* Form section */
.app-form-section {
  background: var(--gray-50);
  padding: 56px 48px;
  min-height: 70vh;
}

.app-form-container {
  max-width: 980px;
  margin: 0 auto;
}

.form-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.form-block-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.form-step {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 9px;
  border-radius: 4px;
}

.form-step.notes-step {
  background: #6366f1;
}

.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,0,18,0.08);
}

.form-block-head h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  flex: 1;
}

.form-block-tag {
  font-size: 11px;
  font-weight: 600;
  color: #16A34A;
  background: rgba(22,163,74,0.1);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(22,163,74,0.3);
}

.form-block-sub {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.55;
}

.form-block-sub strong {
  color: var(--gray-900);
  font-weight: 700;
}

.form-subhead {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gray-600);
  margin: 24px 0 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--gray-200);
  text-transform: uppercase;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-field .req {
  color: var(--red);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,0,18,0.08);
}

.form-field input.field-error,
.form-field select.field-error {
  border-color: var(--red);
  background: rgba(230,0,18,0.04);
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-row .form-field { margin-bottom: 0; }

/* Comaker block — slight visual differentiation */
.comaker-block {
  border: 2px solid #16A34A;
  background: linear-gradient(180deg, rgba(22,163,74,0.04) 0%, var(--white) 100%);
}

.comaker-block .form-step {
  background: #16A34A;
}

/* Limited mode (Separated/Widowed) — hide full-only fields, stack the row */
.comaker-block.limited-mode .comaker-full-only {
  display: none !important;
}

.comaker-block.limited-mode .form-row {
  display: block;
}

.comaker-block.limited-mode .form-row .form-field {
  margin-bottom: 14px;
}

.comaker-block.limited-mode .form-row .form-field:last-child {
  margin-bottom: 0;
}

.comaker-block.limited-mode .form-block-tag {
  background: rgba(245,158,11,0.12);
  color: #92400e;
  border-color: rgba(245,158,11,0.4);
}

/* Requirements box */
.requirements-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #fff8e1 0%, #fffbeb 100%);
  border: 1px solid #fbbf24;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
}

.req-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.req-content h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #92400e;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.req-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #78350f;
}

.req-content strong {
  color: #1a1a1a;
  font-weight: 700;
}

.requirements-final {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #16A34A;
  align-items: flex-start;
}

.requirements-final .req-content h4 {
  color: #14532d;
}

.requirements-final .req-content p {
  color: #166534;
}

.requirements-final .req-icon {
  display: flex;
  align-items: center;
}

/* Send instructions block (Viber / Email) */
.send-instructions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(22,163,74,0.35);
}

.send-instructions-lead {
  font-size: 13px !important;
  color: #14532d !important;
  margin-bottom: 10px !important;
  font-weight: 600;
}

.send-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--gray-900);
  transition: border-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.send-channel:hover {
  border-color: #16A34A;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(22,163,74,0.15);
}

.send-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}

.viber-icon { background: #7360F2; }
.email-icon { background: #ea4335; }

.send-channel > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.send-channel strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: 0.3px;
}

.send-channel-detail {
  font-size: 12px;
  color: var(--gray-600);
  word-break: break-all;
}

/* Submit block */
.submit-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--white);
}

.submit-block .form-block-head {
  border-bottom-color: rgba(255,255,255,0.1);
}

.submit-block .form-block-head h2 {
  color: var(--white);
}

.submit-note {
  font-size: 13px;
  color: #b8b8b8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.submit-note strong {
  color: var(--white);
  font-weight: 700;
}

.submit-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.btn-submit-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 18px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(230,0,18,0.35);
}

.btn-submit-app:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(230,0,18,0.5);
}

.btn-call-instead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #cccccc;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-call-instead:hover { color: var(--white); }

/* Responsive */
@media (max-width: 1024px) {
  .app-hero { padding: 48px 24px 36px; }
  .app-hero h1 { font-size: 30px; }
  .app-form-section { padding: 36px 16px; }
  .form-block { padding: 22px; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .nav-apply { display: none !important; } /* hidden in mobile (use mobile menu instead) */
}

/* DP Block (Sample Computation) */
.dp-block {
  margin-top: 16px;
  padding: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}

.dp-block-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.dp-block-label {
  display: inline-block;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, #c4000f 100%);
  padding: 7px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(230,0,18,0.28);
}

.dp-base {
  font-size: 11px;
  color: var(--gray-600);
}

.dp-base strong {
  color: var(--gray-900);
  font-weight: 800;
  font-size: 12px;
}

.dp-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 12.5px;
  padding: 7px 0;
  color: var(--gray-700);
}

.dp-row strong {
  color: var(--gray-900);
  font-weight: 700;
}

.dp-row-label {
  padding-top: 2px;
}

.dp-row-value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.dp-save {
  font-size: 11px;
  font-weight: 800;
  color: #16A34A; /* green */
  letter-spacing: 0.3px;
  background: rgba(22,163,74,0.08);
  padding: 2px 8px;
  border-radius: 4px;
}

.dp-row.mo {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed var(--gray-200);
  color: var(--red);
  align-items: center;
}

.dp-row.mo strong {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

/* ============================================
   QUOTATION PAGE
   ============================================ */
.quote-hero {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 56px 48px 40px;
}

.quote-header {
  max-width: 1280px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 12px;
  color: #aaaaaa;
  margin-bottom: 16px;
}

.breadcrumb a { color: #aaaaaa; }
.breadcrumb a:hover { color: var(--white); }

.quote-hero h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.quote-hero .subtitle {
  font-size: 15px;
  color: #cccccc;
}

.quote-section {
  padding: 48px;
  background: var(--gray-50);
  min-height: 60vh;
}

.quote-container {
  max-width: 1280px;
  margin: 0 auto;
}

.legend {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  font-size: 12px;
}

.legend-item strong { color: var(--red); }

.quote-table-wrap {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow-x: auto;
  margin-bottom: 32px;
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 900px;
}

.quote-table tr.title-row th {
  background: var(--black);
  color: var(--white);
  padding: 14px 12px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 12px;
  vertical-align: middle;
}

.quote-table tr.title-row th.center { text-align: center; }

.quote-table tr.title-row th.dp-group {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.2px;
  padding: 12px 8px;
  font-weight: 700;
  border-left: 2px solid rgba(255,255,255,0.25);
}

.quote-table tr.col-row th {
  background: var(--gray-100);
  color: var(--gray-700);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 10px 6px;
  font-weight: 700;
  border-left: 1px solid var(--gray-200);
  white-space: nowrap;
}

.quote-table tr.col-row th:nth-child(3n+1) {
  border-left: 2px solid var(--gray-200);
}

.quote-table tbody td {
  padding: 14px 12px;
  border-top: 1px solid var(--gray-200);
  text-align: right;
}

.quote-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
}

.quote-table tbody td.center { text-align: center; }

.quote-table tbody td.mo {
  background: rgba(230,0,18,0.04);
  color: var(--red);
  font-weight: 700;
}

.quote-table tbody tr:hover { background: var(--gray-50); }

/* Green DISC column (3rd column in tbody) */
.quote-table tbody td:nth-child(3) {
  color: #16A34A;
  font-weight: 800;
}

/* Small subtitle under table headers */
.th-sub {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4px;
  opacity: 0.75;
  margin-top: 3px;
  text-transform: none;
}

/* All-In Package Inclusions box (inside each DP block) */
.inclusions-box {
  margin-top: 10px;
  padding: 9px 12px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #16A34A;
  border-radius: 8px;
}

.inclusions-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #14532d;
  margin-bottom: 6px;
  padding-bottom: 5px;
  border-bottom: 1px dashed rgba(22,163,74,0.35);
  text-transform: uppercase;
}

.inclusions-header svg {
  color: #16A34A;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0;
  margin: 0;
}

.inclusions-list li {
  font-size: 11px;
  color: #166534;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}

.inclusions-list li::before {
  content: "✓";
  color: #16A34A;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 11px;
  line-height: 1.3;
}

/* Variant card footer (now shows SRP, not Net Cash) */
.card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.card-footer-label {
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--gray-700);
  font-weight: 700;
}

.cash-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--gray-600);
  font-style: italic;
  text-align: right;
}

.disclaimer {
  background: var(--white);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* Agent block (quotation page) */
.agent-block {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--gray-200);
}

.agent-block .agent-photo { width: 160px; height: 160px; }

.agent-block h3 { font-size: 24px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* Force fixed navbar on mobile — sticky breaks when html/body has overflow-x:hidden */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px 20px;
  }
  body { padding-top: 72px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-menu-toggle { display: inline-flex; }

  /* Quick Actions section mobile */
  .actions-section { padding: 48px 20px; }
  .actions-grid { grid-template-columns: 1fr; gap: 24px; }
  .actions-title { font-size: 28px; }
  .actions-sub { font-size: 14px; }
  .action-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .action-card { padding: 14px; gap: 10px; }
  .action-icon { width: 38px; height: 38px; }
  .action-text h3 { font-size: 13px; }
  .action-text p { font-size: 11px; }
  .inquiry-card { max-width: 100%; padding: 24px 20px; }
  .trust-badges { gap: 6px; }
  .trust-item { font-size: 10px; }
  /* About-as-hero mobile */
  .about-section { padding: 48px 20px; }
  .hero { padding: 32px 24px; min-height: auto; }
  .hero-card { grid-template-columns: 1fr; width: 100%; padding: 28px; }
  .section { padding: 48px 24px; }
  .featured-layout { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .agent-card { grid-template-columns: 1fr; text-align: center; }
  .agent-photo { margin: 0 auto; }
  .footer { padding: 40px 24px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-hero { padding: 40px 24px; }
  .detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .detail-content h1 { font-size: 40px; }
  .specs-section, .quote-section { padding: 40px 24px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .variants-grid { grid-template-columns: 1fr; }
  .quote-hero { padding: 40px 24px; }
  .agent-block { grid-template-columns: 1fr; text-align: center; }
  .agent-block .agent-photo { margin: 0 auto; }
  .agent-strip { padding: 32px 24px; }
  .proof-section { padding: 48px 0 40px; }
  .proof-title { font-size: 30px; }
  .proof-stats { gap: 18px; }
  .stat-item strong { font-size: 26px; }
  .proof-card { flex: 0 0 240px; height: 180px; }
  .proof-strip { gap: 12px; padding: 8px 16px; }
  .carousel-arrow { width: 44px; height: 44px; font-size: 22px; }
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
  .satisfaction-stamp { width: 120px; height: 120px; }
  .promotions-section { padding: 56px 24px; }
  .promo-title { font-size: 32px; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-section { padding: 56px 24px; }
  .about-container { grid-template-columns: 1fr; gap: 36px; max-width: 600px; }
  .about-photo-col { max-width: 320px; margin: 0 auto; }
  .about-title { font-size: 32px; }
  .stamp-percent { font-size: 28px; }
  .stamp-percent sup { font-size: 12px; }
  .stamp-text { font-size: 8px; }
  .stamp-guarantee { font-size: 7px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 28px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

@media (max-width: 640px) {
  .nav-actions { gap: 12px; }
  .nav-link-icon { display: none; }
  .models-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .detail-content h1 { font-size: 32px; }
  .legend { grid-template-columns: 1fr; }
  .proof-stats { flex-wrap: wrap; gap: 14px; }
  .stat-divider { display: none; }
  .stat-item strong { font-size: 22px; }
  .proof-card { flex: 0 0 220px; height: 165px; }
  .proof-strip { gap: 10px; padding: 8px 10px; }
  .carousel-arrow { width: 44px; height: 44px; font-size: 20px; }
}

/* Extra-small phones (iPhone SE 1st gen / very narrow Android) */
@media (max-width: 380px) {
  .proof-card { flex: 0 0 190px; height: 145px; }
  .proof-title { font-size: 24px; }
  .proof-stats { gap: 10px; }
  .stat-item strong { font-size: 20px; }
  .stat-item span { font-size: 9px; letter-spacing: 0.8px; }
  .satisfaction-stamp { width: 100px; height: 100px; }
  .stamp-percent { font-size: 22px; }
  .stamp-percent sup { font-size: 11px; }
  .hero-v2-title, .actions-title { font-size: 20px; }
  .about-title { font-size: 22px; }
  .action-cards-grid { grid-template-columns: 1fr; }
  .navbar { padding: 12px 14px; }
  .brand-text .brand-name { font-size: 13px; }
  .brand-text .brand-sub { font-size: 9px; }
  .actions-title { font-size: 22px; }
  .action-cards-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
  .trust-item { font-size: 9px; }
  .trust-item svg { width: 16px; height: 16px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-title { font-size: 26px; }
  .about-title { font-size: 26px; }
  .about-cta-row .btn-primary,
  .about-cta-row .btn-outline { flex: 1; justify-content: center; }
  .satisfaction-stamp { width: 110px; height: 110px; }
}

/* ==========================================================
   QUOTATION PAGES — MOBILE LIGHT REDESIGN (tabbed DP blocks)
   ========================================================== */
@media (max-width: 768px) {
  body:has(.quote-section) .quote-section,
  body:has(.quote-section) .quote-container {
    background: #ffffff;
  }
  body:has(.quote-section) .quote-section { padding: 14px 0 28px; }
  body:has(.quote-section) .quote-container { padding: 0 10px; max-width: 100%; }
  body:has(.quote-section) .quote-section .section-title {
    text-align: left;
    padding-left: 4px;
    margin: 18px 0 12px !important;
  }

  /* Hide the desktop summary table on mobile — covered by tabbed cards */
  .quote-section .quote-table-wrap,
  .quote-section .legend,
  .quote-section .disclaimer { display: none; }

  /* Variant card — light card with shadow */
  .quote-section .variants-grid .variant-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 0;
    margin-bottom: 18px;
    color: #0a0a0a;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  }

  /* Hero — variant name + SRP + vehicle image */
  .variant-card-hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid #f0f0f0;
  }
  .variant-card-hero-text { min-width: 0; }
  .variant-card-hero h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 4px;
    line-height: 1.1;
    letter-spacing: -0.3px;
  }
  .variant-card-hero .variant-type {
    font-size: 11px;
    color: #737373;
    margin: 0 0 10px;
  }
  .variant-card-hero .variant-srp-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    background: #f9fafb;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin: 0;
  }
  .variant-card-hero .variant-srp-label {
    font-size: 10px;
    color: #737373;
    letter-spacing: 1px;
  }
  .variant-card-hero .variant-srp-value {
    color: #dc2626;
    font-weight: 800;
    font-size: 16px;
  }
  .variant-card-hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .variant-card-hero-image img {
    width: 100%;
    max-width: 160px;
    height: auto;
    object-fit: contain;
  }

  /* DP tab bar */
  .dp-tab-bar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
    gap: 6px;
    padding: 12px 14px 0;
  }
  .dp-tab-bar-label {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 14px 18px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    text-align: center;
    line-height: 1.1;
  }
  .dp-tab-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .dp-tab {
    background: #ffffff;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    padding: 6px 6px;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    min-height: 46px;
  }
  .dp-tab .dp-tab-pct {
    font-size: 13px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1;
  }
  .dp-tab .dp-tab-base {
    font-size: 10px;
    color: #737373;
    line-height: 1.1;
  }
  .dp-tab.active {
    border-color: #dc2626;
    background: #fef2f2;
  }
  .dp-tab.active .dp-tab-pct,
  .dp-tab.active .dp-tab-base { color: #dc2626; }

  /* Hide non-active DP blocks */
  .dp-block-tabbed.dp-hidden { display: none !important; }

  /* DP block — light 2-column layout */
  .quote-section .variants-grid .variant-card .dp-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "prio mo"
      "reg  incl"
      "apply apply";
    gap: 0;
    background: #ffffff;
    border: none;
    border-radius: 0;
    margin: 12px 14px;
    padding: 0;
    overflow: visible;
    grid-auto-rows: min-content;
  }
  .quote-section .variants-grid .variant-card .dp-block > .dp-row-prio { grid-area: prio; }
  .quote-section .variants-grid .variant-card .dp-block > .dp-row-reg  { grid-area: reg; }

  /* Hide head — info is now in the active tab */
  .quote-section .variants-grid .variant-card .dp-block-head { display: none; }

  /* DP rows */
  .quote-section .variants-grid .variant-card .dp-block > .dp-row:not(.mo) {
    padding: 10px 12px;
    border-bottom: 1px dashed #e5e5e5;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px;
    align-items: start;
  }
  .quote-section .variants-grid .variant-card .dp-row-label {
    color: #525252;
    font-size: 11px;
    line-height: 1.3;
  }
  .quote-section .variants-grid .variant-card .dp-row-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .quote-section .variants-grid .variant-card .dp-row-value strong {
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 800;
  }
  .quote-section .variants-grid .variant-card .dp-save {
    background: #ffffff;
    color: #16a34a;
    border: 1px solid #16a34a;
    padding: 2px 7px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
  }

  /* 60 MOS row — big red */
  .quote-section .variants-grid .variant-card .dp-block > .dp-row.mo {
    grid-area: mo;
    display: block;
    background: transparent;
    padding: 10px 12px 6px;
    border-left: 1px solid #f0f0f0;
    text-align: left;
  }
  .quote-section .variants-grid .variant-card .dp-row.mo > span {
    color: #737373;
    font-size: 10px;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .quote-section .variants-grid .variant-card .dp-row.mo > span::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .quote-section .variants-grid .variant-card .dp-row.mo > strong {
    color: #dc2626;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    display: block;
  }

  /* Inclusions box (right column) */
  .quote-section .variants-grid .variant-card .dp-block .inclusions-box {
    grid-area: incl;
    background: transparent;
    border: none;
    border-left: 1px solid #f0f0f0;
    margin: 0;
    padding: 0 12px 12px;
    border-radius: 0;
  }
  .quote-section .variants-grid .variant-card .dp-block .inclusions-header {
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 6px !important;
    gap: 5px;
  }
  .quote-section .variants-grid .variant-card .dp-block .inclusions-header svg {
    width: 11px;
    height: 11px;
    stroke: #16a34a;
  }
  .quote-section .variants-grid .variant-card .dp-block .inclusions-list {
    display: block !important;
    color: #404040;
    font-size: 10px !important;
    line-height: 1.35 !important;
    padding: 0 !important;
    list-style: none;
  }
  .quote-section .variants-grid .variant-card .dp-block .inclusions-list li {
    position: relative;
    padding: 2px 0 2px 14px !important;
    margin: 0 !important;
  }
  .quote-section .variants-grid .variant-card .dp-block .inclusions-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-weight: 800;
    font-size: 10px;
  }

  /* Tier badge */
  .tier-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 0;
  }
  .tier-badge .tier-shield {
    display: inline-flex;
    width: 22px;
    height: 26px;
    flex-shrink: 0;
  }
  .tier-badge .tier-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #525252;
  }
  .tier-care .tier-label { color: #525252; }
  .tier-assurance .tier-label { color: #d97706; }
  .tier-premium .tier-label { color: #ca8a04; }

  /* APPLY NOW — full-width green button at bottom */
  .quote-section .variants-grid .variant-card .dp-block > .btn-apply-now {
    grid-area: apply;
    margin: 8px 12px 14px !important;
    padding: 13px 14px !important;
    font-size: 13px !important;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 8px;
    gap: 6px;
    color: #ffffff;
  }
  .quote-section .variants-grid .variant-card .dp-block > .btn-apply-now svg {
    width: 13px !important;
    height: 13px !important;
  }

  /* Hide card footer + cash note (info already in hero) */
  .quote-section .variants-grid .variant-card > .card-footer,
  .quote-section .variants-grid .variant-card > .cash-note,
  .quote-section .variants-grid .variant-card > .price-row.card-footer {
    display: none;
  }

  /* Footer disclaimer */
  .mobile-comp-note {
    margin: 16px 4px 0;
    padding: 12px 14px;
    background: #f9fafb;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    color: #525252;
    font-size: 11px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }
  .mobile-comp-note svg { flex-shrink: 0; stroke: #737373; }

  .quote-section .variants-grid { gap: 16px; }
}

/* Small phones — extra tightening */
@media (max-width: 380px) {
  .variant-card-hero h3 { font-size: 17px; }
  .variant-card-hero-image img { max-width: 130px; }
  .dp-tab-bar-label { font-size: 10px; padding: 12px 14px; min-width: 92px; }
  .dp-tab .dp-tab-pct { font-size: 12px; }
  .dp-tab .dp-tab-base { font-size: 9px; }
  .quote-section .variants-grid .variant-card .dp-row.mo > strong { font-size: 22px; }
  .quote-section .variants-grid .variant-card .dp-row-value strong { font-size: 13px; }
}

/* ==========================================================
   NEW HERO — 2 CTA buttons (Financing + Cash Transaction)
   ========================================================== */
.hero-cta-section {
  padding: 56px 6% 40px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.hero-cta-container {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-cta-header {
  text-align: center;
  margin-bottom: 32px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #16a34a;
  background: #dcfce7;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero-title {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 15px;
  color: #525252;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}

.hero-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hero-cta-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 26px 22px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.hero-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
}
.hero-cta-text h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0a0a0a;
  margin: 0 0 6px;
  letter-spacing: 0.3px;
}
.hero-cta-text p {
  font-size: 13px;
  color: #525252;
  margin: 0;
  line-height: 1.45;
}
.hero-cta-arrow {
  font-size: 28px;
  font-weight: 600;
  color: #a3a3a3;
  flex-shrink: 0;
}

/* Green variant (Financing) */
.hero-cta-green { border-color: #bbf7d0; }
.hero-cta-green:hover { border-color: #16a34a; }
.hero-cta-green .hero-cta-icon {
  background: #dcfce7;
  color: #16a34a;
}
.hero-cta-green .hero-cta-arrow { color: #16a34a; }

/* Red variant (Cash Transaction) */
.hero-cta-red { border-color: #fecaca; }
.hero-cta-red:hover { border-color: #dc2626; }
.hero-cta-red .hero-cta-icon {
  background: #fee2e2;
  color: #dc2626;
}
.hero-cta-red .hero-cta-arrow { color: #dc2626; }

/* Inquiry section (revealed via Pricelist / Contact links) */
.inquiry-section {
  padding: 40px 6% 56px;
  background: #fafafa;
}
.inquiry-section .inquiry-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.inquiry-section .actions-grid-inquiry-only {
  display: block;
}
.inquiry-section .inquiry-card {
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-cta-section { padding: 32px 5% 24px; }
  .hero-cta-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 13px; }
  .hero-cta-card { padding: 18px 16px; gap: 12px; }
  .hero-cta-icon { width: 44px; height: 44px; border-radius: 11px; }
  .hero-cta-text h3 { font-size: 14px; margin-bottom: 4px; }
  .hero-cta-text p { font-size: 11px; }
  .hero-cta-arrow { font-size: 22px; }
  .inquiry-section { padding: 24px 5% 40px; }
}

/* ==========================================================
   VEHICLE PICKER (homepage hero)
   "Choose your Mitsubishi" grid — light theme
   ========================================================== */
.picker-section {
  background: #ffffff;
  padding: 40px 5% 56px;
}
.picker-container { max-width: 1200px; margin: 0 auto; }
.picker-header { text-align: center; margin-bottom: 28px; }
.picker-title {
  font-size: 32px;
  font-weight: 800;
  color: #0a0a0a;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.picker-underline {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 14px;
}
.picker-underline span {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: #e5e5e5;
}
.picker-underline span:first-child { background: #dc2626; }
.picker-sub {
  font-size: 14px;
  color: #525252;
  margin: 0 auto;
  max-width: 460px;
  line-height: 1.5;
}

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

.picker-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 14px 12px 0;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  color: #0a0a0a;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.picker-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08), 0 12px 28px rgba(0,0,0,0.08);
}
.picker-logo {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #0a0a0a;
  margin-bottom: 2px;
}
.picker-tag {
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #737373;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.picker-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin: 6px 0 8px;
}
.picker-image img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.picker-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  margin: 0 -12px;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
  font-weight: 500;
  color: #0a0a0a;
}
.picker-cta .arrow { color: #737373; font-size: 18px; }

/* Special CTA card (Download All Unit Pricelist) — red */
.picker-card-cta {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border: 1px solid #b91c1c;
  text-align: center;
  min-height: 100%;
}
.picker-card-cta:hover { box-shadow: 0 8px 24px rgba(220,38,38,0.4); }
.picker-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  margin-bottom: 14px;
}
.picker-cta-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
}
.picker-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #dc2626;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
}

@media (min-width: 769px) {
  .picker-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .picker-section { padding: 56px 5% 72px; }
  .picker-title { font-size: 40px; }
  .picker-image { height: 110px; }
  .picker-image img { max-height: 110px; }
}
