:root {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --fg: #f0ece4;
  --fg-muted: #8a8680;
  --accent: #ff8c00;
  --accent-dim: rgba(255, 140, 0, 0.12);
  --border: #242424;
  --radius: 4px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 6vw 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,140,0,0.04) 100%);
  pointer-events: none;
}
.hero-inner { max-width: 640px; position: relative; z-index: 1; }
.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(56px, 8vw, 96px);
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.0;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero-services span {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}
.dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* SERVICES */
.services { padding: 80px 6vw; background: var(--bg-secondary); }
.services-header { margin-bottom: 48px; }
.services-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--fg);
  margin-bottom: 12px;
}
.services-header p { font-size: 16px; color: var(--fg-muted); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--accent); }
.service-icon { margin-bottom: 16px; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--fg);
}
.service-card p { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.5; }
.service-card ul { list-style: none; }
.service-card ul li {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
}

/* DIFFERENTIATORS */
.diff { padding: 80px 6vw; background: var(--bg); }
.diff-header { margin-bottom: 48px; }
.diff-header h2 { font-size: clamp(36px, 5vw, 56px); color: var(--fg); margin-bottom: 12px; }
.diff-header p { font-size: 16px; color: var(--fg-muted); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.diff-item { background: var(--bg-secondary); padding: 32px 28px; }
.diff-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}
.diff-item h3 {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.diff-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* PROCESS */
.process { padding: 80px 6vw; background: var(--bg-secondary); }
.process-header { margin-bottom: 48px; }
.process-header h2 { font-size: clamp(36px, 5vw, 56px); color: var(--fg); margin-bottom: 12px; }
.process-header p { font-size: 16px; color: var(--fg-muted); }
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}
.step {
  flex: 1;
  min-width: 200px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-right: -1px;
  background: var(--bg-card);
}
.step-connector {
  width: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--border);
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.step h3 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.step p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing {
  padding: 120px 6vw;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.closing-headline {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.05;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-services {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.closing-services span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 2px;
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 6vw 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-logo-accent { color: var(--accent); }
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-info p { font-size: 13px; color: var(--fg-muted); }
.footer-info p + p { margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p { font-size: 12px; color: var(--fg-muted); opacity: 0.5; }

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 60px 6vw 48px; }
  .services, .diff, .process, .closing { padding: 60px 6vw; }
  .hero::before { display: none; }
  .process-steps { flex-direction: column; }
  .step-connector { width: auto; height: 20px; }
  .step-connector::after { width: 1px; height: 100%; margin: 0 auto; }
  .footer-inner { flex-direction: column; }
}