/* ============================================
   GlobalDrive - 全球二手车海外直购落地页
   DESIGN: 冷峻奢华 / 精密机械 / 全球视野
   ============================================ */

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

:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #1A1A2E;
  --bg-card: #16213E;
  --accent: #00D4AA;
  --accent-light: #00F5C8;
  --gold: #C9A84C;
  --gold-light: #E0C068;
  --text-primary: #FFFFFF;
  --text-secondary: #8A8A9A;
  --text-muted: #5A5A6A;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 212, 170, 0.3);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-en: 'Inter', sans-serif;
  --font-cn: 'Noto Sans SC', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-cn);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

input, select {
  font-family: inherit;
}

/* --- Loading Screen --- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
  overflow: hidden;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
}

/* Ambient glow */
.loader-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.12) 0%, rgba(0, 212, 170, 0.04) 40%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  filter: blur(20px);
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Rotating rings */
.loader-rings {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
}

.loader-ring-1 {
  width: 180px;
  height: 180px;
  top: 0;
  left: 0;
  border-width: 1px;
  border-top-color: rgba(0, 212, 170, 0.5);
  border-right-color: rgba(0, 212, 170, 0.15);
  animation: ringSpin 3s linear infinite;
}

.loader-ring-2 {
  width: 140px;
  height: 140px;
  top: 20px;
  left: 20px;
  border-width: 1px;
  border-bottom-color: rgba(201, 168, 76, 0.4);
  border-left-color: rgba(201, 168, 76, 0.1);
  animation: ringSpinReverse 2.5s linear infinite;
}

.loader-ring-3 {
  width: 100px;
  height: 100px;
  top: 40px;
  left: 40px;
  border-width: 1px;
  border-top-color: rgba(0, 245, 200, 0.3);
  border-left-color: rgba(0, 245, 200, 0.08);
  animation: ringSpin 2s linear infinite;
}

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

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

/* Center icon */
.loader-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: centerPulse 2s ease-in-out infinite;
}

.loader-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.3));
}

@keyframes centerPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Particles */
.loader-particles {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.loader-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  top: 50%;
  left: 50%;
  opacity: 0;
  animation: particleFly 3s ease-out infinite;
}

.loader-particles span:nth-child(1) { animation-delay: 0s; --angle: 0deg; }
.loader-particles span:nth-child(2) { animation-delay: 0.25s; --angle: 30deg; }
.loader-particles span:nth-child(3) { animation-delay: 0.5s; --angle: 60deg; }
.loader-particles span:nth-child(4) { animation-delay: 0.75s; --angle: 90deg; }
.loader-particles span:nth-child(5) { animation-delay: 1s; --angle: 120deg; }
.loader-particles span:nth-child(6) { animation-delay: 1.25s; --angle: 150deg; }
.loader-particles span:nth-child(7) { animation-delay: 1.5s; --angle: 180deg; }
.loader-particles span:nth-child(8) { animation-delay: 1.75s; --angle: 210deg; }
.loader-particles span:nth-child(9) { animation-delay: 2s; --angle: 240deg; }
.loader-particles span:nth-child(10) { animation-delay: 2.25s; --angle: 270deg; }
.loader-particles span:nth-child(11) { animation-delay: 2.5s; --angle: 300deg; }
.loader-particles span:nth-child(12) { animation-delay: 2.75s; --angle: 330deg; }

@keyframes particleFly {
  0% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-90px);
    opacity: 0;
  }
}

/* Brand name */
.loader-brand {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--accent);
  white-space: nowrap;
  display: flex;
}

.loader-brand span {
  opacity: 0;
  animation: letterReveal 0.4s ease forwards;
  animation-delay: calc(0.8s + var(--i) * 0.06s);
  text-shadow: 0 0 12px rgba(0, 212, 170, 0.4);
}

@keyframes letterReveal {
  0% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Progress bar */
.loader-progress {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
}

.loader-progress-track {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: visible;
}

.loader-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--gold));
  border-radius: 2px;
  animation: progressFill 2s var(--ease-out) forwards;
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

.loader-progress-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  transform: translate(-50%, -50%);
  animation: progressDot 2s var(--ease-out) forwards;
  box-shadow: 0 0 10px rgba(0, 245, 200, 0.6), 0 0 20px rgba(0, 245, 200, 0.2);
}

@keyframes progressFill {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes progressDot {
  0% { left: 0; }
  100% { left: 100%; }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-accent {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0, 212, 170, 0.4), 0 0 24px rgba(0, 212, 170, 0.15);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
}

.btn-primary:hover {
  box-shadow: 0 0 24px rgba(0, 212, 170, 0.3);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.7) 0%, rgba(10,10,15,0.4) 40%, rgba(10,10,15,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,15,0.6) 0%, transparent 50%, rgba(10,10,15,0.6) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 120px 40px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  animation: slideUp 0.8s var(--ease-out) 1.8s both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  margin-bottom: 24px;
  animation: slideUp 0.8s var(--ease-out) 2s both;
}

.title-line {
  display: block;
  font-family: var(--font-cn);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.06);
}

.title-accent {
  background: linear-gradient(
    110deg,
    var(--gold) 0%,
    var(--gold-light) 20%,
    #fff 33%,
    var(--gold-light) 45%,
    var(--gold) 65%,
    #ffe4a0 80%,
    var(--gold) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.25));
}

@keyframes titleShimmer {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.title-accent em {
  font-style: normal;
  font-family: var(--font-en);
  font-size: 1.15em;
  font-weight: 800;
  text-shadow: none;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
  animation: slideUp 0.8s var(--ease-out) 2.2s both;
}

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

/* Hero Search */
.hero-search {
  animation: slideUp 0.8s var(--ease-out) 2.4s both;
  margin-bottom: 56px;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 20px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s;
  max-width: 640px;
  margin: 0 auto;
}

.search-box:focus-within {
  border-color: var(--border-hover);
}

.search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-primary);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.btn-search {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
}

.btn-search:hover {
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.search-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.search-tag {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}

.search-tag:hover {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.3);
  color: var(--accent);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: slideUp 0.8s var(--ease-out) 2.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  text-shadow:
    0 0 20px rgba(0, 212, 170, 0.15),
    0 0 40px rgba(0, 212, 170, 0.06);
}

.stat-suffix {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-left: 2px;
  text-shadow: 0 0 10px rgba(0, 212, 170, 0.4);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: slideUp 0.8s var(--ease-out) 2.8s both;
}

.hero-scroll-hint span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* --- Section Common --- */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow:
    0 0 30px rgba(0, 212, 170, 0.12),
    0 0 60px rgba(0, 212, 170, 0.06);
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* --- Cars Section --- */
.cars-section {
  padding: 120px 0;
  background: var(--bg-primary);
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.cat-tab:hover {
  background: rgba(0, 212, 170, 0.05);
  border-color: rgba(0, 212, 170, 0.2);
  color: var(--text-primary);
}

.cat-tab.active {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.4);
  color: var(--accent);
}

.cat-tab svg {
  opacity: 0.7;
}

.cat-tab.active svg {
  opacity: 1;
}

/* Type Filter */
.type-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.type-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: all 0.3s;
}

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

.type-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

/* Car Grid */
.car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Car Card */
.car-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

/* Shimmer / light sweep effect */
.car-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(0, 212, 170, 0.04) 35%,
    rgba(0, 245, 200, 0.08) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(0, 245, 200, 0.08) 55%,
    rgba(0, 212, 170, 0.04) 65%,
    transparent 80%
  );
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.car-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 170, 0.08);
}

.car-card:hover::after {
  animation-duration: 2s;
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.car-card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge-hot {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #FF4444, #FF6B6B);
  color: white;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
}

.card-badge-luxury {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
}

.card-warehouse {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  font-size: 12px;
  color: var(--accent);
}

.card-body {
  padding: 20px;
}

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

.card-title {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.06);
}

.card-year {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.card-spec {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-price-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.price-original,
.price-current {
  flex: 1;
}

.price-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-value {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  text-shadow:
    0 0 8px rgba(201, 168, 76, 0.4),
    0 0 20px rgba(201, 168, 76, 0.15);
  animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(201, 168, 76, 0.4),
      0 0 20px rgba(201, 168, 76, 0.15);
  }
  50% {
    text-shadow:
      0 0 12px rgba(201, 168, 76, 0.6),
      0 0 30px rgba(201, 168, 76, 0.25),
      0 0 50px rgba(201, 168, 76, 0.1);
  }
}

.card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.tag-save {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent);
}

.tag-inspect {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.btn-card-cta {
  width: 100%;
  padding: 12px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: all 0.3s var(--ease-out);
}

.btn-card-cta:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

/* --- Logistics Section --- */
.logistics-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(22, 33, 62, 0.3) 50%, var(--bg-primary) 100%);
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.map-visual {
  position: relative;
  aspect-ratio: 2/1;
  background: rgba(26, 26, 46, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.world-map-svg {
  width: 100%;
  height: 100%;
}

.map-dot {
  animation: mapPulse 3s ease infinite;
}

.map-dot:nth-child(odd) {
  animation-delay: 0.5s;
}

@keyframes mapPulse {
  0%, 100% { opacity: 0.4; r: 3; }
  50% { opacity: 1; r: 5; }
}

.map-line {
  animation: dashMove 3s linear infinite;
}

@keyframes dashMove {
  to { stroke-dashoffset: -20; }
}

.warehouse-marker {
  position: absolute;
  transform: translate(-50%, -50%);
}

.marker-pulse {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  animation: markerPulse 2s ease infinite;
}

.marker-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: markerRing 2s ease infinite;
}

@keyframes markerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes markerRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

.marker-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 10px;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

.logistics-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.logi-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s var(--ease-out);
}

.logi-feature.visible {
  opacity: 1;
  transform: translateX(0);
}

.logi-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.06);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: var(--radius-md);
}

.logi-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.logi-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Process Section --- */
.process-section {
  padding: 120px 0;
  background: var(--bg-primary);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 0 0 220px;
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 212, 170, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  margin-bottom: 16px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  margin-top: 60px;
}

/* --- CTA Section --- */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 170, 0.06);
  top: -100px;
  left: -100px;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(201, 168, 76, 0.04);
  bottom: -50px;
  right: -50px;
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-form {
  margin-bottom: 32px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  flex: 1;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: var(--border-hover);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8A9A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg-primary);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  margin-top: 8px;
}

.btn-cta-submit:hover {
  box-shadow: 0 0 40px rgba(0, 212, 170, 0.3);
  transform: translateY(-2px);
}

.cta-trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-spring);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--text-primary);
}

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

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-modal-ok {
  padding: 12px 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.btn-modal-ok:hover {
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

/* --- Footer --- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand {
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-en);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logistics-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(20px);
    padding: 16px 40px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

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

  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .search-box {
    flex-direction: column;
    padding: 12px;
    gap: 8px;
  }

  .search-input {
    padding: 10px;
    text-align: center;
  }

  .btn-search {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-divider {
    display: none;
  }

  .section-container {
    padding: 0 20px;
  }

  .car-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-tabs {
    gap: 8px;
  }

  .cat-tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
  }

  .cta-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title .title-line {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .card-price-row {
    flex-direction: column;
    gap: 8px;
  }
}
