/* ==========================================================================
   CSS Variables & Design System (Mobile First)
   ========================================================================== */
:root {
  --color-bg-dark: #0A0A0A;
  --color-surface: #141414;
  --color-surface-light: #1F1F1F;
  --color-text-white: #FFFFFF;
  --color-text-gray: #86868B;
  --color-accent: #0055FF;
  --color-accent-hover: #0044CC;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-glass: rgba(10, 10, 10, 0.7);

  --font-primary: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Roboto", sans-serif;
  
  --spacing-section-mobile: 5.25rem;
  --spacing-section-tablet: 7.5rem;
  --spacing-section-desktop: 11rem;
  
  --radius-card: 1rem;
  --radius-btn: 9999px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-width: 320px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   Typography (Mobile First with clamp)
   ========================================================================== */
.h1 { font-size: clamp(2rem, 5vw + 1rem, 5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.h2 { font-size: clamp(1.75rem, 3vw + 1rem, 3rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .h2 { margin-bottom: 2rem; } }
.h3 { font-size: clamp(1.25rem, 2vw + 1rem, 1.5rem); font-weight: 600; margin-bottom: 1rem; }
.text-gray { color: var(--color-text-gray); }
.text-light { font-weight: 300; }
.text-accent { color: var(--color-accent); }

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }
section { padding: var(--spacing-section-mobile) 0; }
@media (min-width: 768px) { section { padding: var(--spacing-section-tablet) 0; } }
@media (min-width: 1024px) { section { padding: var(--spacing-section-desktop) 0; } }

/* ==========================================================================
   Components (Buttons)
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 2rem; border-radius: var(--radius-btn);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: var(--transition-smooth); border: none; outline: none; text-align: center;
}
.btn-primary { background-color: var(--color-text-white); color: var(--color-bg-dark); }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
.btn-accent { background-color: var(--color-accent); color: var(--color-text-white); }
.btn-accent:hover { background-color: var(--color-accent-hover); transform: scale(1.04); box-shadow: 0 0 20px rgba(0, 85, 255, 0.35); }
.btn-secondary { background-color: rgba(255, 255, 255, 0.08); color: var(--color-text-white); border: 1px solid rgba(255, 255, 255, 0.16); }
.btn-secondary:hover { transform: scale(1.02); background-color: rgba(255, 255, 255, 0.14); }
.btn-small { padding: 0.75rem 1.5rem; font-size: 0.95rem; letter-spacing: 0.01em; }
.btn-large { padding: 1rem 2rem; font-size: 1rem; min-height: 4.5rem; }
.btn-full { width: 100%; }

/* Glassmorphism */
.glass-panel {
  background: var(--color-glass); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border: 1px solid var(--color-border);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 1rem 0; transition: var(--transition-smooth); }
@media (min-width: 992px) { .header { padding: 1.5rem 0; } }
.header.scrolled { padding: 1rem 0; background: var(--color-glass); backdrop-filter: blur(20px); border-bottom: 1px solid var(--color-border); }
.header__inner { display: flex; justify-content: space-between; align-items: center; }
.header__logo { display: inline-flex; align-items: center; gap: 0.9rem; font-weight: 700; letter-spacing: -0.02em; }
.header__brand-img { width: 48px; height: 48px; object-fit: contain; }
.header__brand-name { font-size: 1.25rem; }
@media (min-width: 768px) { .header__brand-name { font-size: 1.5rem; } }
.header__nav { display: none; }
.header__actions { display: none; }
.mobile-toggle { display: flex; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 101; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background-color: var(--color-text-white); transition: var(--transition-smooth); }
@media (min-width: 992px) {
  .header__nav { display: flex; gap: 2rem; }
  .header__nav a { color: var(--color-text-gray); font-size: 0.875rem; font-weight: 500; transition: color 0.3s ease; }
  .header__nav a:hover { color: var(--color-text-white); }
  .header__actions { display: flex; align-items: center; gap: 1.5rem; }
  .header__phone { font-size: 0.875rem; font-weight: 500; transition: color 0.3s ease; }
  .header__phone:hover { color: var(--color-text-gray); }
  .mobile-toggle { display: none; }
}
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--color-bg-dark); display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 2rem; z-index: 99;
  opacity: 0; pointer-events: none; transition: var(--transition-smooth);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a { font-size: 1.5rem; font-weight: 600; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 6rem; padding-bottom: 2rem; }
.hero__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 100%); z-index: -1; }
.hero__content { max-width: 800px; width: 100%; }
.hero .h1 { font-size: clamp(2rem, 4vw + 1rem, 4rem); }
.hero .h3 { font-size: clamp(1.1rem, 1.7vw + 1rem, 1.25rem); }

/* Enable smooth transforms for parallax */
.hero__bg, .hero__overlay { will-change: transform; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.hero__content { will-change: transform; transition: transform 0.9s cubic-bezier(0.16,1,0.3,1); }

/* Floating animation for visual richness */
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }

/* Button ripple and improved micro-interactions */
.btn { position: relative; overflow: hidden; }
.ripple { position: absolute; width: 16px; height: 16px; background: rgba(255,255,255,0.12); border-radius: 50%; transform: translate(-50%, -50%) scale(0); pointer-events: none; animation: ripple 600ms linear; }
@keyframes ripple { to { transform: translate(-50%, -50%) scale(20); opacity: 0; } }

/* Button sizes already exist; improve focus styles */
.btn:focus { outline: none; box-shadow: 0 0 0 4px rgba(0,85,255,0.08); }

/* Input focus and label lift for clarity */
.calc__input-group:focus-within label { color: var(--color-accent); transform: translateY(-6px); font-size: 0.75rem; }
.calc__input { transition: border-color 0.24s ease, box-shadow 0.24s ease; }
.calc__input:focus { box-shadow: 0 6px 20px rgba(0,0,0,0.5) inset; }

/* Smart Calculator (Mobile First) */
.hero__calc {
  position: relative; width: 100%; margin-top: 3rem;
  background: var(--color-glass); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-card); padding: 2rem;
  border: 1px solid var(--color-border); box-shadow: 0 30px 60px rgba(0,0,0,0.6); z-index: 10;
}
@media (min-width: 992px) {
  .hero__calc { margin-top: 4rem; max-width: 1000px; padding: 2.5rem; }
}
.calc__header-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
}
.calc__subtitle {
  color: var(--color-text-gray);
  max-width: 42rem;
  line-height: 1.8;
  font-size: 1rem;
}
.calc__helper-link {
  display: inline-flex;
  color: var(--color-text-white);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.calc__helper-link:hover {
  color: var(--color-accent);
  border-color: rgba(0, 85, 255, 0.45);
}
.calc__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
.calc__actions .btn { width: 100%; }
.calc__actions-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.calc__link {
  color: var(--color-text-gray);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.calc__link:hover {
  color: var(--color-text-white);
}
@media (min-width: 992px) {
  .calc__actions { flex-direction: row; justify-content: space-between; align-items: center; }
  .calc__actions .btn { width: auto; }
  .calc__actions .btn-primary { flex: 1.6; }
  .calc__actions-secondary { justify-content: flex-end; }
}
.alert {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem auto 0;
  max-width: 1280px;
  border: 1px solid transparent;
  font-weight: 600;
}
.alert-success {
  background: rgba(0, 85, 255, 0.14);
  border-color: rgba(0, 85, 255, 0.26);
  color: var(--color-text-white);
}
.alert-error {
  background: rgba(255, 85, 85, 0.14);
  border-color: rgba(255, 85, 85, 0.26);
  color: var(--color-text-white);
}
.calc__step { display: none; animation: fadeIn 0.5s ease forwards; }
.calc__step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.calc__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; }
.calc__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .calc__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .calc__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.calc__input-group { display: flex; flex-direction: column; gap: 0.5rem; position: relative; }
.calc__input-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-gray); font-weight: 600; }
.calc__input { background: none; border: none; border-bottom: 1px solid var(--color-border); color: var(--color-text-white); padding: 0.5rem 0; font-size: 1rem; outline: none; transition: border-color 0.3s ease; width: 100%; }
.calc__input:focus { border-bottom-color: var(--color-accent); }
.calc__textarea { width: 100%; min-height: 120px; background: none; border: 1px solid var(--color-border); color: var(--color-text-white); padding: 0.75rem; outline: none; resize: vertical; font-family: inherit; }
.calc__textarea:focus { border-color: var(--color-accent); }
.calc__icon { position: absolute; right: 0; bottom: 0.5rem; color: var(--color-text-gray); width: 20px; height: 20px; }

.calc-quiz {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px);
}
.calc-quiz__top {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .calc-quiz__top {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}
.calc-quiz__headline .eyebrow,
.calc-form-card__header .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #8ab6ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.calc-quiz__headline h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
}
.calc-quiz__headline p {
  max-width: 560px;
  color: #cbd5e1;
  line-height: 1.85;
}
.calc-mode-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .calc-mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.calc-mode-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.9rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,23,38,0.85);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  text-align: left;
  min-height: 220px;
}
.calc-mode-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 85, 255, 0.35);
}
.calc-mode-card.active {
  border-color: rgba(0, 85, 255, 0.6);
  background: linear-gradient(180deg, rgba(7, 54, 125, 0.9), rgba(15, 23, 38, 0.95));
}
.calc-mode-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: rgba(255,255,255,0.08);
}
.calc-mode-card h4 {
  margin: 0;
  font-size: 1.05rem;
}
.calc-mode-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}
.calc-form-card {
  border-radius: 32px;
  overflow: hidden;
  background: rgba(10,10,14,0.82);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 28px 60px rgba(0,0,0,0.28);
}
.calc-form-card__header {
  padding: 2rem;
}
.calc-form-card__header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.8rem;
}
.calc-form {
  padding: 0 2rem 2rem 2rem;
}
.calc-form__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .calc-form__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.calc-fields {
  display: grid;
  gap: 1rem;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
  overflow: hidden;
}
.calc-fields--quote {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
}
.calc-fields--common {
  max-height: 400px;
}
.form-hidden {
  max-height: 0 !important;
  opacity: 0 !important;
  transform: translateY(12px) !important;
  pointer-events: none;
}
.calc-field {
  display: grid;
  gap: 0.65rem;
}
.calc-field label {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calc-field input,
.calc-field textarea {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #f8fafc;
  padding: 16px 18px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.calc-field input:focus,
.calc-field textarea:focus {
  border-color: rgba(0,85,255,0.7);
  box-shadow: 0 0 0 6px rgba(0,85,255,0.08);
}
.calc-field--full {
  grid-column: 1 / -1;
}
.calc-field textarea {
  min-height: 140px;
  resize: vertical;
}
.calc-form__footer {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}
.calc-form__note {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 720px;
}
.calc-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.calc-form__actions .btn {
  min-width: 220px;
}

/* Loader Step */
.calc__loader-wrapper { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 0; text-align: center; }
.spinner { width: 50px; height: 50px; border: 3px solid rgba(255,255,255,0.1); border-top-color: var(--color-accent); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 1.5rem; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.calc__status { font-size: 1.125rem; font-weight: 500; }

/* Result Step */
.calc__result-wrapper { text-align: center; padding: 1rem 0; }
.calc__result-form { display: flex; flex-direction: column; gap: 1rem; max-width: 400px; margin: 2rem auto 0; }
@media (min-width: 768px) { .calc__result-form { flex-direction: row; align-items: stretch; max-width: 600px; } .calc__result-form .calc__input-group { flex: 1; } }

/* Floating Contact Panel */
.floating-contact-panel {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
}
.floating-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--color-text-white);
  background: rgba(10, 10, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.floating-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.36);
}
.floating-contact-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.floating-contact-btn span {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.floating-contact-btn--phone {
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.96), rgba(10, 10, 14, 0.95));
}
.floating-contact-btn--wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.96), rgba(7, 94, 84, 0.95));
}
.floating-contact-btn--request {
  background: linear-gradient(135deg, rgba(255, 145, 0, 0.96), rgba(255, 78, 0, 0.95));
  justify-content: center;
}
@media (max-width: 768px) {
  .floating-contact-panel {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.6rem;
  }
  .floating-contact-btn {
    padding: 0.72rem 0.9rem;
  }
  .floating-contact-btn span {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
.service-card {
  background: var(--color-surface); border-radius: var(--radius-card); overflow: hidden; position: relative;
  min-height: 350px; display: flex; align-items: flex-end; border: 1px solid transparent; transition: var(--transition-smooth);
}
.service-card:hover { border-color: var(--color-border); transform: translateY(-5px); }
.service-card__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; transition: transform 0.8s ease, opacity 0.8s ease; filter: grayscale(100%); }
.service-card:hover .service-card__bg { transform: scale(1.05); opacity: 0.5; filter: grayscale(0%); }
.service-card__content { position: relative; width: 100%; padding: 2rem; background: linear-gradient(to top, var(--color-bg-dark) 0%, rgba(10,10,10,0.8) 50%, transparent 100%); z-index: 2; transition: var(--transition-smooth); }
.service-card__icon { width: 48px; height: 48px; color: var(--color-text-white); margin-bottom: 1.5rem; background: var(--color-accent); padding: 12px; border-radius: 12px; }
.service-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .service-card { min-height: 400px; } .service-card__title { font-size: 1.5rem; } }

/* ==========================================================================
   Fleet (Showroom style)
   ========================================================================== */
.fleet { background-color: #050505; }
.fleet__item { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 992px) {
  .fleet__item { flex-direction: row; align-items: center; gap: 4rem; margin-bottom: 6rem; }
  .fleet__item:nth-child(even) { flex-direction: row-reverse; }
}
.fleet__image { flex: 1; border-radius: var(--radius-card); overflow: hidden; width: 100%; position: relative; }
.fleet__image::after { content: ''; display: block; padding-bottom: 75%; } /* 4:3 Aspect Ratio */
.fleet__image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.fleet__info { flex: 1; width: 100%; }
.fleet__image img { transition: transform 1.6s ease, box-shadow 0.3s ease; }
.fleet__specs { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fleet__spec-item { background: var(--color-surface); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--color-border); }
.fleet__spec-icon { color: var(--color-accent); margin-bottom: 0.5rem; }
.fleet__spec-label { font-size: 0.75rem; color: var(--color-text-gray); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.fleet__spec-val { font-size: 1.125rem; font-weight: 600; }

/* ==========================================================================
   Trust / Stats
   ========================================================================== */
.stats__grid { display: grid; grid-template-columns: 1fr; gap: 4.5rem; align-items: center; }
@media (min-width: 992px) { .stats__grid { grid-template-columns: 1fr 1fr; } }
.stats__numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .stats__numbers { gap: 2rem; } }
@media (max-width: 767px) {
  .stats__numbers { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-box { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 1rem 1rem 0.75rem 0; }
}
.stat-box { border-left: 2px solid var(--color-accent); padding-left: 1rem; }
.stat-value { display: inline-block; transition: transform 0.3s ease; }
.stat-box:hover .stat-value { transform: scale(1.04); }
/* ==========================================================================
   Premium Timeline / How We Work
   ========================================================================== */
.timeline-section { position: relative; padding: calc(var(--spacing-section-mobile) + 1.25rem) 0 calc(var(--spacing-section-tablet) + 2rem); }
.timeline__header { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.timeline__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.95rem; padding: 0.45rem 0.95rem;
  border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04); color: var(--color-accent);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.timeline__shell { position: relative; padding: 2rem 0 1rem; margin-bottom: 2.5rem; }
.timeline__line {
  position: absolute; left: 5%; right: 5%; top: 4.85rem; height: 2px;
  background: rgba(255, 255, 255, 0.15); overflow: hidden;
}
.timeline__line-fill {
  position: absolute; inset: 0 auto 0 0; width: 0; height: 100%;
  background: linear-gradient(90deg, rgba(0, 85, 255, 0.95), rgba(102, 163, 255, 0.95));
  box-shadow: 0 0 24px rgba(0, 85, 255, 0.28);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline__truck {
  position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
  width: 2.5rem; height: 2.5rem; display: grid; place-items: center; border-radius: 50%;
  background: rgba(10, 10, 10, 0.95); border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  color: var(--color-accent); transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline__truck svg { width: 1.2rem; height: 1.2rem; animation: timelineTruckPulse 1.8s ease-in-out infinite; }
.timeline__steps {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.5rem;
}
.timeline__step {
  position: relative; min-height: 220px; padding: 1.35rem 1rem 1.2rem; border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08); background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; transform: translateY(28px); transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.timeline__step.is-visible { opacity: 1; transform: translateY(0); }
.timeline__step.is-active {
  border-color: rgba(0, 85, 255, 0.45);
  box-shadow: 0 18px 40px rgba(0, 85, 255, 0.16);
  transform: translateY(-6px);
}
.timeline__step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; margin-bottom: 1rem; border-radius: 999px;
  background: rgba(0, 85, 255, 0.16); color: var(--color-accent);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
}
.timeline__icon {
  width: 3rem; height: 3rem; display: grid; place-items: center; margin-bottom: 1rem; border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06); color: var(--color-text-white);
}
.timeline__icon svg { width: 1.35rem; height: 1.35rem; }
.timeline__step h3 { font-size: 1rem; line-height: 1.35; margin-bottom: 0.6rem; }
.timeline__step p { font-size: 0.95rem; color: var(--color-text-gray); line-height: 1.7; }

@media (max-width: 991px) {
  .timeline__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timeline__step { min-height: 230px; }
}

@media (max-width: 767px) {
  .timeline__shell { padding: 1.2rem 0 1.5rem; }
  .timeline__line {
    left: 1rem; right: auto; top: 0; bottom: 0; width: 2px; height: auto;
  }
  .timeline__line-fill {
    top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(180deg, rgba(0, 85, 255, 0.95), rgba(102, 163, 255, 0.95));
  }
  .timeline__truck {
    top: 0; left: 1rem; transform: translate(-50%, -50%);
    transition: top 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .timeline__steps { grid-template-columns: 1fr; gap: 1.25rem; padding-left: 1.75rem; }
  .timeline__step { min-height: auto; padding: 1.4rem 1rem; margin-left: 0.75rem; }
  .timeline__step-badge { width: 2.1rem; height: 2.1rem; }
  .timeline__icon { width: 2.8rem; height: 2.8rem; }
  .timeline__step h3 { font-size: 1rem; }
  .timeline__step p { font-size: 0.95rem; }
}

@keyframes timelineTruckPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { border-top: 1px solid var(--color-border); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }
.footer__title { font-size: 1.125rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer__link { display: block; color: var(--color-text-gray); margin-bottom: 0.75rem; transition: color 0.3s; }
.footer__link:hover { color: var(--color-text-white); }
.footer__bottom { border-top: 1px solid var(--color-border); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; color: var(--color-text-gray); font-size: 0.875rem; text-align: center; }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__legal { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 768px) { .footer__legal { flex-direction: row; gap: 1.5rem; } }

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
