/* ============================================
   Simple Car Shipping — Brand CSS
   ============================================ */

:root {
  --black: #050A12;
  --black-2: #0A1220;
  --black-3: #0F1A2E;
  --navy: #0B1628;
  --electric: #009DFF;
  --cyan: #00E5FF;
  --white: #FFFFFF;
  --gray: #AAB4C0;
  --gray-2: #6B7785;
  --gray-3: #2A3447;
  --border: rgba(170, 180, 192, 0.12);
  --border-bright: rgba(0, 229, 255, 0.25);
  --glow: 0 0 40px rgba(0, 157, 255, 0.35);
  --glow-soft: 0 0 60px rgba(0, 229, 255, 0.15);

  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 157, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(0, 229, 255, 0.08), transparent);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }

.section-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.title-accent {
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .section-sub { margin: 0 auto; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(0, 157, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 157, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: var(--border-bright);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--cyan);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-bright);
}

/* ============================================
   Announcement Bar
   ============================================ */
.announce {
  background: linear-gradient(90deg, rgba(0, 157, 255, 0.1), rgba(0, 229, 255, 0.05), rgba(0, 157, 255, 0.1));
  border-bottom: 1px solid var(--border-bright);
  padding: 10px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 100;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray);
}
.announce-call {
  color: var(--cyan);
  font-weight: 500;
  margin-left: auto;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.brand-logo { height: 44px; width: auto; filter: brightness(1.05); }

.nav-main {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-main a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
.nav-main a:hover { color: var(--white); }
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}
.nav-main a:hover::after { width: 100%; }

.header-cta { display: flex; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  gap: 20px;
}
.mobile-menu a { color: var(--gray); font-weight: 500; font-size: 16px; }
.mobile-menu.open { display: flex; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  min-height: 90vh;
}

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

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.route-path {
  stroke-dasharray: 8 4;
  animation: dash 12s linear infinite;
}
.route-path-2 { animation-duration: 20s; animation-direction: reverse; }
@keyframes dash {
  to { stroke-dashoffset: -200; }
}

.route-pin {
  filter: drop-shadow(0 0 8px var(--cyan));
  animation: pinPulse 2s ease-in-out infinite;
}
.route-pin:nth-child(2) { animation-delay: 0.5s; }
.route-pin:nth-child(3) { animation-delay: 1s; }
@keyframes pinPulse {
  0%, 100% { opacity: 0.5; r: 3; }
  50% { opacity: 1; r: 5; }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 157, 255, 0.3), transparent 70%);
  top: -10%;
  left: -10%;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2), transparent 70%);
  bottom: 10%;
  right: -5%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}
.check {
  color: var(--cyan);
  font-weight: 700;
  font-size: 14px;
}

/* Hero Quote Card */
.hero-quote-card {
  background: linear-gradient(180deg, rgba(15, 26, 46, 0.8), rgba(10, 18, 32, 0.9));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.hero-quote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.4), transparent 50%, rgba(0, 157, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-header { margin-bottom: 24px; }
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-bright);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.card-header h3 { font-size: 1.5rem; margin-bottom: 4px; }
.card-header p { color: var(--gray); font-size: 14px; }

/* ============================================
   Forms
   ============================================ */
.quote-form { display: flex; flex-direction: column; gap: 14px; }

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}
.form-row-3 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); }

.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  min-width: 0;
  background: rgba(5, 10, 18, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group select { cursor: pointer; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--electric);
}

.form-microcopy {
  font-size: 11px;
  color: var(--gray-2);
  text-align: center;
  margin-top: 4px;
}

.quote-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--glow);
}
.quote-success h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.quote-success p {
  color: var(--gray);
  margin-bottom: 20px;
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gray);
  font-weight: 500;
}
.marquee-dot { color: var(--cyan); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 100px 0; position: relative; }

.section-cta { text-align: center; margin-top: 60px; }

/* ============================================
   How It Works
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.step {
  background: linear-gradient(180deg, rgba(15, 26, 46, 0.6), rgba(10, 18, 32, 0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}
.step:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--glow-soft);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 24px;
  font-weight: 500;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.15), rgba(0, 229, 255, 0.05));
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 24px;
}
.step-icon svg { width: 24px; height: 24px; }

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.step p {
  color: var(--gray);
  font-size: 15px;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-bright), transparent, var(--border-bright));
  align-self: center;
  position: relative;
}
.step-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
}

/* ============================================
   Services
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: linear-gradient(180deg, rgba(15, 26, 46, 0.6), rgba(10, 18, 32, 0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--glow-soft);
}

.service-card-feature {
  background: linear-gradient(180deg, rgba(0, 157, 255, 0.08), rgba(0, 229, 255, 0.03));
  border-color: var(--border-bright);
}

.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--black);
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--cyan);
  font-weight: 500;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-link:hover { color: var(--white); }

.service-card-cta {
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.2), rgba(0, 229, 255, 0.08));
  border-color: var(--cyan);
  text-align: center;
  justify-content: center;
}
.service-card-cta h3 { font-size: 1.125rem; margin-bottom: 8px; }
.service-card-cta p { font-size: 13px; }

/* ============================================
   Why
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-intro .section-eyebrow,
.why-intro .section-title { text-align: left; }
.why-intro .section-sub { text-align: left; margin: 0 0 32px; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: rgba(15, 26, 46, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--border-bright);
  background: rgba(0, 229, 255, 0.04);
}
.why-card:nth-child(2n) { transform: translateY(20px); }

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.2), rgba(0, 229, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 16px;
}
.why-icon svg { width: 20px; height: 20px; }

.why-card h4 { font-size: 1.125rem; margin-bottom: 8px; font-family: var(--font-display); }
.why-card p { color: var(--gray); font-size: 14px; }

/* ============================================
   Stats
   ============================================ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  background:
    linear-gradient(90deg, transparent, rgba(0, 157, 255, 0.04), transparent);
}

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

.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-num span {
  font-size: 0.4em;
  color: var(--gray);
  -webkit-text-fill-color: var(--gray);
  margin-left: 4px;
  font-weight: 500;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 12px;
}

/* ============================================
   Reviews
   ============================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: linear-gradient(180deg, rgba(15, 26, 46, 0.6), rgba(10, 18, 32, 0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.review-card-feature {
  background: linear-gradient(180deg, rgba(0, 157, 255, 0.08), rgba(0, 229, 255, 0.03));
  border-color: var(--border-bright);
  box-shadow: var(--glow-soft);
}

.stars {
  color: var(--cyan);
  letter-spacing: 4px;
  font-size: 16px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.5));
}

.review-text {
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.reviewer-name { font-weight: 600; font-size: 14px; }
.reviewer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gray);
}

.review-card-cta {
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.15), rgba(0, 229, 255, 0.05));
  border-color: var(--border-bright);
  text-align: center;
  justify-content: center;
  align-items: center;
}
.review-card-cta h4 { font-size: 1.25rem; margin-bottom: 8px; font-family: var(--font-display); }
.review-card-cta p { color: var(--gray); margin-bottom: 20px; font-size: 14px; }

/* ============================================
   Trust / Mock
   ============================================ */
.trust-card {
  background: linear-gradient(135deg, var(--black-3), var(--black-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(40px);
}

.trust-content { position: relative; }
.trust-content .section-eyebrow { margin-bottom: 16px; }
.trust-content .section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.trust-content > p { color: var(--gray); margin-bottom: 24px; }

.trust-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-visual { position: relative; }

.trust-mock {
  background: rgba(5, 10, 18, 0.85);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow);
}

.trust-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.trust-mock-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.trust-mock-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-bright);
}

.trust-mock-route { margin-bottom: 24px; }

.route-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  flex-shrink: 0;
}
.route-pin-end {
  background: var(--electric);
  box-shadow: 0 0 12px var(--electric);
}

.route-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gray);
}
.route-place { font-weight: 600; font-size: 14px; }

.route-line {
  margin-left: 6px;
  height: 32px;
  border-left: 1px dashed var(--border-bright);
  position: relative;
  margin: 4px 0 4px 6px;
}

.trust-mock-rows { display: flex; flex-direction: column; gap: 10px; }
.mock-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
}
.mock-row span { color: var(--gray); }
.mock-row strong { color: var(--white); }

/* ============================================
   Vehicles
   ============================================ */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.vehicle-tag {
  background: rgba(15, 26, 46, 0.5);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.2s;
}
.vehicle-tag:hover {
  background: rgba(0, 229, 255, 0.06);
  border-color: var(--border-bright);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   FAQ
   ============================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-side { position: sticky; top: 100px; }
.faq-side .section-eyebrow,
.faq-side .section-title { text-align: left; }
.faq-side .section-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 16px; }
.faq-side p { color: var(--gray); margin-bottom: 24px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: rgba(15, 26, 46, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--border-bright); }
.faq-item[open] {
  background: rgba(0, 229, 255, 0.04);
  border-color: var(--border-bright);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-bright);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cyan);
  transition: transform 0.3s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: rgba(0, 229, 255, 0.1); }

.faq-item p {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   Contact / Final CTA
   ============================================ */
.contact-card {
  background: linear-gradient(135deg, var(--black-3), var(--black-2));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow);
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact-content .section-title { margin-bottom: 16px; }
.contact-content > p { color: var(--gray); font-size: 1.125rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

.contact-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cyan);
}
.contact-value {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
}
a.contact-value:hover { color: var(--cyan); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

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

.footer-logo { height: 50px; margin-bottom: 20px; }

.footer-brand p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.footer-contact a {
  color: var(--cyan);
  font-weight: 500;
  font-family: var(--font-mono);
}
.footer-contact span { color: var(--gray-2); }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray-2);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ============================================
   Mobile Sticky
   ============================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 12px;
  gap: 8px;
  background: rgba(5, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-bright);
}
.mobile-sticky a {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-sticky-call {
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  border: 1px solid var(--border-bright);
}
.mobile-sticky-quote {
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  color: var(--black);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-top: 40px; padding-bottom: 80px; }
  .hero-content, .hero-quote-card { min-width: 0; max-width: 100%; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .trust-card { grid-template-columns: minmax(0, 1fr); gap: 40px; padding: 40px; }
  .faq-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .faq-side { position: relative; top: 0; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
  .nav-main { display: none; }
  .header-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .step-connector { width: 1px; height: 40px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 24px; min-height: auto; }
  .hero-inner { padding-top: 24px; padding-bottom: 60px; }
  .hero-title { font-size: 2.25rem; line-height: 1.05; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .section-head { margin-bottom: 40px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .service-grid { grid-template-columns: minmax(0, 1fr); }
  .review-grid { grid-template-columns: minmax(0, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-cards { grid-template-columns: minmax(0, 1fr); }
  .why-card:nth-child(2n) { transform: none; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-card { padding: 40px 20px; }
  .contact-content > p { font-size: 1rem; }
  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn { width: 100%; }
  .contact-info { grid-template-columns: minmax(0, 1fr); gap: 20px; text-align: center; }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .form-row-3 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); gap: 8px; }
  .hero-quote-card { padding: 22px; }
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    font-size: 12px;
  }
  .announce-call { display: none; }
  .announce-inner { font-size: 11px; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 80px; }
  .header-inner { padding: 12px 20px; gap: 12px; }
  .container { padding: 0 20px; }
  .brand-logo { height: 36px; }
  .header-cta .btn-ghost { display: none; }
  .header-cta .btn-primary { padding: 10px 14px; font-size: 13px; }
  .trust-card { padding: 32px 24px; }
  .trust-content .section-title { font-size: 1.5rem; }
  .step { padding: 28px; }
  .service-card { padding: 24px; }
  .review-card { padding: 24px; }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item p { padding: 0 18px 18px; }
  .stat-num { font-size: 2.5rem; }
}

@media (max-width: 380px) {
  .form-row-3 { grid-template-columns: minmax(0, 1fr); }
  .hero-title { font-size: 2rem; }
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
