/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
  --dark: #0f172a;
  --dark-light: #1e293b;
  --yellow: #FFD700;
  --yellow-dark: #E6C200;
  --green: #22C55E;
  --green-dark: #16A34A;
  --red: #EF4444;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #718096;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* ========== TYPOGRAPHY ========== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

/* ========== HEADER ========== */
.header {
  background: var(--dark);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--yellow);
}

.header-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  flex-shrink: 0;
}

.header-trust-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 1px;
}

.header-trust-text {
  color: var(--gray-300);
  font-size: 13px;
  font-weight: 500;
}

.header-trust-text strong {
  color: var(--white);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.header-cta {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Desktop Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.header-nav a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  display: block;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--white);
}

/* Mobile Bottom CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  z-index: 998;
  gap: 12px;
}

.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-cta-bar .mobile-call-btn {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.mobile-cta-bar .mobile-value-btn {
  background: var(--green);
  color: var(--white);
}

/* ========== HERO ========== */
.hero {
  background: var(--dark);
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.7)),
      url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1400&h=800&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-badge-text {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-form {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  max-width: 480px;
}

.hero-input-wrap {
  flex: 1;
  position: relative;
}

.hero-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter', monospace;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 3px solid var(--yellow);
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: var(--yellow);
  color: var(--dark);
  outline: none;
  transition: all 0.2s;
}

.hero-input::placeholder {
  color: rgba(15,23,42,0.4);
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-input:focus {
  background: #fff8d6;
  border-color: var(--yellow-dark);
}

.hero-btn {
  background: var(--green);
  color: var(--white);
  border: 3px solid var(--green);
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0 12px 12px 0;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}

.hero-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateX(2px);
}

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

.hero-form-note span {
  color: var(--gray-500);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-form-note span svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* Hero Reviews Side */
.hero-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.review-card-mini {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
  animation: slideInRight 0.6s ease-out backwards;
}

.review-card-mini:nth-child(1) { animation-delay: 0.1s; }
.review-card-mini:nth-child(2) { animation-delay: 0.3s; }
.review-card-mini:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.review-card-mini:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.review-card-mini-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-card-mini-text {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
}

.review-card-mini-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card-mini-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.review-card-mini-vehicle {
  color: var(--gray-500);
  font-size: 12px;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.3s;
  cursor: pointer;
}

.google-badge:hover {
  background: rgba(255,255,255,0.08);
}

.google-badge-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-badge-logo span {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.google-badge-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.google-badge-stars {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 2px;
}

.google-badge-count {
  color: var(--gray-400);
  font-size: 13px;
}

.google-badge-count a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.google-badge-count a:hover {
  text-decoration: underline;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--dark-light);
  border-top: 1px solid rgba(255,215,0,0.1);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  padding: 40px 24px;
}

.stats-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ========== COMPARISON TABLE ========== */
.comparison {
  padding: 80px 24px;
  background: var(--gray-50);
}

.comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
  font-size: 15px;
}

.comparison-table thead th {
  padding: 20px 16px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  border-bottom: 2px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-600);
}

.comparison-table thead th:first-child {
  text-align: left;
  width: 200px;
  background: var(--gray-50);
}

.comparison-table thead th.highlight {
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  position: relative;
}

.comparison-table thead th.highlight::before {
  content: '\2605 RECOMMENDED';
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.8);
}

.comparison-table tbody td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 14px;
}

.comparison-table tbody td:first-child,
.comparison-table tbody th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

.comparison-table tbody td.highlight {
  background: rgba(34,197,94,0.04);
  font-weight: 700;
  color: var(--dark);
  border-left: 2px solid var(--green);
  border-right: 2px solid var(--green);
}

.comparison-table tbody tr:last-child td.highlight {
  border-bottom: 2px solid var(--green);
  border-radius: 0 0 0 0;
}

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

.comparison-table tbody tr:hover td.highlight {
  background: rgba(34,197,94,0.08);
}

.check {
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}

.cross {
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
}

.warning {
  color: #F59E0B;
  font-weight: 600;
  font-size: 13px;
}

.best-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34,197,94,0.1);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 100px;
}

.comparison-cta {
  text-align: center;
  margin-top: 32px;
}

.comparison-cta-text {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.comparison-cta-text strong {
  color: var(--dark);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 80px 24px;
  background: var(--white);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 28px;
  color: var(--green);
  font-weight: 700;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 2px;
  font-style: normal;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}

.testimonial-vehicle {
  font-size: 13px;
  color: var(--gray-500);
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34,197,94,0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.testimonial-verified svg {
  width: 12px;
  height: 12px;
}

/* ========== TRUST SIGNALS ========== */
.trust-signals {
  padding: 80px 24px;
  background: var(--gray-50);
}

.trust-signals-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(34,197,94,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.trust-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.trust-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 80px 24px;
  background: var(--white);
}

.how-it-works-inner {
  max-width: 900px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step {
  display: flex;
  gap: 32px;
  position: relative;
  padding-bottom: 48px;
}

.step:last-child {
  padding-bottom: 0;
}

.step-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-line {
  width: 3px;
  flex: 1;
  background: var(--gray-200);
  margin-top: 8px;
}

.step:last-child .step-line {
  display: none;
}

.step-content {
  padding-top: 8px;
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 500px;
}

.step-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ========== RECENT SALES ========== */
.recent-sales {
  padding: 80px 24px;
  background: var(--dark);
  overflow: hidden;
}

.recent-sales-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.recent-sales .section-label {
  color: var(--yellow);
}

.recent-sales .section-title {
  color: var(--white);
}

.recent-sales .section-subtitle {
  color: var(--gray-400);
}

.sales-ticker {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.sale-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.sale-thumb {
  width: 80px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 16px;
}

.sale-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sale-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.sale-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.sale-vehicle {
  display: flex;
  flex-direction: column;
}

.sale-vehicle-name {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}

.sale-vehicle-details {
  font-size: 13px;
  color: var(--gray-500);
}

.sale-arrow {
  color: var(--gray-500);
  font-size: 20px;
  padding: 0 16px;
}

.sale-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sale-price-amount {
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
}

.sale-price-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.sale-time {
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 2px;
}

/* ========== FAQ ========== */
.faq {
  padding: 80px 24px;
  background: var(--white);
}

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

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

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

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 18px;
  color: var(--gray-500);
  font-weight: 400;
}

.faq-item.active .faq-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 80px 24px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.final-cta h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.final-cta h2 em {
  color: var(--yellow);
  font-style: normal;
}

.final-cta-sub {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.final-cta-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 20px;
}

.final-cta-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter', monospace;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 3px solid var(--yellow);
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: var(--yellow);
  color: var(--dark);
  outline: none;
}

.final-cta-input::placeholder {
  color: rgba(15,23,42,0.4);
  letter-spacing: 2px;
  font-weight: 600;
}

.final-cta-btn {
  background: var(--green);
  color: var(--white);
  border: 3px solid var(--green);
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0 12px 12px 0;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.final-cta-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.final-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.final-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-400);
  font-size: 13px;
}

.final-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* ========== FOOTER ========== */
.footer {
  background: #080e1a;
  padding: 48px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 24px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4 {
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--gray-500);
  font-size: 14px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--gray-600);
  font-size: 13px;
}

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

.footer-legal a {
  color: var(--gray-600);
  font-size: 13px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gray-400);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ========== CTA BUTTON (shared) ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

/* ========== UTILITY CLASSES (inner pages) ========== */

/* Page Hero — smaller hero for inner pages */
.page-hero {
  background: var(--dark);
  padding: 48px 24px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb .separator {
  color: var(--gray-400);
}

.breadcrumb .current {
  color: var(--dark);
  font-weight: 600;
}

/* Content Section — generic padded section */
.content-section {
  padding: 64px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-section p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-section ul, .content-section ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-section li {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Legal Content — for privacy, terms, cookies pages */
.legal-content {
  padding: 64px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-content li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Location Grid — for locations hub page */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.location-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.location-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Vehicle Card — for vehicle types hub/pages */
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.vehicle-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vehicle-card-body {
  padding: 24px;
}

.vehicle-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.vehicle-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Contact Card */
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(34,197,94,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray-500);
}

.contact-card a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Fleet Card — for fleet/vehicle type pages */
.fleet-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.fleet-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.fleet-card-img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.fleet-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.fleet-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Scroll animation utility */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-cta-bar {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .fleet-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-trust, .header-phone {
    display: none;
  }
  .hero {
    padding: 40px 24px 60px;
  }
  .hero-form {
    flex-direction: column;
    gap: 12px;
  }
  .hero-input {
    border-radius: 12px;
    border-right: 3px solid var(--yellow);
    text-align: center;
  }
  .hero-btn {
    border-radius: 12px;
    justify-content: center;
  }
  .hero-reviews {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .comparison-table {
    font-size: 13px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .final-cta-form {
    flex-direction: column;
  }
  .final-cta-input {
    border-radius: 12px;
    border-right: 3px solid var(--yellow);
    text-align: center;
  }
  .final-cta-btn {
    border-radius: 12px;
  }
  .sale-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .sale-price {
    align-items: center;
  }
  .sale-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  .whatsapp-float {
    bottom: 80px;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
}


/* ================================================================
   VALUATION FLOW STYLES
   Styles for get-valuation.html — multi-step valuation form
   ================================================================ */

/* ── Valuation Page Layout ────────────────────────────────────── */
.valuation-page {
  background: var(--gray-50);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.valuation-header .header-inner {
  justify-content: space-between;
}

.valuation-header .header-nav,
.valuation-header .header-trust,
.valuation-header .header-cta,
.valuation-header .hamburger {
  display: none !important;
}

.valuation-main {
  flex: 1;
  padding: 40px 24px 80px;
}

.valuation-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Step Progress Indicator ──────────────────────────────────── */
.step-progress {
  margin-bottom: 40px;
}

.step-progress-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.step-dot.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
}

.step-dot.completed {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.step-label.active {
  color: var(--green);
}

.step-label.completed {
  color: var(--green-dark);
}

.step-progress-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  min-width: 24px;
  max-width: 60px;
  margin: 0 4px;
  align-self: flex-start;
  margin-top: 17px;
}

/* ── Back Button ──────────────────────────────────────────────── */
.valuation-back-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 16px;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}

.valuation-back-btn:hover {
  color: var(--dark);
}

/* ── Step Container & Transitions ─────────────────────────────── */
.step-container {
  transition: opacity 0.2s, transform 0.2s;
}

.step-container.step-exit {
  opacity: 0;
  transform: translateY(-8px);
}

.step-container.step-enter {
  animation: stepFadeIn 0.35s ease-out;
}

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

/* ── Step Header ──────────────────────────────────────────────── */
.step-header {
  margin-bottom: 32px;
}

.step-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.step-header p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.5;
}

.step-header p strong {
  color: var(--dark);
}

/* ── Registration Plate Input ─────────────────────────────────── */
.plate-input-group {
  display: flex;
  align-items: stretch;
  background: var(--yellow);
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  margin-bottom: 16px;
}

.plate-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003399;
  padding: 0 12px;
  min-width: 44px;
}

.plate-badge-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.plate-flag-stars {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.plate-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 20px;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Inter', monospace;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--dark);
  outline: none;
  min-width: 0;
}

.plate-input::placeholder {
  color: rgba(15,23,42,0.35);
  letter-spacing: 3px;
  font-weight: 700;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  width: 100%;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-500);
  border: 2px solid var(--gray-200);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  width: 100%;
  text-decoration: none;
  text-align: center;
}

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

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.step-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ── Form Elements ────────────────────────────────────────────── */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-optional {
  font-weight: 400;
  color: var(--gray-400);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 80px;
}

.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.form-error {
  color: var(--red);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  min-height: 0;
}

.form-hint {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 6px;
}

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

.input-with-suffix {
  position: relative;
}

.input-with-suffix .form-input {
  padding-right: 60px;
}

.input-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
  pointer-events: none;
}

/* ── Step Trust Badges ────────────────────────────────────────── */
.step-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.step-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.step-trust span svg {
  color: var(--green);
  flex-shrink: 0;
}

/* ── Vehicle Card Result (Step 2) ─────────────────────────────── */
.vehicle-card-result {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.vehicle-card-header {
  background: var(--dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.vehicle-card-plate {
  background: var(--yellow);
  color: var(--dark);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: 'Inter', monospace;
  border: 2px solid var(--dark);
}

.vehicle-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.vehicle-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
}

.vehicle-card-field {
  background: var(--white);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
}

.field-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.status-badge {
  display: inline-flex;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.status-valid {
  background: rgba(34,197,94,0.1);
  color: var(--green-dark);
}

.status-expired {
  background: rgba(239,68,68,0.1);
  color: var(--red);
}

.vehicle-card-note {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--gray-500);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

/* ── Condition Options (Step 3) ───────────────────────────────── */
.condition-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.condition-option {
  display: block;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s;
  background: var(--white);
}

.condition-option:hover {
  border-color: var(--gray-300);
}

.condition-option.selected {
  border-color: var(--green);
  background: rgba(34,197,94,0.04);
}

.condition-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.condition-option-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.condition-option-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.condition-option-desc {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.4;
}

.damage-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.damage-option {
  display: block;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px;
  transition: all 0.2s;
  background: var(--white);
}

.damage-option:hover {
  border-color: var(--gray-300);
}

.damage-option.selected {
  border-color: var(--green);
  background: rgba(34,197,94,0.04);
}

.damage-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.damage-option-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.damage-option-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.damage-option-desc {
  font-size: 11px;
  color: var(--gray-400);
}

/* ── Valuation Result (Step 4) ────────────────────────────────── */
.valuation-result {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.valuation-offer {
  background: var(--dark);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.valuation-offer-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.valuation-offer-amount {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -2px;
  line-height: 1;
}

.valuation-offer-note {
  font-size: 14px;
  color: var(--gray-400);
}

.valuation-breakdown {
  padding: 24px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.breakdown-row:last-child {
  border-bottom: none;
}

.breakdown-row.adjustment span:last-child {
  color: var(--red);
  font-weight: 600;
}

.breakdown-row.total {
  border-top: 2px solid var(--gray-200);
  margin-top: 4px;
  padding-top: 14px;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
}

.breakdown-row.total span:last-child {
  color: var(--green-dark);
  font-size: 20px;
}

.valuation-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.valuation-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
}

.valuation-trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

/* ── Details Layout (Step 5) ──────────────────────────────────── */
.details-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.details-sidebar {
  order: -1;
}

.sidebar-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.sidebar-vehicle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 16px;
}

.sidebar-plate {
  background: var(--yellow);
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Inter', monospace;
  border: 2px solid var(--dark);
}

.sidebar-model {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.sidebar-offer {
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 16px;
}

.sidebar-offer-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.sidebar-offer-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -1px;
}

.sidebar-includes {
  list-style: none;
  padding: 0;
}

.sidebar-includes li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-includes li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

/* ── Confirmation ─────────────────────────────────────────────── */
.confirmation {
  text-align: center;
  padding: 20px 0;
}

.confirmation-icon {
  margin-bottom: 20px;
}

.confirmation-icon svg {
  color: var(--green);
}

.confirmation h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.confirmation > p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.5;
}

.confirmation-summary {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
}

.confirmation-row:last-child {
  border-bottom: none;
}

.confirmation-row span:first-child {
  color: var(--gray-500);
}

.confirmation-row span:last-child {
  font-weight: 600;
  color: var(--dark);
}

.confirmation-amount {
  font-size: 20px;
  font-weight: 800 !important;
  color: var(--green-dark) !important;
}

.confirmation-next {
  text-align: left;
  margin-bottom: 28px;
}

.confirmation-next h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.confirmation-next ol {
  padding-left: 20px;
}

.confirmation-next li {
  font-size: 15px;
  color: var(--gray-600);
  padding: 4px 0;
  line-height: 1.5;
}

.confirmation-contact {
  margin-bottom: 24px;
}

.confirmation-contact p {
  font-size: 15px;
  color: var(--gray-500);
}

.confirmation-contact a {
  color: var(--green-dark);
  text-decoration: none;
}

.confirmation-contact a:hover {
  text-decoration: underline;
}

/* ── Valuation Page Responsive ────────────────────────────────── */
@media (min-width: 768px) {
  .details-layout {
    grid-template-columns: 1.3fr 1fr;
  }
  .details-sidebar {
    order: 0;
  }
}

@media (max-width: 767px) {
  .valuation-main {
    padding: 24px 16px 80px;
  }
  .vehicle-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .condition-options {
    grid-template-columns: 1fr;
  }
  .damage-options {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .step-label {
    display: none;
  }
  .step-progress-line {
    min-width: 16px;
  }
  .plate-input {
    font-size: 22px;
    letter-spacing: 3px;
    padding: 14px 12px;
  }
}

@media (max-width: 480px) {
  .step-header h2 {
    font-size: 22px;
  }
  .plate-input {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .valuation-offer-amount {
    font-size: 36px;
  }
}

/* ========== ACCESSIBILITY: FOCUS STYLES ========== */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* Dark background elements need lighter focus ring */
.header :focus-visible,
.hero :focus-visible,
.final-cta :focus-visible,
.footer :focus-visible,
.mobile-nav :focus-visible,
.mobile-cta-bar :focus-visible,
.recent-sales :focus-visible,
.stats-bar :focus-visible {
  outline-color: var(--yellow);
}

/* Inputs already have border-based focus; supplement with outline for high contrast mode */
.hero-input:focus-visible,
.final-cta-input:focus-visible,
.plate-input:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

/* FAQ buttons */
.faq-question:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ========== ACCESSIBILITY: REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .sale-item {
    opacity: 1;
    transform: none;
  }

  .fade-in-up {
    opacity: 1;
    transform: none;
  }
}

/* ========== ACCESSIBILITY: TAP TARGETS ========== */
/* Footer links need at least 44px touch targets */
.footer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-legal a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.breadcrumb a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Mobile nav links already have 16px padding but ensure min-height */
.mobile-nav a {
  min-height: 44px;
}

/* ========== ACCESSIBILITY: SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ========== ACCESSIBILITY: SCREEN READER ONLY ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
