/* SpeedServe Landing Page */
:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EFEB;
  --fg: #0F0F0F;
  --fg-muted: #6B6B6B;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --border: #E0DED8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 700px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-proof {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Section label */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Problem */
.problem {
  background: var(--fg);
  color: #fff;
  padding: 80px 40px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-col-left .problem-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.problem-body {
  font-size: 16px;
  line-height: 1.7;
  color: #B0B0B0;
  margin-bottom: 16px;
}
.problem-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 15px;
  color: #909090;
  line-height: 1.5;
  max-width: 300px;
}

/* Services */
.services {
  padding: 100px 40px;
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 64px;
}
.services-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.service-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
  flex: 1;
}
.service-metrics {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.metric-key {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Calculator */
.calculator {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.calc-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.calc-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.calc-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.calc-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.calc-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.calc-svc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  width: 140px;
  flex-shrink: 0;
}
.calc-price {
  font-size: 14px;
  color: var(--fg-muted);
  width: 100px;
  flex-shrink: 0;
}
.calc-jobs {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.calc-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 20px;
  line-height: 1.6;
}

/* Plan */
.plan {
  padding: 100px 40px;
}
.plan-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.plan-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 56px;
}
.plan-weeks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.week {
  background: var(--bg);
  padding: 36px 32px;
}
.week-header {
  margin-bottom: 20px;
}
.week-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.week-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.week-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.week-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.week-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Closing */
.closing {
  background: var(--fg);
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  line-height: 1.7;
  color: #A8A8A8;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 15px;
  color: #707070;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-headline { font-size: 40px; }
  .hero-proof { gap: 28px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat-big { font-size: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .calc-inner { grid-template-columns: 1fr; gap: 40px; }
  .plan-weeks { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .services, .plan, .calculator { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .problem { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .hero-proof { flex-direction: column; gap: 20px; }
  .service-metrics { flex-direction: column; gap: 12px; }
}