/* ═══════════════════════════════════════════════════════════════
   AutoBDC Pro — Premium Automotive BDC Landing Page
   style.css
═══════════════════════════════════════════════════════════════ */

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

:root {
  --red:       #FF6B00;
  --red-dark:  #CC5500;
  --red-glow:  rgba(255,107,0,0.35);
  --red-faint: rgba(255,107,0,0.08);
  --white:     #FFFFFF;
  --bg:        #050505;
  --dark:      #121212;
  --gray-1:    #1a1a1a;
  --gray-2:    #242424;
  --gray-3:    #3a3a3a;
  --text-mute: #888;
  --light:     #EAEAEA;
  --glass-bg:  rgba(255,255,255,0.04);
  --glass-bdr: rgba(255,255,255,0.09);
  --radius:    16px;
  --transition: 0.4s cubic-bezier(0.16,1,0.3,1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--red); color: #fff; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }

/* ── Typography helpers ────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--red) 0%, #ffaa44 50%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout helpers ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section { padding: 120px 0; position: relative; overflow: hidden; }
.section-dark { background: var(--dark); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mute);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { background: #CC5500; transform: translateY(-2px); }
.btn-primary:hover::before { opacity: 1; }

.btn-glow { box-shadow: 0 0 24px var(--red-glow), 0 4px 16px rgba(0,0,0,0.3); }
.btn-glow:hover { box-shadow: 0 0 40px var(--red-glow), 0 8px 24px rgba(0,0,0,0.4); }

.btn-xl { padding: 18px 48px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--glass-bdr);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-faint);
}

/* ── Glassmorphism cards ───────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,0,0.1), 0 0 30px rgba(255,107,0,0.06);
  transform: translateY(-6px);
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ════════════════════════════════════════════════════════════
   PRELOADER
════════════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#preloader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preloader-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.logo-3d-wrap { perspective: 600px; }

.logo-3d {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.1em;
  line-height: 1;
  transform-style: preserve-3d;
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-a { color: var(--white); }
.logo-b { color: var(--red); }

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--text-mute);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

@keyframes logoFloat {
  0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
  25% { transform: rotateX(5deg) rotateY(8deg); }
  75% { transform: rotateX(-3deg) rotateY(-6deg); }
}

.preloader-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: min(320px, 80vw);
}

.preloader-bar {
  width: 100%;
  height: 3px;
  background: var(--gray-2);
  border-radius: 10px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), #ffaa00);
  border-radius: 10px;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px var(--red-glow);
}

.preloader-pct {
  font-size: 0.75rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  padding: 0.85rem 0;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-bdr);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  outline: none !important;
  border: none !important;
  text-decoration: none;
}
.nav-logo:focus,
.nav-logo:focus-visible {
  outline: none !important;
}
.nav-logo-img {
  height: 120px !important;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain;
  display: block !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(255,107,0,0.2));
  transition: filter 0.3s;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(255,107,0,0.5));
}
.preloader-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255,107,0,0.4));
  animation: logoFloat 3s ease-in-out infinite;
}
.footer-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(255,107,0,0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: all 0.25s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-cta { margin-left: 1rem; padding: 10px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,5,5,0.92) 0%,
    rgba(5,5,5,0.7) 50%,
    rgba(5,5,5,0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-top: 180px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff7070;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--red-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.hero-headline {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hstat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.hstat span {
  font-size: 0.75rem;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hstat-div {
  width: 1px;
  height: 36px;
  background: var(--glass-bdr);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.5;
}
.hero-scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.glass-card.tilt-card {
  padding: 2rem;
  cursor: default;
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  background: rgba(255,107,0,0.08);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(255,107,0,0.15);
  transition: var(--transition);
}
.glass-card:hover .card-icon {
  background: rgba(255,107,0,0.14);
  box-shadow: 0 0 20px rgba(255,107,0,0.2);
}

.glass-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.glass-card p {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 64px 72px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--glass-bdr);
  transition: var(--transition);
  cursor: default;
  border-radius: 4px;
}
.service-item:first-child { border-top: 1px solid var(--glass-bdr); }
.service-item:hover {
  background: rgba(255,107,0,0.04);
  border-color: rgba(255,107,0,0.2);
  padding-left: 2.5rem;
}

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gray-2);
  transition: var(--transition);
  line-height: 1;
}
.service-item:hover .service-num { color: rgba(255,107,0,0.25); }

.service-icon {
  width: 56px;
  height: 56px;
  padding: 10px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  transition: var(--transition);
}
.service-item:hover .service-icon {
  background: rgba(255,107,0,0.08);
  border-color: rgba(255,107,0,0.25);
}

.service-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.service-body p {
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.65;
}

.service-arrow {
  font-size: 1.4rem;
  color: var(--gray-3);
  transition: var(--transition);
  padding-right: 0.5rem;
}
.service-item:hover .service-arrow { color: var(--red); transform: translateX(6px); }

/* ════════════════════════════════════════════════════════════
   STATISTICS
════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

#stats-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--glass-bdr);
  border: 1px solid var(--glass-bdr);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-block {
  background: var(--bg);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.stat-block:hover { background: rgba(255,107,0,0.04); }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(255,107,0,0.4);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   PROCESS TIMELINE
════════════════════════════════════════════════════════════ */
.timeline-wrap { position: relative; }

.timeline-line {
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--gray-2);
  border-radius: 2px;
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--red), rgba(255,107,0,0.3));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--red-glow);
  transition: height 0.8s cubic-bezier(0.16,1,0.3,1);
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 72px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--glass-bdr);
  position: relative;
}
.timeline-step:last-child { border-bottom: none; }

.step-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--text-mute);
  margin-left: -88px;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step-node.active, .step-node.done {
  border-color: var(--red);
  color: var(--white);
  background: rgba(255,107,0,0.15);
  box-shadow: 0 0 20px rgba(255,107,0,0.3);
}

.step-node.last { }

.step-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.7;
  max-width: 500px;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  padding: 2.5rem;
  position: relative;
}

.testi-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--red);
  line-height: 0.8;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.testi-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-mute);
}

.testi-stars {
  color: #FFB800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

#cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

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

.cta-inner .section-label {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-inner .section-label::before { display: none; }

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-mute);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-btns { margin-bottom: 2rem; }

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-mute);
}
.cta-trust span::before {
  content: '✓ ';
  color: var(--red);
}

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.contact-item span {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.65;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-bdr);
  height: 240px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.8) brightness(0.6) invert(0.1);
}

.contact-form {
  padding: 2.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-bdr);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-3); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,107,0,0.4);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 1rem;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
#footer {
  background: #030303;
  border-top: 1px solid var(--glass-bdr);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--glass-bdr);
}

.footer-brand .footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links { display: flex; gap: 0.75rem; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.3);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links-col li { font-size: 0.88rem; color: var(--text-mute); }
.footer-links-col a { transition: color 0.25s; }
.footer-links-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--gray-3);
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { transition: color 0.25s; }
.footer-legal a:hover { color: var(--text-mute); }

/* ════════════════════════════════════════════════════════════
   CARDS GRID helpers
════════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

/* ════════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY
════════════════════════════════════════════════════════════ */
/* ── Tablet ─────────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .testi-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .process-layout    { grid-template-columns: 1fr; gap: 3rem; }
  .pstack-float      { right: 0; bottom: -20px; }
  .section-title     { font-size: 2.4rem; }
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* --- Navbar --- */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78vw;
    max-width: 300px;
    height: 100dvh;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 3rem;
    gap: 0.25rem;
    transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
    border-left: 1px solid var(--glass-bdr);
    z-index: 999;
  }
  .nav-links.open    { right: 0; }
  .nav-link          { font-size: 1rem; padding: 0.85rem 1rem; width: 100%; border-radius: 8px; }
  .nav-cta           { display: none; }
  .nav-toggle        { display: flex; }
  .nav-logo-img      { height: 80px !important; }

  /* --- Hero --- */
  #hero              { min-height: 100svh; align-items: flex-start; }
  .hero-content      { padding-top: 130px; padding-bottom: 60px; }
  .hero-headline     { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -0.02em; }
  .hero-sub          { font-size: 0.95rem; max-width: 100%; }
  .hero-btns         { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .btn-primary,
  .btn-ghost         { width: 100%; justify-content: center; }
  .hero-stats        { gap: 1.2rem; flex-wrap: wrap; }
  .hstat strong      { font-size: 1.2rem; }
  .hstat-div         { display: none; }

  /* --- Section padding & type --- */
  .section           { padding: 72px 0; }
  .section-title     { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .section-sub       { font-size: 0.92rem; margin-bottom: 2.5rem; }
  .container         { padding: 0 1.25rem; }

  /* --- Why Us --- */
  .why-grid          { grid-template-columns: 1fr; gap: 1rem; }
  .glass-card.tilt-card { padding: 1.5rem; }

  /* --- Services --- */
  .services-grid     { gap: 0; }
  .service-item      { grid-template-columns: 40px 1fr auto; gap: 1rem; padding: 1.25rem 1rem; }
  .service-num       { font-size: 1.6rem; }
  .service-icon      { display: none; }
  .service-body h3   { font-size: 1rem; }
  .service-body p    { font-size: 0.84rem; }
  .service-arrow     { font-size: 1.1rem; padding-right: 0; }

  /* --- Stats --- */
  .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stat-block        { padding: 2rem 1.25rem; }
  .stat-num          { font-size: 2.8rem; }
  .stat-label        { font-size: 0.75rem; }

  /* --- Process --- */
  .process-layout    { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-img-stack { display: none; }
  .timeline-steps    { padding-left: 52px; }
  .timeline-line     { left: 22px; }
  .timeline-step     { grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .step-node         { width: 42px; height: 42px; margin-left: -64px; font-size: 0.8rem; }
  .step-body h3      { font-size: 1rem; }
  .step-body p       { font-size: 0.85rem; }

  /* --- Testimonials --- */
  .testi-grid        { grid-template-columns: 1fr; gap: 1rem; }
  .testi-card        { padding: 1.5rem; }
  .testi-text        { font-size: 0.88rem; }
  .marquee-track img { width: 180px; height: 110px; }
  .brands-grid       { gap: 0.5rem; }
  .brand-pill        { padding: 6px 14px; font-size: 0.78rem; }

  /* --- CTA --- */
  .cta-title         { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .cta-sub           { font-size: 0.92rem; }
  .cta-trust         { flex-direction: column; gap: 0.6rem; align-items: center; font-size: 0.8rem; }
  .btn-xl            { padding: 16px 32px; font-size: 1rem; width: 100%; }

  /* --- Contact --- */
  .contact-layout    { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form      { padding: 1.5rem 1.25rem; }
  .form-row          { grid-template-columns: 1fr; }
  .map-wrap          { height: 200px; }
  .contact-item      { gap: 1rem; }

  /* --- Footer --- */
  .footer-top        { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-brand p    { font-size: 0.85rem; }
  .footer-links-col h4 { font-size: 0.78rem; margin-bottom: 0.75rem; }
  .footer-links-col li { font-size: 0.84rem; }
  .footer-bottom     { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-legal      { gap: 1rem; }
}

/* ── Small Mobile ───────────────────────────────────────────── */
@media (max-width: 400px) {
  .hero-headline     { font-size: 1.9rem; }
  .stats-grid        { grid-template-columns: 1fr 1fr; }
  .section-title     { font-size: 1.7rem; }
  .service-item      { grid-template-columns: 1fr auto; }
  .service-num       { display: none; }
  .nav-logo-img      { height: 64px !important; }
}

/* ════════════════════════════════════════════════════════════
   IMAGE STRIP — Why Us
════════════════════════════════════════════════════════════ */
.img-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr 0.9fr;
  gap: 12px;
  margin-bottom: 4rem;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
}

.img-strip-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.img-strip-item.img-strip-tall {
  margin-top: -30px;
  height: calc(100% + 30px);
}

.img-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
}

.img-strip-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.85) saturate(1.1);
}

.img-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s;
}

.img-strip-item:hover .img-strip-label {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════
   SERVICES LAYOUT — two-column with image mosaic
════════════════════════════════════════════════════════════ */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.services-img-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-top: 1.5rem;
}

.mosaic-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  transition: transform 0.6s ease, filter 0.4s;
}

.mosaic-main:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(1.1);
}

.mosaic-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(5,5,5,0.85);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mbadge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,107,0,0.5);
}

.mbadge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mosaic-side img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 0.5s ease, filter 0.4s;
  height: calc(50% - 6px);
  aspect-ratio: unset;
}

.mosaic-side img:hover {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1.1);
}

/* ════════════════════════════════════════════════════════════
   STATS — background image
════════════════════════════════════════════════════════════ */
.stats-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stats-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.4);
}

.stats-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,5,5,0.85) 0%,
    rgba(5,5,5,0.6) 50%,
    rgba(255,107,0,0.07) 100%
  );
}

/* ════════════════════════════════════════════════════════════
   PROCESS LAYOUT — two-column with image stack
════════════════════════════════════════════════════════════ */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.process-img-stack {
  position: relative;
  margin-top: 2rem;
}

.pstack-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.pstack-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 0.6s ease;
}

.pstack-main:hover img { transform: scale(1.04); }

.pstack-float {
  position: absolute;
  bottom: -28px;
  right: -24px;
  width: 46%;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,0,0.15);
  aspect-ratio: 4/3;
}

.pstack-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.pstack-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255,107,0,0.4);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════
   CAR MARQUEE STRIP
════════════════════════════════════════════════════════════ */
.car-marquee {
  overflow: hidden;
  margin-bottom: 4rem;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.marquee-track img {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.65) saturate(0.7);
  transition: filter 0.35s;
  flex-shrink: 0;
}

.marquee-track img:hover {
  filter: brightness(0.9) saturate(1.1);
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS — with real photos
════════════════════════════════════════════════════════════ */
.testi-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,107,0,0.4);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255,107,0,0.2);
}

.testi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-card { padding: 2rem 2rem 1.5rem; }

/* ════════════════════════════════════════════════════════════
   BRANDS ROW
════════════════════════════════════════════════════════════ */
.brands-row {
  margin-top: 4rem;
  text-align: center;
}

.brands-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.brand-pill {
  padding: 8px 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.brand-pill:hover {
  border-color: rgba(255,107,0,0.3);
  color: var(--white);
  background: rgba(255,107,0,0.06);
}

/* ════════════════════════════════════════════════════════════
   CTA — background image
════════════════════════════════════════════════════════════ */
.cta-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.5);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,18,18,0.9) 0%,
    rgba(18,18,18,0.7) 50%,
    rgba(18,18,18,0.9) 100%
  );
}

/* ════════════════════════════════════════════════════════════
   CONTACT IMAGE
════════════════════════════════════════════════════════════ */
.contact-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
}

.contact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: transform 0.5s ease;
}

.contact-img-wrap:hover img { transform: scale(1.04); }

.contact-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(5,5,5,0.85);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(10px);
}

.contact-img-badge strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
}

.contact-img-badge span {
  font-size: 0.72rem;
  color: var(--text-mute);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — new image components
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-img-mosaic { max-width: 480px; }
  .process-layout { grid-template-columns: 1fr; gap: 3rem; }
  .pstack-float { right: 0; bottom: -20px; }
}

@media (max-width: 768px) {
  .img-strip { grid-template-columns: 1fr 1fr; height: 280px; }
  .img-strip-item.img-strip-tall { margin-top: 0; height: 100%; }
  .services-img-mosaic { grid-template-columns: 1fr; }
  .mosaic-side { flex-direction: row; height: 140px; }
  .mosaic-side img { height: 100%; }
  .car-marquee { margin-bottom: 2.5rem; }
  .marquee-track img { width: 200px; height: 120px; }
  .brands-grid { gap: 0.5rem; }
}

@media (max-width: 480px) {
  .img-strip { grid-template-columns: 1fr; height: auto; }
  .img-strip-item { height: 160px; }
  .img-strip-item.img-strip-tall { margin-top: 0; height: 160px; }
}

/* ════════════════════════════════════════════════════════════
   RED GLOW BACKGROUNDS (section accents)
════════════════════════════════════════════════════════════ */
#why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

#process::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Red glow line at top of sections ─ */
.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.25), transparent);
  pointer-events: none;
}
