:root {
  --bg: #f8f7f4;
  --bg-alt: #ffffff;
  --fg: #1a1a2e;
  --fg-muted: #6b6b7a;
  --accent: #ff6b4a;
  --accent-dark: #e55a3a;
  --surface: #ffffff;
  --border: #e8e7e2;
  --nav-h: 64px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.3px;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 32px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 107, 74, 0.06) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(26, 26, 46, 0.015) 40px,
      rgba(26, 26, 46, 0.015) 41px
    );
  pointer-events: none;
}
.hero-content {
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Sections */
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.8px;
}

/* Services */
.services {
  padding: 100px 32px;
  background: var(--bg-alt);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Process */
.process {
  padding: 100px 32px;
}
.process-inner {
  max-width: 900px;
  margin: 0 auto;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  min-width: 36px;
  padding-top: 4px;
}
.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}

/* Industries */
.industries {
  padding: 100px 32px;
  background: var(--fg);
  color: white;
}
.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.industries .section-title { color: white; }
.industries-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  max-width: 520px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.industry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
}
.industry-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}
.industry-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Why */
.why {
  padding: 100px 32px;
}
.why-inner {
  max-width: 680px;
  margin: 0 auto;
}
.why-headline {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}
.why-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
}
.why-bullet {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Closing */
.closing {
  padding: 100px 32px;
  background: var(--accent);
}
.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 48px 32px;
  background: var(--fg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 640px) {
  .hero { padding: calc(var(--nav-h) + 60px) 20px 72px; }
  .services, .process, .industries, .why, .closing, .footer { padding: 72px 20px; }
  .services-inner, .process-inner, .industries-inner, .why-inner, .footer-inner { max-width: 100%; }
  .step { gap: 20px; padding: 28px 0; }
  .hero-sub { font-size: 16px; }
}