/* WrenchBrothers — Industrial mobile mechanic brand */

:root {
  --bg: #08080e;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --fg: #f4f4f6;
  --fg-muted: #8888a0;
  --accent: #F97316;
  --accent-dim: rgba(249,115,22,0.12);
  --accent-glow: rgba(249,115,22,0.25);
  --green: #22c55e;
  --blue: #60a5fa;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(249,115,22,0.3);
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(8,8,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ─── HERO ─────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow { margin-bottom: 20px; }

.badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero visual side */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.truck-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* ─── SERVICES ─────────────────────────── */
.services {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.service-card.featured {
  border-color: var(--border-accent);
  background: var(--accent-dim);
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.card-label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,0.15);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-accent);
}

.services-callout {
  max-width: 640px;
  margin: 48px auto 0;
}

.callout-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(249,115,22,0.06);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
}

.callout-inner p {
  font-size: 15px;
  color: var(--fg-muted);
}

.callout-inner strong { color: var(--fg); }

/* ─── HOW IT WORKS ──────────────────────── */
.how {
  padding: 100px 48px;
  background: var(--bg);
}

.how .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps {
  display: flex;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent), var(--border));
  margin-top: 24px;
  flex-shrink: 0;
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ─── CLOSING ───────────────────────────── */
.closing {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.closing-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-content p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 40px;
}

.closing-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.tag-outline {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.cta-box {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.cta-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.cta-box h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(136,136,160,0.6);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
    text-align: center;
  }

  .hero-eyebrow { justify-content: center; display: flex; }

  .hero-lede { margin: 0 auto 40px; }

  .hero-stats { justify-content: center; }

  .hero-visual { order: -1; }

  .truck-svg { max-width: 320px; }

  .services { padding: 80px 24px; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how { padding: 80px 24px; }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .step-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--border-accent), transparent);
    margin-top: 0;
  }

  .trust-bar { gap: 24px; }

  .closing { padding: 80px 24px; }

  .navbar { padding: 14px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 48px; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider { display: none; }

  .stat { padding: 0; }

  .footer { padding: 32px 24px; }
}