:root {
  --bg: #0D1117;
  --surface: #161B22;
  --surface2: #1C2128;
  --fg: #F0F6FC;
  --fg-muted: #8B949E;
  --fg-subtle: #484F58;
  --amber: #F59E0B;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --mint: #10B981;
  --mint-dim: rgba(16, 185, 129, 0.12);
  --coral: #F97316;
  --coral-dim: rgba(249, 115, 22, 0.12);
  --border: rgba(240, 246, 252, 0.08);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6) saturate(0.8);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 64px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--amber-dim);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  margin-bottom: 24px;
  width: fit-content;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #0D1117;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.hero-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-cta {
  background: var(--amber-dim);
  color: var(--amber) !important;
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px !important;
}
.nav-cta:hover { color: var(--amber) !important; opacity: 0.85; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.stat { flex: 1; }
.stat-value {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTION SHARED ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

/* ── SERVICES ── */
.services {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 72px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.service-card {
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5) saturate(0.6);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.service-card:hover .service-img {
  transform: scale(1.05);
  filter: brightness(0.6) saturate(0.8);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface) 0%, transparent 60%);
}
.service-body { padding: 28px 28px 36px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--amber-dim);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.service-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

/* ── PROCESS ── */
.process {
  padding: 120px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-header {
  max-width: 1200px;
  margin: 0 auto 72px;
}
.process-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
}
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.step {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg-subtle);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  width: 44px;
}
.step-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── WHY ── */
.why {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint-dim);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.why-point-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.why-visual { display: flex; align-items: center; justify-content: center; }
.why-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
}
.why-block-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.why-block-big {
  font-family: 'Sora', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.why-block-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.why-gap-bar {
  height: 6px;
  background: var(--surface2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.why-gap-fill {
  height: 100%;
  width: 28%;
  background: var(--amber);
  border-radius: 3px;
}
.why-gap-note {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  font-style: italic;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-vision {
  font-size: 15px;
  color: var(--fg-subtle);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); }
.footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: 14px; color: var(--fg-muted); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-subtle);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { height: 280px; }
  .hero-content { padding: 40px 24px; }
  .stats-inner { flex-direction: column; gap: 28px; }
  .stat-divider { width: 40px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .services, .process, .why, .closing { padding: 80px 24px; }
}