#preloader,
body {
  background: #fff;
}
#preloader,
#scrollTop {
  display: flex;
  position: fixed;
}
.logo-wrap,
.nav-link {
  text-decoration: none;
}
#scrollTop,
.hero-glow,
.hero-grid-bg {
  pointer-events: none;
}
.btn-primary,
.category-card,
.hero-section,
.preloader-bar,
.stat-card,
.stats-section,
img {
  overflow: hidden;
}
.badge-live,
.blog-category,
.filter-label,
.filter-title,
.footer-section-title,
.footer-tag-label,
.pricing-badge,
.pricing-plan-name,
.section-label,
.stat-title {
  text-transform: uppercase;
}
:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #fef2f2;
  --accent: #f59e0b;
  --accent-light: #fffbeb;
  --surface: #ffffff;
  --surface-off: #f8fafc;
  --surface-muted: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;
  --success: #10b981;
  --success-light: #ecfdf5;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "DM Sans", sans-serif;
  color: #0f172a;
  margin: 0;
  padding: 0;
}
.font-heading,
.nav-link,
.preloader-text,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Outfit, sans-serif;
}
body,
html {
  overflow-x: hidden;
  width: 100%;
}
#preloader {
  inset: 0;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-speedometer {
  width: 120px;
  height: 120px;
  position: relative;
}
.preloader-arc {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #dc2626;
  border-right-color: #dc2626;
  animation: 1.2s linear infinite preloaderSpin;
  position: absolute;
  top: 0;
  left: 0;
}
.preloader-arc-2 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f59e0b;
  animation: 0.8s linear infinite reverse preloaderSpin;
  position: absolute;
  top: 15px;
  left: 15px;
}
@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
.preloader-center-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-text {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #0f172a;
  margin-top: 2rem;
}
.blog-category.red,
.contact-card-text:hover,
.coverage-title.not-covered,
.faq-btn-light:hover,
.faq-btn:hover,
.footer-bottom-link:hover,
.logo-text span,
.mobile-nav-link:hover,
.portal-footer a:hover,
.preloader-text span,
.stat-value.accent,
.testimonial-avatar.red,
.text-primary-red {
  color: #dc2626;
}
.preloader-subtitle {
  color: #94a3b8;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-top: 1rem;
}
.nav-link:hover::after,
.w-full,
img {
  width: 100%;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
  border-radius: 2px;
  animation: 2s ease-in-out forwards loadBar;
}
@keyframes loadBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#scrollTop {
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  cursor: pointer;
  border: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}
.logo-icon,
.logo-wrap {
  align-items: center;
  display: flex;
}
#scrollTop.scrolltop-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scrollTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.45);
}
.glass-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  transition: 0.3s;
}
.btn-primary,
.logo-icon {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.glass-navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-link {
  font-weight: 500;
  color: #475569;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
  cursor: pointer;
}
.article-body strong,
.footer-contact-item:hover,
.logo-text,
.mini-bid-amount,
.nav-link:hover,
.policy-content-light strong,
.terms-content strong {
  color: #0f172a;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #dc2626;
  transition: width 0.3s;
  border-radius: 2px;
}
.btn-primary::before,
.category-card::before {
  opacity: 0;
  transition: opacity 0.3s;
  inset: 0;
  content: "";
}
.logo-wrap {
  gap: 0.625rem;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}
.btn-outline,
.btn-primary {
  font-family: Outfit, sans-serif;
  align-items: center;
  gap: 0.5rem;
  display: block;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.logo-text {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.btn-primary {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
  border: 1px solid transparent;
  position: relative;
}
#mobileMenu.mobile-menu-open,
.hero-section .btn-outline,
.hero-section .btn-primary,
.modal-overlay.open {
  display: flex;
}
.btn-primary::before {
  position: absolute;
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.btn-primary:hover::before,
.category-card:hover::before {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
}
.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}
.btn-outline {
  background: 0 0;
  color: #0f172a;
  margin: auto;
  font-weight: 600;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
}
.badge-live,
.badge-premium,
.badge-verified {
  display: inline-flex;
  gap: 6px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: Outfit, sans-serif;
}
.cta-section .btn-outline,
.hero-sell .btn-outline {
  margin: inherit;
}
.btn-outline:hover {
  border-color: #dc2626;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.04);
  transform: translateY(-2px);
}
.badge-live {
  align-items: center;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 100px;
}
.badge-live .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc2626;
  animation: 2s ease-in-out infinite pulseRed;
}
@keyframes pulseRed {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0);
  }
}
.badge-verified {
  align-items: center;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #059669;
  border-radius: 100px;
}
.badge-premium {
  align-items: center;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #d97706;
  border-radius: 100px;
}
.hero-glow,
.hero-glow-2 {
  border-radius: 50%;
  position: absolute;
}
.section-label-center {
  justify-content: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: #64748b;
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
}
.stat-value,
.step-number {
  line-height: 1;
}
.hero-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff 0, #f8fafc 40%, #fff7f7 100%);
  position: relative;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(220, 38, 38, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.06) 0,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.04) 0,
    transparent 70%
  );
  bottom: 100px;
  left: -100px;
  pointer-events: none;
}
.hero-decorative-line-left,
.hero-decorative-line-right {
  height: 100%;
  position: absolute;
  width: 1px;
  top: 0;
  pointer-events: none;
}
.hero-decorative-line-left {
  left: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(220, 38, 38, 0.2),
    transparent
  );
}
.hero-decorative-line-right {
  right: 25%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(220, 38, 38, 0.08),
    transparent
  );
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.hero-scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #94a3b8;
}
.filter-title,
.hero-hot-badge,
.pricing-badge,
.stat-title {
  letter-spacing: 0.1em;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #dc2626, transparent);
  animation: 2s ease-in-out infinite float;
}
.hero-car-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.hero-hot-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  color: #fff;
}
.category-name,
.filter-title {
  font-weight: 700;
  font-family: Outfit, sans-serif;
}
.hero-bidders-card {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
img {
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.12),
    0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.hero-stat-divider {
  border-left: 1px solid #e2e8f0;
  padding-left: 1rem;
}
.card-car-title {
  margin-bottom: 2px;
}
.auction-badge-light.live,
.auction-badge.badge-live-card,
.auction-badge.live {
  background: #dc2626;
  color: #fff;
}
.auction-badge-light.ending,
.auction-badge-light.featured,
.auction-badge.badge-featured-card,
.auction-badge.featured {
  background: #f59e0b;
  color: #0f172a;
}
.auction-badge-light.hot,
.auction-badge.badge-hot-card,
.auction-badge.hot {
  background: #ef4444;
  color: #fff;
}
.filter-section {
  background: #f8fafc;
  padding: 3rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.filter-sidebar-card,
.filter-wrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.filter-title {
  font-size: 0.8rem;
  color: #dc2626;
  margin-bottom: 1rem;
}
.filter-select:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.06);
}
.category-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: 0.35s;
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.category-card::before {
  position: absolute;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.04), transparent);
}
.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #fecaca;
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.08);
}
.category-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: 0.3s;
}
.category-card:hover .category-icon-wrap {
  background: #fee2e2;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
}
.category-name {
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.category-count,
.testimonial-role {
  font-size: 0.75rem;
  color: #64748b;
}
.step-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: 0.35s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.step-card-light:hover,
.step-card:hover {
  transform: translateY(-5px);
  border-color: #fecaca;
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.06);
}
.step-number {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: rgba(220, 38, 38, 0.05);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  pointer-events: none;
}
.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.contact-info-card-light,
.dealer-card,
.stat-card {
  border: 1px solid #e2e8f0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.stats-section {
  background: #f8fafc;
  padding: 4rem 0;
  position: relative;
}
.stats-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(220, 38, 38, 0.04) 0,
    transparent 70%
  );
  pointer-events: none;
}
.pricing-badge,
.stat-card::before {
  transform: translateX(-50%);
  left: 50%;
}
.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: 0.3s;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #dc2626, transparent);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: #fecaca;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}
.stat-title {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 4px;
}
.pricing-badge,
.pricing-plan-name,
.testimonial-avatar,
.testimonial-name {
  font-weight: 700;
  font-family: Outfit, sans-serif;
}
.stat-subtitle {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 6px;
}
.contact-info-card-light,
.dealer-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  transition: 0.35s;
}
.dealer-card:hover {
  transform: translateY(-5px);
  border-color: #fecaca;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.blog-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
}
.dealer-avatar {
  object-fit: cover;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dealer-name {
  font-family: Outfit, sans-serif;
  color: #0f172a;
  margin-bottom: 4px;
}
.dealer-info {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 1rem;
}
.stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.check-item,
.testimonial-avatar {
  align-items: center;
  display: flex;
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s;
}
.testimonial-card {
  min-width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.testimonial-quote {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fecaca;
  justify-content: center;
  background: #fef2f2;
  flex-shrink: 0;
}
.testimonial-avatar.gold {
  color: #f59e0b;
  border-color: #fcd34d;
  background: #fffbeb;
}
.testimonial-avatar.green {
  color: #10b981;
  border-color: #a7f3d0;
  background: #ecfdf5;
}
.testimonial-name {
  font-size: 0.9rem;
  color: #0f172a;
}
.dot-btn {
  width: 8px;
  height: 4px;
  border-radius: 2px;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.blog-card,
.pricing-card {
  border: 1px solid #e2e8f0;
  transition: 0.35s;
}
.dot-btn.dot-active {
  background: #dc2626;
  width: 28px;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.pricing-card.pricing-featured {
  border-color: #fecaca;
  background: #fffdfd;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.06);
}
.pricing-card.pricing-featured:hover {
  box-shadow: 0 16px 50px rgba(220, 38, 38, 0.1);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  font-size: 0.7rem;
  color: #fff;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}
.cta-section,
.footer-enhanced {
  position: relative;
  overflow: hidden;
}
.pricing-plan-name {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.pricing-plan-name.default,
.text-muted {
  color: #64748b;
}
.pricing-plan-name.featured {
  color: #dc2626;
  margin-top: 0.5rem;
}
.price-tag {
  font-family: Outfit, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.price-period {
  font-size: 1.2rem;
  font-weight: 500;
  color: #94a3b8;
}
.price-desc {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
.check-item {
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #475569;
}
.check-item.unavailable {
  color: #cbd5e1;
}
.divider {
  margin-bottom: 1.25rem;
}
.blog-category,
.blog-title {
  font-family: Outfit, sans-serif;
  margin-bottom: 0.5rem;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.blog-card:hover {
  border-color: #fecaca;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.blog-card-light:hover .blog-img,
.blog-card:hover .blog-img {
  transform: scale(1.06);
}
.blog-img-wrap {
  overflow: hidden;
  height: 160px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.blog-category.green {
  color: #10b981;
}
.blog-category.gold {
  color: #f59e0b;
}
.blog-title {
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.author-role,
.blog-meta {
  font-size: 0.75rem;
  color: #94a3b8;
}
.cta-section {
  background: linear-gradient(135deg, #fff7f7 0, #f8fafc 50%, #fff 100%);
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(220, 38, 38, 0.05) 0,
    transparent 70%
  );
  pointer-events: none;
}
.newsletter-section {
  background: #f8fafc;
  padding: 4rem 0;
}
.newsletter-input {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  font-family: "DM Sans", sans-serif;
  width: 100%;
  outline: 0;
  transition: border-color 0.2s;
}
.faq-btn,
.faq-btn-light,
.filter-label,
.footer-badge,
.footer-section-title,
.footer-tag,
.footer-tag-label,
.mobile-nav-link,
.section-label,
.section-title {
  font-family: Outfit, sans-serif;
}
.newsletter-input:focus {
  border-color: #fecaca;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.04);
}
.newsletter-input::placeholder {
  color: #94a3b8;
}
.newsletter-disclaimer {
  font-size: 0.75rem;
  color: #cbd5e1;
  margin-top: 0.75rem;
}
.faq-item,
.faq-item-light {
  border-bottom: 1px solid #e2e8f0;
}
.faq-item-light:last-child,
.faq-item:last-child,
.related-post-light:last-child {
  border-bottom: none;
}
.faq-btn,
.faq-btn-light {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: 0 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.car-img-bg,
.text-center-mobile {
  text-align: center;
}
.faq-content,
.faq-content-light {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.3s;
}
.faq-content.faq-open {
  max-height: 200px;
  padding-bottom: 1rem;
}
.faq-icon {
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-icon.faq-icon-open {
  transform: rotate(45deg);
}
.footer-enhanced {
  background: #f8fafc;
  padding: 4.5rem 0 0;
  margin-top: 2%;
}
.footer-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.4),
    rgba(245, 158, 11, 0.3),
    rgba(220, 38, 38, 0.4),
    transparent
  );
}
.footer-enhanced::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse at center,
    rgba(220, 38, 38, 0.02) 0,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.footer-top-glow {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.03) 0,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.footer-brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
  transition: 0.3s;
}
.footer-brand-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}
.footer-section-title {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #0f172a;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #dc2626, rgba(220, 38, 38, 0.3));
  border-radius: 1px;
}
.footer-link-enhanced {
  color: #64748b;
  font-size: 0.85rem;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  position: relative;
  text-decoration: none;
}
.footer-link-enhanced:hover {
  color: #0f172a;
  transform: translateX(4px);
}
.footer-link-enhanced::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 4px;
  height: 4px;
  background: #dc2626;
  border-radius: 50%;
  transition: transform 0.25s;
}
.footer-link-enhanced:hover::before {
  transform: translateY(-50%) scale(1);
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: 0.3s;
  cursor: pointer;
}
.footer-social-btn:hover {
  border-color: #fecaca;
  color: #dc2626;
  background: #fef2f2;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.12);
}
.footer-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.footer-tag:hover {
  color: #0f172a;
  border-color: #fecaca;
  background: #fef2f2;
  transform: translateY(-2px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  color: #64748b;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #dc2626;
  transition: 0.3s;
}
.footer-contact-item:hover .footer-contact-icon {
  background: #fee2e2;
  border-color: #fca5a5;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.1);
}
.footer-contact-label {
  font-weight: 600;
  color: #475569;
  font-size: 0.8rem;
}
.footer-contact-value {
  color: #64748b;
  font-size: 0.8rem;
  text-decoration: none;
}
.footer-bottom-bar {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #059669;
}
.footer-tag-row,
.mobile-nav-link {
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
  display: flex;
}
.footer-bottom-link {
  font-size: 0.78rem;
  color: #94a3b8;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.25rem;
}
.footer-tag-row {
  gap: 10px;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}
.footer-tag-label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #94a3b8;
  white-space: nowrap;
}
.footer-gradient-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #f59e0b,
    #dc2626,
    transparent
  );
  opacity: 0.5;
}
.card-img-wrap,
.filter-checkbox,
.relative {
  position: relative;
}
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.98);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav-link {
  font-weight: 600;
  font-size: 1.25rem;
  color: #475569;
  padding: 1rem 0;
  transition: color 0.2s;
  gap: 0.5rem;
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 3px;
}
.bg-off,
.bg-surface-off {
  background: #f8fafc;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::after,
.section-label::before {
  content: "";
  flex: none;
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #dc2626);
}
.section-label::after {
  background: linear-gradient(90deg, #dc2626, transparent);
}
.section-title {
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.filter-input,
.filter-select {
  background: #f8fafc;
  padding: 0.75rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  width: 100%;
  transition: border-color 0.2s;
  color: #0f172a;
  outline: 0;
}
.filter-select {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.filter-input:focus,
.filter-select:focus,
.newsletter-input-light:focus,
.sort-select-light:focus {
  border-color: #fecaca;
}
.filter-select option,
.form-select option {
  background: #fff;
  color: #0f172a;
}
.filter-input {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.filter-clear-btn,
.filter-label {
  font-size: 0.72rem;
  font-weight: 600;
}
.filter-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  background: 0 0;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}
.filter-checkbox:checked {
  background: #dc2626;
  border-color: #dc2626;
}
.filter-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}
.filter-label {
  letter-spacing: 0.06em;
  color: #94a3b8;
  display: block;
  margin-bottom: 0.5rem;
}
.active-filter-pill,
.filter-clear-btn {
  color: #dc2626;
  cursor: pointer;
  font-family: Outfit, sans-serif;
}
.filter-clear-btn {
  background: 0 0;
  border: none;
  letter-spacing: 0.03em;
}
.active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  font-size: 0.75rem;
  font-weight: 500;
  transition: 0.2s;
}
.card-img-wrap,
.page-btn {
  align-items: center;
  display: flex;
}
.active-filter-pill:hover {
  background: #fee2e2;
}
.active-filter-pill .remove-icon {
  font-size: 0.9rem;
  line-height: 1;
  margin-left: 2px;
}
.card-automotive {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.card-automotive:hover {
  transform: translateY(-8px);
  border-color: #fecaca;
  box-shadow: 0 16px 48px rgba(220, 38, 38, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.06);
}
.card-automotive:hover .car-img {
  transform: scale(1.07);
}
.card-img-wrap {
  overflow: hidden;
  height: 200px;
  background: #f8fafc;
  justify-content: center;
}
.card-img-gradient,
.card-img-gradient-light {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
}
.car-info-padding,
.card-body {
  padding: 1.5rem;
}
.card-car-location,
.card-location {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 2px;
}
.card-bidders-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.95);
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.auction-badge,
.auction-badge-light {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: Outfit, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.page-btn,
.sort-btn {
  font-weight: 600;
  color: #475569;
  transition: 0.2s;
  cursor: pointer;
}
.last-updated,
.last-updated-light,
.sort-btn {
  padding: 6px 14px;
  font-family: Outfit, sans-serif;
}
.auction-badge.ending {
  background: #10b981;
  color: #fff;
}
.auction-badge.new {
  background: #3b82f6;
  color: #fff;
}
.countdown-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.countdown-header,
.countdown-label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sort-btn {
  border-radius: 100px;
  font-size: 0.78rem;
  background: 0 0;
  border: 1px solid #e2e8f0;
}
.sort-btn:hover {
  border-color: #dc2626;
  color: #dc2626;
}
.category-pill-light.active,
.category-pill-light:hover,
.category-tab-light.active,
.sort-btn.active {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-family: Outfit, sans-serif;
  font-size: 0.85rem;
  justify-content: center;
}
.category-tab-light:hover,
.page-btn:hover {
  border-color: #fecaca;
  color: #dc2626;
}
.page-btn.active {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.policy-content-light,
.terms-content {
  color: #475569;
  line-height: 1.8;
  font-size: 0.95rem;
}
.policy-content-light h2,
.terms-content h2 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0f172a;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.policy-content-light h3,
.terms-content h3 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #334155;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.policy-content-light p,
.terms-content p {
  margin-bottom: 1rem;
}
.policy-content-light ul,
.terms-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.policy-content-light ul li,
.terms-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.policy-content-light ul li::before,
.terms-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}
.policy-content-light a,
.terms-content a {
  color: #dc2626;
  text-decoration: underline;
  transition: color 0.2s;
}
.policy-content-light a:hover,
.terms-content a:hover {
  color: #ef4444;
}
.terms-content .contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  padding-left: 0;
}
.terms-content .contact-info-list li::before {
  content: none;
}
.last-updated,
.last-updated-light {
  display: inline-block;
  border-radius: 100px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.car-image-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
}
.car-img-bg {
  background: #f8fafc;
  padding: 2rem;
}
.vehicle-title {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.vehicle-subtitle {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  font-weight: 600;
}
.status-badge.live,
.tag-supercar {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}
.status-badge.ending,
.tag-transmission {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #d97706;
}
.status-badge.pending,
.tag-fuel {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}
.dealer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.dealer-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fef2f2;
  border: 2px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: #dc2626;
}
.dealer-name {
  font-weight: 600;
  font-size: 0.85rem;
}
.dealer-rating {
  color: #f59e0b;
  font-size: 0.7rem;
}
.bid-history-card,
.specs-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.bid-history-item,
.spec-row {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.spec-row {
  display: flex;
  justify-content: space-between;
}
.file-upload-text,
.spec-label {
  color: #64748b;
  font-size: 0.85rem;
}
.spec-value {
  color: #0f172a;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: right;
}
.check-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #059669;
  font-size: 0.78rem;
  margin-right: 12px;
  margin-top: 8px;
}
.bid-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.bid-history-header {
  color: #94a3b8;
}
.bid-history-bidder {
  color: #334155;
  font-weight: 600;
}
.bid-history-amount {
  color: #0f172a;
  font-weight: 700;
}
.bid-history-time {
  color: #94a3b8;
  font-size: 0.75rem;
}
.bidding-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.06);
}
.countdown-section,
.current-bid-section {
  text-align: center;
  margin-bottom: 1.5rem;
}
.countdown-header {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}
.countdown-unit {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}
.countdown-num {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #0f172a;
  line-height: 1;
}
.countdown-label {
  font-size: 0.65rem;
  color: #94a3b8;
  margin-top: 2px;
}
.card-bid-label,
.current-bid-label {
  font-size: 0.7rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
}
.current-bid-value {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  font-size: 2.75rem;
  color: #dc2626;
  line-height: 1;
}
.next-bid-info {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 4px;
}
.next-bid-value {
  color: #0f172a;
  font-weight: 600;
}
.bidder-count {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 4px;
}
.quick-bid-btn {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}
.quick-bid-btn:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  transform: translateY(-1px);
}
.bid-input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  width: 100%;
  outline: 0;
  transition: border-color 0.2s;
}
.bid-input:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}
.bid-input::placeholder {
  color: #94a3b8;
}
.input-dollar-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.25rem;
}
.bid-error {
  font-size: 0.7rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}
.place-bid-btn {
  width: 100%;
  padding: 1rem 0;
  font-size: 1rem;
  position: relative;
}
.mini-bid-title,
.trust-line {
  font-size: 0.7rem;
  color: #94a3b8;
}
.pulse-ring {
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 2px solid rgba(220, 38, 38, 0.4);
  animation: 2s ease-out infinite pulseRing;
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}
.trust-line {
  margin-top: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mini-bid-section {
  margin-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}
.mini-bid-title {
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.mini-bid-list {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-bid-row {
  display: flex;
  justify-content: space-between;
}
.contact-info-card-light:hover {
  transform: translateY(-4px);
  border-color: #fecaca;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.06);
}
.contact-icon-circle-light {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #dc2626;
  transition: 0.3s;
}
.contact-card-text,
.portal-footer a {
  transition: color 0.2s;
  text-decoration: none;
}
.contact-info-card-light:hover .contact-icon-circle-light {
  background: #fee2e2;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.12);
}
.contact-card-title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.contact-card-text {
  color: #64748b;
  font-size: 0.85rem;
}
.contact-card-subtext {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 4px;
}
.map-placeholder-light {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sidebar-nav-item,
.status-badge {
  align-items: center;
  font-family: Outfit, sans-serif;
}
.map-placeholder-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(220, 38, 38, 0.03) 0,
    transparent 60%
  );
  pointer-events: none;
}
.social-card-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.social-card-title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 1rem;
}
.data-table th,
.stat-label {
  letter-spacing: 0.08em;
  color: #94a3b8;
  text-transform: uppercase;
}
.blog-hero,
.faq-hero,
.hero-bp,
.hero-contact,
.hero-sell {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: linear-gradient(135deg, #fff 0, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
}
.data-table-wrap,
.sidebar-card,
.stat-card-dash {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.stat-card-dash {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card-dash:hover {
  transform: translateY(-4px);
  border-color: #fecaca;
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.06);
}
.stat-card-dash::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #dc2626, transparent);
  opacity: 0.5;
}
.stat-label {
  font-size: 0.7rem;
}
.form-label,
.status-badge {
  letter-spacing: 0.04em;
}
.stat-value {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #0f172a;
  margin-top: 0.25rem;
}
.stat-change {
  font-size: 0.72rem;
  margin-top: 4px;
}
.coverage-title.covered,
.stat-change.up {
  color: #059669;
}
.stat-change.warning {
  color: #d97706;
}
.data-table-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  overflow-x: auto;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: Outfit, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  border-bottom: 1px solid #e2e8f0;
}
.data-table td {
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}
.data-table tr:hover td,
.faq-category-header-light:hover {
  background: #fef2f2;
}
.status-badge {
  display: inline-flex;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}
.status-badge.sold {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #059669;
}
.sidebar-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem;
}
.sidebar-nav-item {
  display: flex;
  gap: 10px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.85rem;
  color: #475569;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
}
.sidebar-nav-item:hover {
  background: #fef2f2;
  color: #0f172a;
  border-color: #fecaca;
}
.sidebar-nav-item.active {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
  font-weight: 600;
}
.sidebar-divider {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  margin-top: 1.5rem;
}
.sidebar-dealer-info {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.sidebar-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fffbeb;
  border: 2px solid #fcd34d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #d97706;
}
.sidebar-dealer-name {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}
.sidebar-dealer-sub {
  font-size: 0.72rem;
  color: #94a3b8;
}
.sidebar-dealer-rating {
  color: #f59e0b;
  font-size: 0.7rem;
  margin-top: 4px;
}
.auction-card-light {
  background: #fff;
  border: 1px solid #fecaca;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.auction-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.auction-card-title {
  font-weight: 700;
  color: #0f172a;
}
.auction-card-bid-info {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1rem;
}
.auction-card-bid-amount {
  color: #dc2626;
  font-weight: 700;
}
.countdown-mini {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
}
.countdown-mini-unit,
.countdown-unit-light {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}
.chart-bar,
.chart-bar-bg {
  height: 8px;
  border-radius: 4px;
}
.countdown-mini-num {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #0f172a;
}
.countdown-mini-label {
  font-size: 0.55rem;
  color: #94a3b8;
}
.chart-bar {
  background: linear-gradient(90deg, #dc2626, #ef4444);
  transition: width 0.6s;
}
.chart-bar-bg {
  background: #f1f5f9;
}
.bar-chart-column {
  flex: 1;
  text-align: center;
}
.bar-chart-fill {
  width: 100%;
  background: linear-gradient(to top, #dc2626, #ef4444);
  border-radius: 6px 6px 0 0;
  transition: height 0.6s;
}
.bar-chart-label {
  font-size: 0.65rem;
  color: #94a3b8;
  margin-top: 6px;
  display: block;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  max-width: 600px;
  width: 95%;
  animation: 0.3s ease-out slideUp;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
@keyframes slideUp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-close-btn {
  background: 0 0;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.portal-footer {
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  background: #f8fafc;
}
.portal-footer a {
  color: #94a3b8;
}
.user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-badge-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fffbeb;
  border: 2px solid #fcd34d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: #d97706;
}
.user-badge-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-xs {
  gap: 0.375rem;
}
.gap-sm {
  gap: 0.5rem;
}
.gap-md {
  gap: 0.75rem;
}
.form-group,
.mb-section {
  margin-bottom: 1.5rem;
}
.search-input-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  border-radius: 8px;
  padding: 0.75rem 1.25rem 0.75rem 2.75rem;
  font-family: "DM Sans", sans-serif;
  width: 100%;
  outline: 0;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.search-input-faq-light:focus,
.search-input-light:focus {
  border-color: #fecaca;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.06);
}
.search-input-light::placeholder {
  color: #94a3b8;
}
.category-pill-light {
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 0.2s;
}
.blog-card-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.blog-card-light:hover {
  transform: translateY(-6px);
  border-color: #fecaca;
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.06);
}
.blog-img,
.car-img {
  transition: transform 0.5s;
}
.blog-img-wrap-light {
  height: 180px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}
.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-category-tag {
  font-size: 0.7rem;
  color: #dc2626;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-read-time,
.file-upload-subtext,
.post-date,
.related-post-date {
  font-size: 0.7rem;
  color: #94a3b8;
}
.blog-card-title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}
.author-avatar,
.author-mini-avatar,
.category-pill-light {
  color: #dc2626;
  font-family: Outfit, sans-serif;
  background: #fef2f2;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.author-mini-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.65rem;
}
.category-pill-light {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid #fecaca;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.author-name {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
}
.share-btn-light {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  cursor: pointer;
  transition: 0.2s;
  margin-right: 6px;
}
.share-btn-light:hover {
  border-color: #fecaca;
  color: #dc2626;
  background: #fef2f2;
}
.featured-img-wrap {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}
.author-bio-card,
.sidebar-card-light {
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.article-body h2 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  scroll-margin-top: 100px;
}
.article-body h3,
.author-bio-avatar {
  font-size: 1.2rem;
  font-family: Outfit, sans-serif;
}
.article-body h3 {
  font-weight: 600;
  color: #334155;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.article-body li,
.article-body p {
  font-size: 0.95rem;
}
.article-body ol,
.article-body p,
.article-body ul {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: #475569;
}
.article-body ol,
.article-body ul {
  padding-left: 1.5rem;
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-body blockquote {
  border-left: 3px solid #dc2626;
  padding: 1rem 1.5rem;
  background: #fef2f2;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  color: #475569;
  font-style: italic;
}
.author-bio-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.author-bio-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fef2f2;
  border: 2px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #dc2626;
  flex-shrink: 0;
}
.author-bio-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.author-bio-role {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}
.author-bio-text,
.feature-desc,
.step-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}
.sidebar-card-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.sidebar-card-title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 1rem;
}
.related-post-light {
  display: flex;
  gap: 12px;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}
.related-post-light:hover {
  opacity: 0.9;
}
.related-post-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}
.newsletter-input-light,
.search-input-faq-light {
  color: #0f172a;
  width: 100%;
  transition: border-color 0.2s;
  outline: 0;
}
.related-post-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}
.newsletter-input-light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.search-input-faq-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.9rem 1.5rem 0.9rem 3rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
}
.search-input-faq-light::placeholder {
  color: #94a3b8;
}
.search-icon-left {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}
.category-tab-light {
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: 0.2s;
  background: 0 0;
  border: 1px solid #e2e8f0;
  color: #475569;
  white-space: nowrap;
}
.coverage-title,
.feature-title,
.step-title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
}
.faq-category-card-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.faq-category-header-light {
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.feature-card-light,
.step-card-light {
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.faq-category-icon-light {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #dc2626;
}
.faq-btn-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-content-light {
  padding: 0 2rem;
}
.faq-content-light a,
.terms-check-label a {
  color: #dc2626;
  text-decoration: underline;
}
.faq-icon-light {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.faq-icon-light.open {
  background: #fef2f2;
  border-color: #fecaca;
}
.help-cta-card-light {
  background: linear-gradient(135deg, #fff 0, #f8fafc 100%);
  border: 1px solid #fecaca;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.06);
  margin-top: 2rem;
}
.help-cta-card-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(
    ellipse,
    rgba(220, 38, 38, 0.04) 0,
    transparent 70%
  );
  pointer-events: none;
}
.no-results-message,
.success-message {
  text-align: center;
  padding: 3rem;
  display: none;
}
.contact-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  padding-left: 0 !important;
}
.contact-list-item::before {
  content: none !important;
}
.section-padding {
  padding: 4rem 0;
}
.bg-white {
  background: #fff;
}
.feature-card-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.feature-card-light:hover {
  transform: translateY(-6px);
  border-color: #fecaca;
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.08);
}
.feature-icon-light {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #dc2626;
}
.feature-title,
.step-title {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.secure-badge-card {
  background: #fff;
  border: 1px solid #a7f3d0;
  border-radius: 24px;
  padding: 2.5rem;
  display: inline-block;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.06);
}
.coverage-card,
.step-card-light {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.coverage-card {
  border-radius: 20px;
  padding: 2rem;
}
.coverage-card.covered {
  background: #fff;
  border: 1px solid #a7f3d0;
}
.coverage-card.not-covered {
  background: #fff;
  border: 1px solid #fecaca;
}
.coverage-title {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.hero-stat-value,
.step-circle-light {
  font-weight: 800;
  font-family: Outfit, sans-serif;
}
.coverage-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.coverage-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.coverage-item.covered {
  color: #475569;
}
.coverage-item.not-covered {
  color: #94a3b8;
}
.step-row-light {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.step-circle-light {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fef2f2;
  border: 2px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #dc2626;
  flex-shrink: 0;
}
.cta-bp {
  background: linear-gradient(135deg, #fff7f7, #f8fafc, #fff);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid #fecaca;
}
.cta-bp .btn-primary {
  margin: auto;
}
.hero-stat-value {
  font-size: 2rem;
  color: #0f172a;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
}
.step-card-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.step-number-light {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: rgba(220, 38, 38, 0.04);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  pointer-events: none;
}
.step-icon-wrap-light {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #dc2626;
}
.form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.form-section-title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}
.form-section-title:first-of-type {
  margin-top: 0;
}
.form-label {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #475569;
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  width: 100%;
  outline: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card-car-title,
.success-title,
.trust-title {
  font-family: Outfit, sans-serif;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}
.form-select {
  appearance: none;
  cursor: pointer;
}
.file-upload-area-light {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  background: #f8fafc;
}
.file-upload-area-light:hover {
  border-color: #fecaca;
  background: #fef2f2;
}
.terms-check-label {
  font-size: 0.85rem;
  color: #64748b;
}
.submit-hint {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.75rem;
}
.trust-section {
  background: linear-gradient(135deg, #fff 0, #f8fafc 100%);
  border-top: 1px solid #fecaca;
}
.card-automotive-light,
.trust-card-light {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.trust-card-light {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}
.trust-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.75rem;
  color: #dc2626;
}
.trust-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.trust-desc {
  font-size: 0.8rem;
  color: #64748b;
}
.faq-content-light.open {
  max-height: 300px;
  padding-bottom: 1rem;
}
.faq-content-light p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}
.faq-icon-light {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: #94a3b8;
}
.faq-icon-light.open {
  transform: rotate(45deg);
  color: #dc2626;
}
.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.success-title {
  font-weight: 800;
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.success-text {
  color: #64748b;
  margin-bottom: 2rem;
}
.card-automotive-light {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
}
.card-automotive-light:hover {
  transform: translateY(-6px);
  border-color: #fecaca;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.06);
}
.card-automotive-light:hover .car-img {
  transform: scale(1.05);
}
.card-img-wrap-light {
  position: relative;
  overflow: hidden;
  height: 180px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-body-light {
  padding: 1.25rem;
}
.card-car-title {
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
}
.card-bid-value,
.countdown-num-light {
  font-weight: 800;
  font-family: Outfit, sans-serif;
}
.card-car-specs {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 3px;
}
.card-bid-value {
  font-size: 1.3rem;
  color: #dc2626;
}
.remove-btn-light {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  backdrop-filter: blur(4px);
  font-size: 1.2rem;
  line-height: 1;
}
.remove-btn-light:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.6);
  color: #b91c1c;
  transform: scale(1.1);
}
.countdown-num-light {
  font-size: 1.1rem;
  color: #0f172a;
  line-height: 1;
}
.countdown-label-light {
  font-size: 0.6rem;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.sort-select-light {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  outline: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}
.empty-state-light {
  text-align: center;
  padding: 4rem 1rem;
}
.toast-light {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #fff;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #059669;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.toast-light.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
 /* ============ AUTH SECTION ============ */
        .auth-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 5rem;
            padding-bottom: 3rem;
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
        }

        .auth-container {
            width: 100%;
            max-width: 440px;
            background: #FFFFFF;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            overflow: hidden;
            border: 1px solid #E2E8F0;
        }

        /* Tabs */
        .tabs-header {
            display: flex;
            border-bottom: 1px solid #E2E8F0;
        }
        .tab-btn {
            flex: 1;
            padding: 1rem;
            text-align: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: #94A3B8;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.2s ease, background 0.2s ease;
            position: relative;
        }
        .tab-btn.active {
            color: #DC2626;
            background: #FEF2F2;
        }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #DC2626;
        }
        .tab-btn:hover { color: #0F172A; }

        /* Forms container */
        .forms-wrapper {
            position: relative;
            min-height: 480px;
        }

        .form-panel {
            padding: 2rem 2.5rem;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.35s ease, transform 0.35s ease;
            pointer-events: none;
        }
        .form-panel.active {
            position: relative;
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

        /* ============ FORM ELEMENTS ============ */
        .form-label {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            color: #475569;
            margin-bottom: 0.5rem;
        }
        .form-input {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            color: #0F172A;
            border-radius: 8px;
            padding: 0.875rem 1.25rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            width: 100%;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .form-input:focus {
            border-color: #FECACA;
            box-shadow: 0 0 0 3px rgba(220,38,38,0.06);
        }
        .form-input::placeholder { color: #94A3B8; }
        .form-group { margin-bottom: 1.5rem; }

        .social-btn {
            width: 100%;
            padding: 0.75rem;
            border-radius: 8px;
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: #475569;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 0.75rem;
        }
        .social-btn:hover {
            border-color: #CBD5E1;
            background: #F8FAFC;
        }

        .divider-text {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0;
            color: #94A3B8;
            font-size: 0.8rem;
        }
        .divider-text::before,
        .divider-text::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #E2E8F0;
        }

        .forgot-link {
            text-align: right;
            font-size: 0.8rem;
            margin-top: 0.25rem;
        }
        .forgot-link a {
            color: #DC2626;
            text-decoration: none;
            font-weight: 500;
        }
        .forgot-link a:hover { text-decoration: underline; }

        /* Utility */
        .flex-between { display: flex; justify-content: space-between; align-items: center; }
        .flex-center { display: flex; align-items: center; justify-content: center; }
        .text-primary-red { color: #DC2626; }

        .faq-item-light{padding: 1% !important;}