/* ==========================================================================
   MOTOBUYER DIRECT - AUTOMOTIVE DESIGN SYSTEM & STYLESHEET
   Aesthetics: Deep Charcoal, Racing Orange Accent, Glassmorphism, Bold Editorial Typography
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* --- CSS VARIABLES & THEME TOKENS (DEFAULT VIBRANT WHITE / LIGHT THEME) --- */
:root {
  /* Color System - Ultra Premium Light Theme */
  --bg-dark: #F8FAFC;
  --bg-primary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  --bg-surface: #E2E8F0;

  --accent-orange: #FF6B00;
  --accent-orange-hover: #E05D00;
  --accent-orange-glow: rgba(255, 107, 0, 0.18);
  --accent-red-orange: #FF3D00;
  --accent-amber: #F59E0B;
  --accent-green: #10B981;
  --accent-blue: #2563EB;

  --text-main: #0F172A;
  --text-muted: #475569;
  --text-dim: #64748B;
  --text-dark: #020617;

  --border-light: rgba(15, 23, 42, 0.08);
  --border-active: rgba(255, 107, 0, 0.35);
  --border-glass: rgba(15, 23, 42, 0.1);

  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-blur: blur(16px);
  --box-shadow-card: 0 10px 30px rgba(15, 23, 42, 0.06);
  --box-shadow-glow: 0 0 30px rgba(255, 107, 0, 0.15);

  /* Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Layout */
  --header-height: 104px;
  --max-width: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme Override Color Modes */
[data-theme="cyan"] {
  --accent-orange: #00B4D8;
  --accent-orange-hover: #0077B6;
  --accent-orange-glow: rgba(0, 180, 216, 0.25);
  --border-active: rgba(0, 180, 216, 0.45);
}

[data-theme="emerald"] {
  --accent-orange: #10B981;
  --accent-orange-hover: #059669;
  --accent-orange-glow: rgba(16, 185, 129, 0.25);
  --border-active: rgba(16, 185, 129, 0.45);
}

[data-theme="gold"] {
  --accent-orange: #D97706;
  --accent-orange-hover: #B45309;
  --accent-orange-glow: rgba(217, 119, 6, 0.25);
  --border-active: rgba(217, 119, 6, 0.45);
}

/* --- OPTIONAL DARK MODE OVERRIDES --- */
[data-mode="dark"] {
  --bg-dark: #080A0E;
  --bg-primary: #0E1118;
  --bg-card: #151924;
  --bg-card-hover: #1C2232;
  --bg-surface: #252D3F;

  --text-main: #F4F6FB;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --text-dark: #111827;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(255, 107, 0, 0.45);
  --border-glass: rgba(255, 255, 255, 0.12);

  --glass-bg: rgba(21, 25, 36, 0.85);
  --box-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
}


[data-mode="dark"] .form-input,
[data-mode="dark"] .form-select {
  background: rgba(255, 255, 255, 0.05);
  color: #F4F6FB;
  border-color: rgba(255, 255, 255, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

/* --- TYPOGRAPHY UTILITIES --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.text-orange {
  color: var(--accent-orange);
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, #FF8A65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 87, 34, 0.12);
  border: 1px solid rgba(255, 87, 34, 0.3);
  color: var(--accent-orange);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.98rem;
  transition: var(--transition-fast);
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #E64A19 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF7043 0%, var(--accent-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.45);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.6);
  color: #CBD5E1;
  border: 1.5px solid var(--accent-orange);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.btn-secondary i,
.btn-secondary svg {
  color: var(--accent-orange);
}

.btn-secondary:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.25);
}

[data-mode="dark"] .btn-secondary {
  background: rgba(16, 20, 28, 0.75);
  color: #CBD5E1;
  border-color: var(--accent-orange);
}

[data-mode="dark"] .btn-secondary:hover {
  background: rgba(255, 87, 34, 0.15);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
}

.btn-outline:hover {
  background: rgba(255, 87, 34, 0.1);
  color: #FFF;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* Mode Toggle Button */
.mode-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

[data-mode="dark"] .mode-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
}

.mode-toggle-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.08);
}

/* Theme Switcher Dots */
.theme-palette-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-light);
  padding: 5px 10px;
  border-radius: var(--radius-full);
}

[data-mode="dark"] .theme-palette-switcher {
  background: rgba(255, 255, 255, 0.05);
}

.theme-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.theme-dot:hover,
.theme-dot.active {
  transform: scale(1.25);
  border-color: #FFF;
}

.theme-amber {
  background: #FF6B00;
}

.theme-cyan {
  background: #00E5FF;
}

.theme-emerald {
  background: #10B981;
}

.theme-gold {
  background: #F59E0B;
}

/* --- HEADER & NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255, 107, 0, 0.6);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.navbar.scrolled .nav-link {
  color: var(--text-muted);
  text-shadow: none;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--accent-orange);
}

[data-mode="dark"] .navbar {
  background: rgba(8, 10, 14, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

[data-mode="dark"] .navbar.scrolled {
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-mode="dark"] .navbar.scrolled .nav-link {
  color: var(--text-muted);
  text-shadow: none;
}

[data-mode="dark"] .navbar.scrolled .nav-link:hover,
[data-mode="dark"] .navbar.scrolled .nav-link.active {
  color: var(--accent-orange);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-orange), #D84315);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

.brand-logo-img {
  height: 90px;
  width: auto;
  max-height: 94px;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(255, 87, 34, 0.4));
  display: block;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(255, 87, 34, 0.6));
}

.footer .brand-logo-img {
  height: 95px;
  max-height: 105px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 18px rgba(255, 107, 0, 0.4));
}

.footer .brand-logo-video {
  height: 88px;
  max-width: 155px;
  margin-bottom: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

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

.phone-quick {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.phone-quick:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-orange);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-150%);
  transition: var(--transition-normal);
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
}

/* Sticky Mobile Bottom CTA Bar */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 18, 24, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  z-index: 990;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
}

/* --- HERO SECTION --- */
/* --- HERO EXTENSIONS & STYLES --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
  background: #080C14;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

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

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 12, 20, 0.25) 0%, rgba(15, 23, 42, 0.15) 50%, rgba(8, 12, 20, 0.30) 100%);
}

[data-mode="dark"] .hero-video-overlay {
  background: linear-gradient(135deg, rgba(5, 8, 14, 0.35) 0%, rgba(10, 14, 24, 0.25) 50%, rgba(5, 8, 14, 0.40) 100%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.22);
  border: 1.5px solid #10B981;
  color: #34D399;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
  backdrop-filter: blur(8px);
}

[data-mode="dark"] .hero-live-status {
  background: rgba(16, 185, 129, 0.22);
  border-color: #10B981;
  color: #34D399;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 10px #34D399;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.hero-headline {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

[data-mode="dark"] .hero-headline {
  color: #FFFFFF;
}

.hero-headline span {
  display: block;
}

.hero-copy {
  font-size: 1.22rem;
  color: #FFFFFF;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

[data-mode="dark"] .hero-copy {
  color: #FFFFFF;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.hero-stat-item {
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition-fast);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

[data-mode="dark"] .hero-stat-item {
  background: rgba(10, 14, 24, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-stat-item:hover {
  background: rgba(255, 87, 34, 0.12);
  border-color: rgba(255, 87, 34, 0.4);
}

.hero-stat-value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #FFFFFF;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Hero Interactive Tab System */
.hero-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 87, 34, 0.15);
  position: relative;
  z-index: 2;
}

.hero-card-switcher {
  display: flex;
  gap: 6px;
  background: rgba(10, 12, 16, 0.8);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.hero-switcher-btn {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-switcher-btn.active {
  background: var(--accent-orange);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.4);
}

.floating-tag {
  position: absolute;
  background: rgba(22, 26, 35, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-active);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
  animation: float 4s ease-in-out infinite alternate;
}

.floating-tag-1 {
  top: -24px;
  right: -12px;
}

.floating-tag-2 {
  bottom: -24px;
  left: -24px;
  animation-delay: 2s;
}

.hero-grid {
  display: block;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  margin: 0 auto;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-badge i,
.hero-badge svg {
  color: #FF5722;
  font-size: 1.05rem;
}

[data-mode="dark"] .hero-badge {
  background: rgba(10, 14, 24, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-headline span {
  display: block;
}

.hero-copy {
  font-size: 1.22rem;
  color: #FFFFFF;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 700;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.trust-item i,
.trust-item svg {
  color: #10B981;
  font-size: 1.1rem;
}

/* Hero Visual & Quick Valuation Widget Card */
.hero-visual-wrapper {
  position: relative;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--box-shadow-card);
  position: relative;
  z-index: 2;
}

.hero-card-header {
  margin-bottom: 24px;
}

.hero-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Floating Badges */
.floating-tag {
  position: absolute;
  background: rgba(22, 26, 35, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-active);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 10;
  animation: float 4s ease-in-out infinite alternate;
}

.floating-tag-1 {
  top: -20px;
  right: -10px;
}

.floating-tag-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 87, 34, 0.2);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: #F8FAFC;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--accent-orange-glow);
  background: #FFFFFF;
}

.form-select option {
  background: #FFFFFF;
  color: #0F172A;
}

[data-mode="dark"] .form-input,
[data-mode="dark"] .form-select {
  background: rgba(10, 12, 16, 0.6);
  border-color: var(--border-light);
  color: #F4F6FB;
}

[data-mode="dark"] .form-input:focus,
[data-mode="dark"] .form-select:focus {
  background: rgba(10, 12, 16, 0.9);
}

[data-mode="dark"] .form-select option {
  background: #151924;
  color: #F4F6FB;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* --- TRUST BAR --- */
.trust-bar-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}

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

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-light);
}

.trust-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 87, 34, 0.12);
  border: 1px solid rgba(255, 87, 34, 0.25);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- PROBLEM TO SOLUTION SECTION --- */
.problem-solution-section {
  background: var(--bg-dark);
  position: relative;
}

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

.problem-box {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.problem-title {
  color: #DC2626;
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
}

.problem-item svg {
  color: #DC2626;
  flex-shrink: 0;
}

.solution-box {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.06) 0%, #FFFFFF 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--box-shadow-card);
}

[data-mode="dark"] .solution-box {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.08) 0%, rgba(22, 26, 35, 0.8) 100%);
}

.solution-title {
  color: var(--accent-orange);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.solution-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

[data-mode="dark"] .solution-step {
  background: rgba(10, 12, 16, 0.6);
}

.solution-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #FFF;
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
}

/* --- UNIQUE ANIMATED STEP WIDGET: WHAT HAPPENS TO YOUR BIKE --- */
.journey-widget-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.journey-container {
  margin-top: 48px;
  position: relative;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.journey-node {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.journey-node:hover,
.journey-node.active {
  background: var(--bg-card-hover);
  border-color: var(--accent-orange);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 87, 34, 0.2);
}

.journey-step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.journey-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 87, 34, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}

.journey-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Connector Line */
.journey-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

/* --- HOW IT WORKS (5 STEPS OVERSIZED NUMBERS) --- */
.how-it-works-section {
  position: relative;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 100%), url('assets/how-it-works-bg.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  color: #FFFFFF;
}

[data-mode="dark"] .how-it-works-section {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%), url('assets/how-it-works-bg.jpg');
}

.how-it-works-section .section-title {
  color: #FFFFFF;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.how-it-works-section .section-subtitle {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.how-it-works-section .section-tag {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.45);
  color: #FFA066;
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  display: grid;
  grid-template-columns: 140px 1fr 240px;
  gap: 28px;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

[data-mode="dark"] .process-card {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.process-card:hover {
  border-color: var(--border-active);
  box-shadow: 0 16px 45px rgba(255, 107, 0, 0.25);
  transform: translateY(-3px) translateX(4px);
  background: rgba(0, 0, 0, 0.72);
}

.process-lead-col {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-number {
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 800;
  color: #FFFFFF;
  opacity: 0.35;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.process-card:hover .process-number {
  opacity: 0.9;
  color: var(--accent-orange);
}

.process-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 107, 0, 0.18);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.process-card:hover .process-icon-badge {
  transform: scale(1.1) rotate(4deg);
  background: var(--accent-orange);
  color: #FFFFFF;
}

.process-step-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.18);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  width: fit-content;
}

.process-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.process-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.96rem;
  line-height: 1.6;
}

.process-tag-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s ease;
}

[data-mode="dark"] .process-tag-box {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.15);
}

.tag-box-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.18);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.process-tag-box strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  margin-bottom: 2px;
}

.process-tag-box span {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Finish Card (Step 5) */
.process-card-finish {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(0, 0, 0, 0.65) 100%);
  border-color: rgba(16, 185, 129, 0.4);
}

.process-card-finish:hover {
  border-color: var(--accent-green);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.25);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.finish-num {
  color: var(--accent-green) !important;
  opacity: 0.5 !important;
}

.finish-icon {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--accent-green);
}

.process-card-finish:hover .finish-icon {
  background: var(--accent-green);
  color: #FFF;
}

.finish-pill {
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.2);
}

.finish-tag-box {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
}

.finish-tag-icon {
  background: var(--accent-green);
  color: #FFF;
}

/* --- BEST PRICE / COMPARISON SECTION --- */
.comparison-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  position: relative;
}

.comp-table-wrapper {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.comp-table-wrapper:hover {
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.09), 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Header Grid */
.comp-matrix-header {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-bottom: 2px solid var(--border-light);
  padding: 24px 32px;
  align-items: end;
  gap: 20px;
}

[data-mode="dark"] .comp-matrix-header {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.comp-head-col {
  display: flex;
  flex-direction: column;
}

.comp-head-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.comp-head-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  line-height: 1.25;
}

.comp-head-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 4px 0 0 0;
}

.comp-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
  width: fit-content;
}

.pill-traditional {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.pill-motobuyer {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.25) 100%);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

[data-mode="dark"] .pill-motobuyer {
  color: #34D399;
}

.comp-head-motobuyer {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.09) 0%, rgba(16, 185, 129, 0.02) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  position: relative;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

.comp-head-winner-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

/* Matrix Body & Rows */
.comp-matrix-body {
  display: flex;
  flex-direction: column;
}

.comp-matrix-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  gap: 20px;
  transition: background 0.2s ease;
}

.comp-matrix-row:hover {
  background: rgba(248, 250, 252, 0.9);
}

[data-mode="dark"] .comp-matrix-row:hover {
  background: rgba(30, 41, 59, 0.4);
}

/* Feature Col */
.comp-col-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.08);
  color: var(--accent-orange);
  font-size: 1.25rem;
  border: 1px solid rgba(255, 107, 0, 0.16);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.comp-matrix-row:hover .feature-icon-box {
  transform: scale(1.08);
  background: rgba(255, 107, 0, 0.14);
}

.feature-text-group {
  display: flex;
  flex-direction: column;
}

.feature-name {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text-main);
}

.feature-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Cell Common */
.comp-col-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cell-status-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cell-text strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 2px;
}

.cell-text span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
}

/* Bad Col */
.comp-col-bad .cell-status-icon {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  font-size: 1.1rem;
}

.comp-col-bad .cell-text strong {
  color: #DC2626;
  font-weight: 700;
}

.comp-col-bad .cell-text span {
  color: var(--text-dim);
}

/* Good Col (Winner) */
.comp-col-good {
  background: rgba(16, 185, 129, 0.05);
  border: 1.5px solid rgba(16, 185, 129, 0.22);
  border-radius: 12px;
  padding: 12px 18px;
  margin: -4px 0;
  transition: all 0.2s ease;
}

.comp-matrix-row:hover .comp-col-good {
  background: rgba(16, 185, 129, 0.09);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
}

.comp-col-good .cell-status-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.comp-col-good .cell-text strong {
  color: #047857;
  font-weight: 800;
}

[data-mode="dark"] .comp-col-good .cell-text strong {
  color: #34D399;
}

.comp-col-good .cell-text span {
  color: var(--text-muted);
}

/* Bottom Bar */
.comp-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 20px;
}

[data-mode="dark"] .comp-bottom-bar {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 12, 16, 0.98) 100%);
}

.comp-bottom-perks {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.comp-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}

.comp-perk-item i {
  color: var(--accent-orange);
  font-size: 1.15rem;
}

.comp-bottom-action .btn-sm {
  padding: 10px 22px;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
}

/* --- DOORSTEP SERVICE SECTION --- */
.doorstep-section {
  position: relative;
  background-image: linear-gradient(180deg, rgba(8, 12, 20, 0.35) 0%, rgba(15, 23, 42, 0.45) 100%), url('assets/doorstep-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1.5px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.12);
  padding: 100px 0;
  color: #FFFFFF;
}

[data-mode="dark"] .doorstep-section {
  background-image: linear-gradient(180deg, rgba(5, 8, 14, 0.45) 0%, rgba(10, 14, 24, 0.55) 100%), url('assets/doorstep-bg.jpg');
}

.doorstep-section .section-title {
  color: #FFFFFF;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.doorstep-section .section-subtitle {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.doorstep-section .section-tag {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.45);
  color: #FFA066;
}

.doorstep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
}

/* Subtle Vertical Separator Line between Left and Right Columns on Desktop */
@media (min-width: 992px) {
  .doorstep-grid::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 90%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.5) 50%, transparent 100%);
    opacity: 0.45;
    pointer-events: none;
  }
}

.location-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.location-card {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.location-card:hover {
  border-color: var(--accent-orange);
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.25);
}

.location-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--accent-orange);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.location-card:hover .location-icon {
  transform: scale(1.08);
  background: var(--accent-orange);
  color: #FFFFFF;
}

.location-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.location-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

/* Visual Illustration Box */
.visual-illustration-card {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 107, 0, 0.45);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 107, 0, 0.15);
  transition: all 0.3s ease;
  color: #FFFFFF;
}

.visual-illustration-card h3 {
  color: #FFFFFF !important;
}

.visual-illustration-card p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.visual-illustration-card:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6), 0 0 45px rgba(255, 107, 0, 0.25);
}

.illustration-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

/* --- PAPERWORK & DOCUMENTATION SECTION --- */
.paperwork-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  position: relative;
}

.paperwork-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 48px;
}

/* Left Column: Pillars */
.paperwork-pillars-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doc-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.doc-pillar-card:hover {
  border-color: var(--border-active);
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.08);
}

.doc-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.doc-pillar-card:hover .doc-pillar-icon {
  transform: scale(1.1) rotate(4deg);
  background: var(--accent-orange);
  color: #FFFFFF;
}

.doc-pillar-content {
  display: flex;
  flex-direction: column;
}

.doc-pillar-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  width: fit-content;
}

.doc-pillar-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-main);
}

.doc-pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Right Column: Visual Image Cards */
.paperwork-visuals-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.paperwork-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.paperwork-visual-card:hover {
  border-color: var(--border-active);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.pw-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0B0F19;
}

.pw-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.paperwork-visual-card:hover .pw-card-img {
  transform: scale(1.06);
}

.pw-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.pw-floating-pill {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pw-card-caption {
  padding: 22px;
}

.pw-caption-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}

.pw-caption-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.pw-status-chip {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.pw-status-chip.chip-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border-color: rgba(16, 185, 129, 0.3);
}

.pw-card-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Paperwork Bottom Bar */
.paperwork-bottom-banner {
  margin-top: 40px;
  padding: 24px 32px;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

[data-mode="dark"] .paperwork-bottom-banner {
  background: linear-gradient(180deg, rgba(21, 25, 36, 0.85) 0%, rgba(14, 17, 24, 0.95) 100%);
}

.pw-perks-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pw-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}

.pw-perk-item i {
  font-size: 1.2rem;
}

/* --- PAYMENT SECTION --- */
.payment-section {
  background: var(--bg-dark);
}

.timeline-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.timeline-step-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline-step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- WHY CHOOSE US (BENTO GRID SHOWCASE) --- */
.why-section {
  position: relative;
  background-color: #080C14;
  background-image:
    radial-gradient(rgba(255, 107, 0, 0.22) 1.5px, transparent 1.5px),
    radial-gradient(circle at left center, rgba(255, 107, 0, 0.15) 0%, transparent 60%),
    radial-gradient(circle at right top, rgba(255, 107, 0, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, #05080E 0%, #080C14 100%);
  background-size: 24px 24px, 100% 100%, 100% 100%, 100% 100%;
  background-position: right top, left center, right top, center;
  border-top: 1.5px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  overflow: hidden;
  padding: 100px 0;
}

[data-mode="dark"] .why-section {
  background-color: #05080E;
}

/* Background Motorcycle Graphic Overlay on Left */
.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2%;
  width: 48%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?q=80&w=1000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.why-section .section-title {
  color: #FFFFFF;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.why-section .section-title .text-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #FFA726 50%, #FFD54F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
  filter: drop-shadow(0 2px 14px rgba(255, 107, 0, 0.55));
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.why-section .section-tag {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.45);
  color: #FFA066;
}

.why-bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.why-bento-card {
  background: rgba(11, 15, 25, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 107, 0, 0.35);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-bento-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255, 107, 0, 0.2);
  background: rgba(11, 15, 25, 0.96);
}

/* Hero / Wide Bento Cards */
.bento-card-hero {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: rgba(11, 15, 25, 0.92);
  border-color: rgba(255, 107, 0, 0.4);
}

.bento-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bento-card-accent {
  grid-column: 2 / 3;
  background: rgba(8, 22, 18, 0.92);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 25px rgba(16, 185, 129, 0.12);
}

.bento-card-accent:hover {
  border-color: var(--accent-green);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.25);
}

.bento-card-wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background: rgba(11, 18, 32, 0.92);
  border-color: rgba(37, 99, 235, 0.35);
}

.bento-card-wide:hover {
  border-color: #3B82F6;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.22);
}

/* Badge Pills */
.bento-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 107, 0, 0.18);
  color: #FF8A65;
  border: 1px solid rgba(255, 107, 0, 0.35);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  width: fit-content;
}

.bento-badge-pill.pill-green {
  background: rgba(16, 185, 129, 0.18);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.bento-badge-pill.pill-blue {
  background: rgba(37, 99, 235, 0.18);
  color: #60A5FA;
  border: 1px solid rgba(37, 99, 235, 0.35);
}

/* Typography & Content */
.bento-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bento-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Tags & Perks */
.bento-tags-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
}

[data-mode="dark"] .bento-tag {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Visual Stats & Icons */
.bento-visual-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 18px;
  padding: 24px;
  min-width: 170px;
  text-align: center;
  flex-shrink: 0;
}

.bento-visual-stat.stat-blue {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(37, 99, 235, 0.35);
}

.bento-visual-stat .stat-number {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 16px rgba(255, 107, 0, 0.4);
}

.stat-blue .stat-number {
  color: #3B82F6;
  text-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
}

.bento-visual-stat .stat-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bento-metric-large {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 800;
  color: #00E676;
  line-height: 1;
  margin: 6px 0 12px 0;
  text-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.bento-mini-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: auto;
  padding-top: 8px;
}

.bento-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.bento-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-top: auto;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  background: var(--bg-dark);
}

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

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testi-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-muted);
  margin-bottom: 12px;
  align-self: flex-start;
}

.testi-quote {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #FFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- SERVICE AREA SECTION --- */
.service-area-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.area-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.area-tag {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.area-tag:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

/* --- BLOG / KNOWLEDGE HUB ("THE USED BIKE GUIDE") --- */
.blog-section {
  background: var(--bg-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  position: relative;
}

.blog-card:hover {
  border-color: var(--border-active);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1), 0 0 25px rgba(255, 107, 0, 0.12);
}

.blog-header-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
  background: #0B0F19;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-header-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.05) 0%, rgba(11, 15, 25, 0.6) 100%);
  pointer-events: none;
}

.blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.55);
  color: #FFA066;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.blog-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-title {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.blog-card:hover .blog-title {
  color: var(--accent-orange);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.blog-footer span:last-child {
  color: var(--accent-orange);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-footer span:last-child {
  transform: translateX(4px);
}

/* --- FAQ ACCORDION SECTION --- */
.faq-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.faq-wrapper {
  max-width: 860px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent-orange);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent-orange);
  color: #FFF;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
  background: linear-gradient(135deg, #FFF7ED 0%, #F8FAFC 100%);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

[data-mode="dark"] .final-cta-section {
  background: radial-gradient(circle at center, rgba(255, 87, 34, 0.15) 0%, rgba(10, 12, 16, 1) 70%);
}

.final-cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.gradient-text {
  color: var(--accent-orange) !important;
  background: linear-gradient(135deg, #FF6B00 0%, #FF3D00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.final-cta-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-main);
}

.final-cta-title .gradient-text {
  color: #FF5722 !important;
  background: linear-gradient(135deg, #FF5722 0%, #E04D00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.final-cta-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* --- VALUATION LEAD SECTION (CINEMATIC FORM WITH BACKDROP) --- */
.valuation-lead-section {
  position: relative;
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.40) 0%, rgba(15, 23, 42, 0.55) 50%, var(--bg-dark) 100%), url('assets/valuation-form-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}

[data-mode="dark"] .valuation-lead-section {
  background-image: linear-gradient(180deg, rgba(8, 10, 14, 0.45) 0%, rgba(14, 17, 24, 0.60) 50%, var(--bg-dark) 100%), url('assets/valuation-form-bg.jpg');
}

.valuation-lead-section .section-title {
  color: #FFFFFF;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85);
}

.valuation-lead-section .section-subtitle {
  color: #E2E8F0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
  font-size: 1.12rem;
}

.valuation-hub-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 107, 0, 0.4);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), 0 0 35px rgba(255, 107, 0, 0.12);
  position: relative;
  transition: all 0.3s ease;
}

[data-mode="dark"] .valuation-hub-card {
  background: rgba(18, 22, 32, 0.88);
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 0, 0.18);
}

/* Top Feature Bar inside Card */
.val-hub-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.val-hub-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: #059669;
}

[data-mode="dark"] .val-hub-live-badge {
  color: #34D399;
}

.pulse-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.val-hub-steps-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
}

.hub-step-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hub-step-item.active {
  color: var(--accent-orange);
}

.hub-step-separator {
  opacity: 0.4;
}

/* Icon Padded Form Fields */
.form-group-with-icon {
  margin-bottom: 20px;
}

.input-with-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-field-icon {
  position: absolute;
  left: 16px;
  font-size: 1.15rem;
  color: var(--accent-orange);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.2s ease, color 0.2s ease;
}

.form-input.icon-padded,
.form-select.icon-padded {
  padding-left: 46px;
}

.input-with-icon-wrap:focus-within .input-field-icon {
  transform: scale(1.15);
  color: var(--accent-orange-hover);
}

.val-submit-btn {
  margin-top: 12px;
  padding: 18px 28px;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
}

.val-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(255, 107, 0, 0.45);
}

/* Security / Trust Tags */
.val-form-security-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.security-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.security-tag-item i {
  font-size: 1.05rem;
}

/* --- FOOTER --- */
.footer {
  background: #080C14;
  color: #F8FAFC;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 80px 0 40px 0;
}

.footer .brand-logo {
  color: #FFFFFF;
}

.footer .brand-logo span {
  color: #FFFFFF;
}

.footer .brand-logo .text-orange {
  color: var(--accent-orange);
}

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

.footer-brand-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #64748B;
}

/* --- MODAL SYSTEM (VALUATION ESTIMATOR, ARTICLE READER, DOC HELPER) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent-orange);
  color: #FFF;
}

/* Valuation Result Box inside Modal */
.valuation-result-card {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin: 24px 0;
}

[data-mode="dark"] .valuation-result-card {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.15) 0%, rgba(22, 26, 35, 0.9) 100%);
}

.val-range-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 6px;
}

.val-range-amount {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-main);
}

/* Article Reader Modal Content */
.article-modal-body {
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.article-modal-body h3 {
  color: var(--text-main);
  font-size: 1.4rem;
  margin: 24px 0 12px 0;
}

.article-modal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-tip-box {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--accent-green);
  padding: 16px;
  border-radius: 4px;
  margin: 20px 0;
  color: var(--text-main);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {

  .hero-grid,
  .ps-grid,
  .doorstep-grid,
  .paperwork-showcase-grid,
  .why-bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-hero,
  .bento-card-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .journey-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .comp-matrix-header {
    display: none;
  }

  .comp-matrix-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .comp-col-good {
    margin: 0;
  }

  .comp-bottom-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }

  .comp-bottom-perks {
    justify-content: center;
    gap: 12px;
  }

  .comp-bottom-action .btn {
    width: 100%;
  }

  .process-card {
    grid-template-columns: 80px 1fr;
  }

  .process-tag-box {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .phone-quick {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .sticky-mobile-bar {
    display: block;
  }

  .trust-grid,
  .docs-grid,
  .why-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .journey-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-horizontal {
    flex-direction: column;
    gap: 32px;
  }

  .timeline-step {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}