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

:root {
  --bg: #0c0c0c;
  --bg-2: #141414;
  --fg: #f0ede6;
  --fg-2: #a09a8f;
  --accent: #c8ff00;
  --accent-dim: rgba(200,255,0,0.12);
  --border: rgba(240,237,230,0.08);
  --card: #181818;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent) !important;
  color: #0c0c0c !important;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0c0c0c;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-btn:hover { opacity: 0.88; }
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.4;
}
.hero-geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 13px;
  color: var(--fg-2);
  background: var(--accent-dim);
  border: 1px solid rgba(200,255,0,0.2);
  padding: 8px 16px;
  border-radius: 100px;
}
.hero-geo-badge svg { color: var(--accent); flex-shrink: 0; }

/* SHARED */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 48px;
}

/* OFFER */
.offer { background: var(--bg-2); }
.offer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.offer-card {
  background: var(--card);
  padding: 40px;
  border: 1px solid var(--border);
}
.offer-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.offer-card p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* DIFFERENTIATORS */
.diff { background: var(--bg); }
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 48px;
}
.diff-list { display: flex; flex-direction: column; gap: 36px; }
.diff-item { display: flex; gap: 20px; }
.diff-marker {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}
.diff-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.diff-item p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
}
.diff-quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 32px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
}
.diff-quote blockquote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}
.diff-quote cite { font-size: 13px; color: var(--fg-2); font-style: normal; }
.diff-tools-label { font-size: 12px; color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 12px; }
.diff-tools-list { display: flex; flex-wrap: wrap; gap: 8px; }
.diff-tools-list span {
  font-size: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--fg-2);
}

/* CLIENTS */
.clients { background: var(--bg-2); }
.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}
.client-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.client-type {
  background: var(--card);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.client-type h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.client-type p { font-size: 14px; color: var(--fg-2); line-height: 1.55; }

/* PROCESS */
.process { background: var(--bg); }
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.step {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.step-body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-body p { font-size: 13px; color: var(--fg-2); line-height: 1.5; }
.step-arrow { color: var(--fg-2); flex-shrink: 0; }
.process-cta { text-align: center; }
.process-btn {
  display: inline-flex;
  background: var(--accent);
  color: #0c0c0c;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.process-btn:hover { opacity: 0.85; }

/* CLOSING */
.closing { background: var(--bg-2); }
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 600px;
  line-height: 1.65;
}

/* FOOTER */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--fg-2); margin-bottom: 4px; }
.footer-address { font-size: 13px; color: var(--fg-2); }
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--fg-2);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--fg-2); text-decoration: none; }
.footer-legal a:hover { color: var(--fg); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .client-types { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: stretch; }
  .step-arrow { display: none; }
  .offer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 20px 56px; }
  .offer-inner, .diff-inner, .clients-inner, .process-inner, .closing-inner, .footer-inner { padding: 64px 20px; }
  .client-types { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}