:root {
  --bg: #0C0C0A;
  --fg: #F4EFE6;
  --accent: #E8561A;
  --accent-light: rgba(232, 86, 26, 0.15);
  --muted: #8A877D;
  --surface: #151512;
  --surface-2: #1E1E1A;
  --border: rgba(244, 239, 230, 0.1);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

* { 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;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(12,12,10,0.95) 0%, rgba(12,12,10,0) 100%);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: flex; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.nav-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--accent);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: #d44e1a; transform: translateY(-1px); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--accent);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 48px;
}
.hero-cta:hover { background: #d44e1a; transform: translateY(-1px); }
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(4px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 12, 10, 1) 0%,
    rgba(12, 12, 10, 0.85) 40%,
    rgba(12, 12, 10, 0.3) 70%,
    rgba(12, 12, 10, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-lede {
  font-size: 18px;
  color: rgba(244, 239, 230, 0.7);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── SECTION SHARED ── */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 16px;
  text-transform: uppercase;
  max-width: 640px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 56px;
}

/* ── SERVICES ── */
.services {
  padding: 96px 48px;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--surface);
  padding: 40px 36px;
}
.service-icon {
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.service-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: rgba(244, 239, 230, 0.6);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ── PROCESS ── */
.process {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner {
  padding: 96px 48px;
}
.section-heading.light { color: var(--fg); }
.section-sub.light { color: var(--muted); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border);
}
.step {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--border);
  padding-right: 28px;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── DIFFERENCE ── */
.difference {
  padding: 96px 48px;
  background: var(--bg);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
.diff-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.diff-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.diff-list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.diff-old li::before { content: '—'; position: absolute; left: 0; color: var(--muted); }
.diff-old li { color: rgba(244, 239, 230, 0.45); }
.diff-new li::before { content: '+'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.diff-new li { color: var(--fg); }

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.closing p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 24px !important;
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer .brand-name {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-bottom {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .nav-link { display: none; }
  .hero { padding: 0 24px 60px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-inner { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step { border-right: none; padding-right: 0; }
  .difference { padding: 64px 24px; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
}