/* SportCars4You — Design System */
/* Font: Inter from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Colors - Dark Premium Theme */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --bg-card-hover: #22222f;
  --bg-input: #15151f;
  --bg-glass: rgba(26, 26, 37, 0.7);

  --text-primary: #f0f0f5;
  --text-secondary: #9a9ab0;
  --text-muted: #5e5e7a;

  --accent: #d4a544;
  --accent-hover: #e0b960;
  --accent-glow: rgba(212, 165, 68, 0.25);

  --success: #2ecc71;
  --warning: #f39c12;
  --danger: #e74c3c;
  --info: #3498db;

  --border: #2a2a3a;
  --border-light: #333345;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-accent: 0 4px 20px var(--accent-glow);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }

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

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 20px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 20px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.hidden { display: none !important; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.navbar-brand { display: flex; align-items: center; }
.navbar-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: opacity 0.2s ease;
}
.navbar-logo:hover { opacity: 0.85; }
.navbar-nav { display: flex; align-items: center; gap: 8px; list-style: none; }
.navbar-nav a {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--text-primary); background: var(--bg-card); }

.navbar-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 768px) {
  .navbar-toggle { display: block; }
  .navbar-nav {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg-secondary); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 16px;
  }
  .navbar-nav.open { display: flex; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius); border: none;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); text-decoration: none;
  line-height: 1.4;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-accent); color: #000; transform: translateY(-1px); }
.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); background: var(--bg-card-hover); color: var(--text-primary); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { opacity: 0.9; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: var(--shadow); }
.card-body { padding: 20px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-primary);
  font-family: var(--font); font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 0.78rem; color: var(--danger); margin-top: 4px; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; padding: 4px 12px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.3px; text-transform: uppercase;
}
.badge-active { background: rgba(46,204,113,0.15); color: var(--success); }
.badge-upcoming { background: rgba(52,152,219,0.15); color: var(--info); }
.badge-closed { background: rgba(158,158,178,0.15); color: var(--text-muted); }
.badge-draft { background: rgba(243,156,18,0.15); color: var(--warning); }
.badge-pending { background: rgba(243,156,18,0.15); color: var(--warning); }
.badge-danger { background: rgba(231,76,60,0.15); color: var(--danger); }

/* ===== TABLES ===== */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
th { background: var(--bg-secondary); padding: 12px 16px; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; text-align: left; white-space: nowrap; }
td { padding: 12px 16px; border-top: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
tr:hover td { background: var(--bg-card-hover); }

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #151525 50%, #1a1520 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: 3.2rem; font-weight: 900; letter-spacing: -1px; line-height: 1.1; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--text-secondary); margin-top: 16px; max-width: 560px; }
@media (max-width: 768px) { .hero { padding: 60px 0 50px; } .hero h1 { font-size: 2rem; } }

/* ===== AUCTION TIMER ===== */
.auction-timer {
  display: flex; gap: 10px; align-items: center;
}
.timer-block {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 12px; text-align: center; min-width: 54px;
}
.timer-block .number { font-size: 1.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.timer-block .label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.timer-urgent .timer-block { border-color: var(--danger); }
.timer-urgent .timer-block .number { color: var(--danger); animation: pulse 1s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== BID SECTION ===== */
.bid-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-top: 24px;
}
.bid-current { font-size: 2rem; font-weight: 800; color: var(--accent); }
.bid-count { font-size: 0.85rem; color: var(--text-secondary); }
.bid-form { display: flex; gap: 12px; margin-top: 16px; }
.bid-form .form-control { flex: 1; font-size: 1.1rem; font-weight: 600; }
.bid-history { margin-top: 20px; max-height: 300px; overflow-y: auto; }
.bid-history-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem;
}
.bid-history-item:last-child { border-bottom: none; }
.bid-history-item .amount { font-weight: 700; color: var(--accent); }
.bid-history-item .bidder { color: var(--text-secondary); }
.bid-history-item .time { color: var(--text-muted); font-size: 0.8rem; }

/* ===== GALLERY ===== */
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery-main { width: 100%; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; background: var(--bg-secondary); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb {
  width: 80px; height: 60px; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent; cursor: pointer; flex-shrink: 0; transition: var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===== VEHICLE SPECS ===== */
.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-item { background: var(--bg-card); padding: 14px 16px; }
.spec-item .spec-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.spec-item .spec-value { font-size: 0.95rem; font-weight: 600; margin-top: 2px; }

/* ===== ALERTS/TOASTS ===== */
.alert {
  padding: 14px 20px; border-radius: var(--radius);
  font-size: 0.9rem; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.alert-success { background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); color: var(--success); }
.alert-error { background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); color: var(--danger); }
.alert-warning { background: rgba(243,156,18,0.1); border: 1px solid rgba(243,156,18,0.3); color: var(--warning); }
.alert-info { background: rgba(52,152,219,0.1); border: 1px solid rgba(52,152,219,0.3); color: var(--info); }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination span {
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.85rem; font-weight: 500;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .active { background: var(--accent); color: #000; border-color: var(--accent); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 32px; }
.section-header h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; }
.section-header p { color: var(--text-secondary); margin-top: 6px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 48px 0 24px; margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer a { color: var(--text-secondary); font-size: 0.9rem; }
.footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 32px; padding-top: 24px; text-align: center; font-size: 0.8rem; color: var(--text-muted); }

/* ===== VEHICLE CARD ===== */
.vehicle-card .card-img-wrap { position: relative; overflow: hidden; }
.vehicle-card .card-img { transition: transform 0.5s ease; }
.vehicle-card:hover .card-img { transform: scale(1.05); }
.vehicle-card .card-badge {
  position: absolute; top: 12px; left: 12px;
}
.vehicle-card .card-timer {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
}
.vehicle-card .card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.vehicle-card .card-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-muted); }
.vehicle-card .card-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.vehicle-card .card-price { font-size: 1.2rem; font-weight: 800; color: var(--accent); }
.vehicle-card .card-bids { font-size: 0.8rem; color: var(--text-secondary); }

/* ===== FILTERS ===== */
.filters-bar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  margin-bottom: 32px;
}
.filters-bar .form-control { background: var(--bg-secondary); }
.filters-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.filters-row .form-group { margin-bottom: 0; flex: 1; min-width: 160px; }

/* ===== LOADING ===== */
.spinner { width: 24px; height: 24px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.6s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== PAGE ===== */
.page-header { padding: 40px 0 32px; }
.page-header h1 { font-size: 2rem; font-weight: 800; }
.page-header .breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.page-header .breadcrumb a { color: var(--text-secondary); }
.page-content { padding-bottom: 60px; }

/* ===== TOGGLE SWITCH ===== */
.toggle { position: relative; display: inline-block; width: 48px; height: 26px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--border); border-radius: 26px; transition: var(--transition);
}
.toggle-slider::before {
  content: ''; position: absolute; height: 20px; width: 20px;
  left: 3px; bottom: 3px; background: var(--text-primary);
  border-radius: 50%; transition: var(--transition);
}
.toggle input:checked + .toggle-slider { background: var(--accent); }
.toggle input:checked + .toggle-slider::before { transform: translateX(22px); }

/* ===== DASHBOARD STAT ===== */
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.stat-card .stat-value { font-size: 2rem; font-weight: 800; }
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }
.stat-card .stat-icon { font-size: 2rem; color: var(--accent); opacity: 0.5; }

/* ===== SECTION UTILITIES ===== */
.section { padding: 80px 0; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; }
.section-header p { color: var(--text-secondary); margin-top: 10px; max-width: 560px; font-size: 1.05rem; }

/* ===== HERO FULLSCREEN ===== */
.hero-fullscreen {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-fullscreen:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,5,10,0.92) 0%, rgba(10,10,20,0.75) 50%, rgba(5,5,10,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 20px 60px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 1.15rem; color: rgba(240,240,245,0.8);
  max-width: 560px; line-height: 1.75; margin-bottom: 36px;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-xl { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }

/* Hero Stats Bar */
.hero-stats-bar {
  position: relative; z-index: 2;
  background: rgba(10,10,20,0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,165,68,0.2);
  padding: 28px 0;
  margin-top: auto;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 48px; text-align: center;
}
.hero-stat-value {
  font-size: 2.2rem; font-weight: 900; color: var(--accent);
  line-height: 1; letter-spacing: -1px;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; height: 48px; background: var(--border); }
@media (max-width: 768px) {
  .hero-stat { padding: 12px 24px; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 0; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 700px; overflow: hidden;
}
.hiw-photo-col {
  position: relative; overflow: hidden;
}
.hiw-photo-col img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.how-it-works-section:hover .hiw-photo-col img { transform: scale(1.04); }
.hiw-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg-primary) 100%);
}
.hiw-content-col {
  background: var(--bg-primary);
  padding: 80px 60px 80px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.hiw-steps { display: flex; flex-direction: column; gap: 32px; margin-top: 8px; }
.hiw-step { display: flex; gap: 20px; align-items: flex-start; }
.hiw-step-number {
  font-size: 1.8rem; font-weight: 900; color: var(--accent);
  opacity: 0.35; line-height: 1; min-width: 48px;
  font-variant-numeric: tabular-nums;
}
.hiw-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.hiw-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
@media (max-width: 900px) {
  .how-it-works-section { grid-template-columns: 1fr; }
  .hiw-photo-col { height: 300px; }
  .hiw-content-col { padding: 48px 24px; }
}

/* ===== WHY SECTION ===== */
.why-section { padding: 100px 0; background: var(--bg-secondary); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-photo {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(10,10,20,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--accent); border-radius: var(--radius-lg);
  padding: 14px 20px; display: flex; align-items: center; gap: 14px;
}
.why-badge-icon { font-size: 1.8rem; }
.why-content h2 { font-size: 2.2rem; font-weight: 900; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon {
  font-size: 1.4rem; width: 44px; height: 44px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.why-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative; padding: 120px 0; overflow: hidden; text-align: center;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 60%;
  transform: scale(1.05);
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,10,0.8) 0%, rgba(5,5,10,0.65) 50%, rgba(5,5,10,0.9) 100%);
}
.cta-banner-content {
  position: relative; z-index: 2;
}
.cta-banner-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -1px; margin-bottom: 16px;
}
.cta-banner-content p {
  color: rgba(240,240,245,0.75); max-width: 600px;
  margin: 0 auto 36px; font-size: 1.05rem; line-height: 1.75;
}
.cta-banner-content .hero-cta-group { justify-content: center; }

/* ===== NUMBERS SECTION ===== */
.numbers-section { background: var(--bg-primary); }
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.number-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 28px;
  text-align: center; transition: var(--transition);
}
.number-card:hover {
  border-color: var(--accent); transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.number-value {
  font-size: 3rem; font-weight: 900; color: var(--accent);
  letter-spacing: -2px; line-height: 1;
}
.number-label { font-size: 0.85rem; font-weight: 700; margin: 10px 0 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.number-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 900px) { .numbers-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .numbers-grid { grid-template-columns: 1fr; } }

/* ===== ENHANCED FOOTER ===== */
.footer-brand-desc { color: var(--text-secondary); font-size: 0.88rem; max-width: 320px; line-height: 1.7; margin-top: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-secondary); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
