:root {
  --bg: #F8F6F1;
  --fg: #1A1A1A;
  --accent: #E8633A;
  --accent-light: #FFF0EB;
  --muted: #7A7A7A;
  --border: #E2DDD6;
  --white: #FFFFFF;
}

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

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

/* ── NAV ── */
.nav {
  padding: 22px 48px;
  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: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  padding: 96px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-accent { color: var(--accent); }
.hero-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero-stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; max-width: 130px; }
.hero-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services {
  padding: 80px 48px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--border); }
.service-item:nth-child(even) { padding-left: 40px; }
.service-item:nth-last-child(-n+2) { border-bottom: none; }
.service-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-text strong { font-size: 16px; font-weight: 600; color: var(--fg); }
.service-text span { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* ── PROCESS ── */
.process { padding: 80px 48px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 48px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process-step { display: flex; flex-direction: column; gap: 16px; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.25;
  letter-spacing: -0.04em;
  line-height: 1;
}
.step-body strong { display: block; font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--fg); }
.step-body span { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── RESULTS ── */
.results {
  padding: 80px 48px;
  background: var(--fg);
  color: var(--white);
}
.results-inner { max-width: 1100px; margin: 0 auto; }
.results-headline-wrap { margin-bottom: 56px; }
.results-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.result-item {
  padding: 32px 32px 32px 0;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 32px;
}
.result-item:nth-child(3n+1) { border-left: none; padding-left: 0; }
.result-item:nth-child(3n+1):not(:first-child) {  }
.result-vertical {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,99,58,0.12);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.result-desc { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.65); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 48px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-attr { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  background: var(--accent);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-copy { font-size: 14px; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav, .hero, .services, .process, .results, .testimonials, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-top: 60px; padding-bottom: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .service-item:nth-child(even) { padding-left: 0; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-item { border-left: none; padding-left: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}