/* QuickHaul Landing Page CSS */
:root {
  --bg: #F8F7F2;
  --bg-dark: #1C2536;
  --accent: #D4601A;
  --accent-dark: #B04E10;
  --accent-light: #FEF3E7;
  --accent-muted: rgba(212,96,26,0.08);
  --text-dark: #1C2536;
  --text-mid: #4A5568;
  --text-light: #F8F7F2;
  --text-muted: #9CA3AF;
  --border: #E5E0D8;
  --border-dark: rgba(255,255,255,0.1);
  --shadow: 0 4px 24px rgba(28,37,54,0.08);
  --shadow-lg: 0 12px 48px rgba(28,37,54,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem,6vw,4.5rem); }
h2 { font-size: clamp(2rem,4vw,3rem); }
h3 { font-size: clamp(1.2rem,2vw,1.5rem); }
p { font-size: 1.0625rem; color: var(--text-mid); line-height: 1.7; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(248,247,242,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.nav-logo-name span { color: var(--accent); }
.nav-tagline { font-size: 0.75rem; color: var(--text-muted); display: none; }
@media (min-width: 640px) { .nav-tagline { display: block; } }
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 7rem; padding-bottom: 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, var(--accent-light) 0%, #f5dcc6 50%, #e9c49a 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 12%; right: 4%;
  width: 48%; height: 82%;
  background: linear-gradient(180deg, rgba(212,96,26,0.06) 0%, rgba(212,96,26,0.15) 100%);
  border-radius: 24px;
  z-index: 1; pointer-events: none;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-muted);
  border: 1px solid rgba(212,96,26,0.15);
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--accent-dark);
}
.hero-badge-dot {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero-para {
  font-size: 1.125rem; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 2.5rem; max-width: 440px;
}
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.75rem; color: var(--text-dark);
  display: block; line-height: 1; margin-bottom: 0.25rem;
}
.hero-stat-label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.hero-divider { width: 1px; height: 48px; background: var(--border); align-self: center; }
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center; height: 100%;
}
.hero-truck-wrap { position: relative; width: 100%; max-width: 480px; }
.hero-truck-svg { width: 100%; filter: drop-shadow(0 20px 60px rgba(212,96,26,0.3)); }
.hero-glow {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 60px;
  background: radial-gradient(ellipse, rgba(212,96,26,0.2) 0%, transparent 70%);
  filter: blur(16px);
}
.hero-float-tag {
  position: absolute; background: white; border-radius: 12px;
  padding: 0.75rem 1rem; box-shadow: var(--shadow-lg);
  font-size: 0.8125rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem; white-space: nowrap;
}
.hero-float-tag svg { color: var(--accent); flex-shrink: 0; }
.hero-float-tag.top { top: 20%; right: -10px; }
.hero-float-tag.bottom { bottom: 15%; left: -20px; }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 3rem; }
  .hero::before { width: 100%; clip-path: none; top: 0; height: 40%; }
  .hero::after { display: none; }
  .hero { padding-top: 6rem; }
  .hero-visual { order: -1; }
  .hero-truck-wrap { max-width: 320px; }
  .hero-float-tag.top { right: 0; top: 5%; }
  .hero-float-tag.bottom { left: 0; bottom: 5%; }
}
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-dark); }
.section-mid { background: var(--accent-light); }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.0625rem; color: var(--text-mid); line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  position: relative; transition: box-shadow 0.3s, transform 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-number {
  font-family: var(--font-display); font-weight: 800;
  font-size: 3.5rem; color: var(--accent);
  opacity: 0.15; line-height: 1; margin-bottom: 1.25rem; letter-spacing: -0.04em;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--accent-muted); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.step-card h3 { margin-bottom: 0.625rem; }
.step-card p { font-size: 0.9375rem; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.feature-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: background 0.3s, border-color 0.3s;
}
.feature-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(212,96,26,0.3); }
.feature-icon-wrap {
  width: 48px; height: 48px; background: var(--accent); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-card h3 { color: var(--text-light); margin-bottom: 0.5rem; font-size: 1.125rem; }
.feature-card p { color: rgba(255,255,255,0.55); font-size: 0.9375rem; line-height: 1.65; }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
.cargo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.cargo-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.cargo-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.cargo-icon {
  width: 56px; height: 56px; background: var(--accent-muted); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.cargo-card h3 { font-size: 0.9375rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 0.375rem; }
.cargo-card p { font-size: 0.8125rem; color: var(--text-muted); }
@media (max-width: 768px) { .cargo-grid { grid-template-columns: repeat(2,1fr); } }
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
  background: var(--bg-dark); border-radius: var(--radius-lg);
  padding: 3.5rem 4rem; text-align: center;
  max-width: 560px; width: 100%; position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: -40%; left: -20%;
  width: 140%; height: 200px;
  background: radial-gradient(ellipse, rgba(212,96,26,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-eyebrow { color: var(--accent); }
.pricing-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem,7vw,5.5rem); color: var(--text-light);
  line-height: 1; letter-spacing: -0.04em; margin: 0.75rem 0;
}
.pricing-headline span { color: var(--accent); }
.pricing-sub { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; line-height: 1.6; }
.pricing-stats {
  display: flex; justify-content: center; gap: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark);
  margin-bottom: 2rem;
}
.pricing-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.pricing-stat-val { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--text-light); }
.pricing-note { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.manifesto { background: var(--accent); padding: 7rem 0; text-align: center; position: relative; overflow: hidden; }
.manifesto::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(0,0,0,0.03) 40px, rgba(0,0,0,0.03) 41px);
}
.manifesto .container { position: relative; z-index: 1; max-width: 800px; }
.manifesto h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem,5vw,3.5rem); color: white;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.manifesto p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; line-height: 1.75; max-width: 520px; margin: 0 auto; }
.footer { background: var(--bg-dark); padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-mark {
  width: 32px; height: 32px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.footer-logo-name { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--text-light); }
.footer-logo-name span { color: var(--accent); }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }