/* ============================================================
   DiamondAutoGroup — Shared Stylesheet
   Dark navy + gold theme, mobile-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:ital,wght@0,400;0,700;0,900;1,700;1,900&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg-dark:    #080d1a;
  --bg-mid:     #0d1526;
  --bg-card:    #111e35;
  --bg-card2:   #0f1a2e;
  --gold:       #D4AF37;
  --gold-light: #f0c842;
  --gold-dim:   rgba(212,175,55,0.15);
  --gold-border:rgba(212,175,55,0.3);
  --white:      #ffffff;
  --text:       #e8eaf0;
  --text-muted: #7a8499;
  --border:     rgba(255,255,255,0.08);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography helpers ────────────────────────────────── */
.montserrat { font-family: 'Montserrat', sans-serif; }

/* ── Layout helpers ────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,13,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 0;
  gap: 16px;
}

/* Wordmark */
.wordmark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-self: start;
}
.site-logo {
  width: 120px;
  height: auto;
}

/* Nav tabs — centered column */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-tab:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-tab.active { color: var(--gold); background: var(--gold-dim); }

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  justify-self: end;
}

.btn-outline-sm {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-outline-sm:hover { background: var(--gold-dim); border-color: var(--gold); }

.btn-gold-sm {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  background: var(--gold);
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-gold-sm:hover { background: var(--gold-light); }

/* Mobile header */
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: 10px 0;
    gap: 6px;
  }
  .wordmark { grid-column: 1; grid-row: 1; }
  .header-ctas { grid-column: 2; grid-row: 1; justify-self: end; }
  .header-nav { grid-column: 1 / -1; grid-row: 2; justify-self: center; gap: 2px; }
  .site-logo { width: 85px; }
  .nav-tab { padding: 7px 12px; font-size: 0.78rem; }
  .btn-outline-sm, .btn-gold-sm { padding: 7px 12px; font-size: 0.78rem; }
}

@media (max-width: 420px) {
  .btn-outline-sm { display: none; }
  .site-logo { width: 75px; }
}

/* ============================================================
   BUTTONS (general)
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--gold);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--gold-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ============================================================
   HERO — CONSUMER
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8,13,26,0.97) 0%, rgba(13,21,38,0.9) 60%, rgba(212,175,55,0.06) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-headline .accent { color: var(--gold); }

.hero-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0;
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 400px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero visual side */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  width: 100%;
  max-width: 340px;
}

.hero-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-card-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
}

.hero-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-card.alt {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  max-width: 280px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { align-items: center; flex-direction: row; justify-content: center; }
  .hero-card, .hero-card.alt { max-width: 48%; padding: 20px; }
  .hero-card-value { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-visual { flex-direction: column; }
  .hero-card, .hero-card.alt { max-width: 100%; }
}

/* ============================================================
   HOW IT WORKS — SPLIT PANEL
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-mid);
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.9;
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Right-side decorative panel */
.how-visual {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diamond-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.diamond-svg {
  width: 80px;
  height: 80px;
  opacity: 0.9;
}

.how-visual-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}

.how-visual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-visual-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

@media (max-width: 768px) {
  .how-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   STAT BAND
   ============================================================ */
.stat-band {
  background: var(--gold);
  padding: 28px 0;
  overflow: hidden;
}

.stat-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  padding: 6px 32px;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(0,0,0,0.25);
}

@media (max-width: 600px) {
  .stat-band-inner { flex-direction: column; gap: 12px; }
  .stat-divider { display: none; }
  .stat-item { padding: 4px 0; }
}

/* ============================================================
   QUOTE FORM SECTION
   ============================================================ */
.quote-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.quote-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 780px;
  margin: 0 auto;
}

/* Form elements */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-label .optional {
  font-weight: 400;
  text-transform: none;
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a8499' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select option { background: var(--bg-card); color: var(--white); }

.form-textarea { resize: vertical; min-height: 90px; }

/* VIN row */
.vin-row { display: flex; gap: 10px; align-items: flex-end; }
.vin-row .form-input { flex: 1; }
.vin-decode-btn {
  padding: 12px 18px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition);
}
.vin-decode-btn:hover { background: rgba(212,175,55,0.25); }
.vin-status { font-size: 0.78rem; margin-top: 4px; }
.vin-status.success { color: #4ade80; }
.vin-status.error { color: #f87171; }

/* Conditional bank field */
#bank-field { display: none; }

/* Photo upload */
.photo-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.photo-upload-area:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.photo-upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-icon { color: var(--gold); margin: 0 auto 10px; width: 28px; }
.upload-text { font-size: 0.88rem; color: var(--text-muted); }
.upload-text strong { color: var(--text); }
.photo-previews {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.photo-preview {
  width: 72px; height: 72px; object-fit: cover; border-radius: 8px;
  border: 1px solid var(--border);
}

/* Form section divider */
.form-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
  grid-column: 1 / -1;
}

.form-section-label {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 8px;
}

/* Error / field error */
.field-error { font-size: 0.76rem; color: #f87171; margin-top: 2px; display: none; }
.field-error.show { display: block; }
.form-input.error, .form-select.error { border-color: #f87171; }

/* Error banner */
.error-banner {
  display: none;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #f87171;
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.error-banner.show { display: block; }

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover { background: var(--gold-light); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.submit-btn.loading .spinner { display: block; }
.submit-btn.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success .success-icon { color: var(--gold); margin: 0 auto 20px; width: 48px; }
.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.form-success p { color: var(--text-muted); font-size: 0.95rem; }
.form-body.hide { display: none; }

@media (max-width: 640px) {
  .quote-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-mid);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials-scroll { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--bg-dark);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-header { margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links-col a:hover { color: var(--white); }

.footer-contact { font-size: 0.88rem; color: var(--text-muted); }
.footer-contact a { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   DEALER PAGE — HERO
   ============================================================ */
.dealer-hero {
  padding: 100px 0 80px;
  background:
    linear-gradient(to bottom right, rgba(8,13,26,0.98) 40%, rgba(212,175,55,0.05) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(212,175,55,0.07) 0%, transparent 55%);
  border-bottom: 1px solid var(--border);
}

.dealer-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dealer-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.dealer-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dealer-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dealer-stat-icon { color: var(--gold); width: 28px; height: 28px; flex-shrink: 0; }

.dealer-stat-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.dealer-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 768px) {
  .dealer-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   DEALER PAGE — WHAT WE OFFER
   ============================================================ */
.dealer-offer {
  padding: 100px 0;
  background: var(--bg-mid);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition);
}

.offer-card:hover { border-color: var(--gold-border); }

.offer-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.offer-icon svg { width: 24px; height: 24px; }

.offer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.offer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DEALER PAGE — PROCESS
   ============================================================ */
.dealer-process {
  padding: 100px 0;
  background: var(--bg-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
  pointer-events: none;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-num {
  width: 56px;
  height: 56px;
  background: var(--bg-card);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process-step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
}

/* ============================================================
   DEALER SUBMISSION FORM
   ============================================================ */
.dealer-form-section {
  padding: 100px 0;
  background: var(--bg-mid);
}

.dealer-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.dealer-form-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.dealer-form-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.dealer-info-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.dealer-info-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text);
}
.dealer-info-points .dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}

@media (max-width: 768px) {
  .dealer-form-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   DEALER TESTIMONIALS
   ============================================================ */
.dealer-testimonials {
  padding: 100px 0;
  background: var(--bg-dark);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.gold { color: var(--gold); }

/* Scroll-to-form link */
a.cta-anchor { text-decoration: none; }
