/* Fonts: Barlow Condensed (industrial/automotive headings) + DM Sans (clean body) */

/* ── Variables ── */
:root {
  --bg:        #080b10;
  --bg-alt:    #0d1117;
  --bg-card:   #111827;
  --fg:        #f0ece4;
  --fg-muted:  #8b949e;
  --accent:    #f59e0b;
  --accent-dim:#b4720a;
  --border:    rgba(240,236,228,0.08);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Reset & Base ── */
*, *::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.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography helpers ── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8,11,16,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-ambient-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pill {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1;
}
.hero-stat-block {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--fg);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.15rem;
}
.hero-service-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* ── PROOF ── */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.proof-quote { position: relative; }
.quote-mark {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -1rem;
}
blockquote {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  font-style: normal;
}
cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-style: normal;
}
.proof-context {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.proof-stat { padding-left: 1.25rem; border-left: 3px solid var(--accent); }
.proof-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}
.proof-stat-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 0.35rem;
  line-height: 1.5;
}

/* ── SERVICES ── */
.services {
  padding: 7rem 2rem;
  background: var(--bg);
}
.services-header { max-width: 1200px; margin: 0 auto 4rem; }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
}
.service-card--featured {
  background: var(--bg-card);
  border: 1px solid rgba(245,158,11,0.2);
}
.service-badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  position: absolute;
  top: -1px;
  left: -1px;
}
.service-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.service-price {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.service-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}
.services-note {
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ── PROCESS ── */
.process {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.process-header { max-width: 1200px; margin: 0 auto 4rem; }
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 2rem;
  border-left: 1px solid var(--border);
}
.step:first-child { border-left: none; padding-left: 0; }
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  align-self: center;
}
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(245,158,11,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── DIFFERENTIATORS ── */
.diff {
  padding: 7rem 2rem;
  background: var(--bg);
}
.diff-header { max-width: 1200px; margin: 0 auto 4rem; }
.diff-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.diff-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.diff-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.diff-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 2rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.closing-service-note {
  font-size: 0.8rem;
  color: rgba(139,148,158,0.6);
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.footer-logo-accent { color: var(--accent); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.footer-info { text-align: right; }
.footer-service-area {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.footer-note { font-size: 0.75rem; color: rgba(139,148,158,0.5); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-visual { position: relative; transform: none; width: 100%; margin-top: 3rem; }
  .hero { flex-direction: column; padding-top: 7rem; }
  .proof-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-connector { width: 1px; height: 40px; background: linear-gradient(180deg, var(--border), var(--accent), var(--border)); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-info { text-align: left; }
}
@media (max-width: 600px) {
  .diff-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 3rem; }
}