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

:root {
  --blue: #34a853;
  --bg: #0d0f14;
  --bg2: rgba(255,255,255,0.03);
  --text: #e8eaf0;
  --muted: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* NAV */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 48px; border-bottom: 0.5px solid var(--border); position: sticky; top: 0; background: var(--bg); z-index: 100; }
.logo { font-size: 18px; font-weight: 500; color: #fff; text-decoration: none; }
.logo span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--blue); color: #fff; border: none; border-radius: 8px; padding: 9px 20px; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; }

/* HERO */
.hero { padding: 90px 48px 80px; text-align: center; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(52,168,83,0.1); border: 0.5px solid rgba(52,168,83,0.3); border-radius: 20px; padding: 5px 14px; font-size: 12px; color: var(--blue); margin-bottom: 28px; }
.hero h1 { font-size: 48px; font-weight: 500; line-height: 1.15; letter-spacing: -0.8px; color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 12px; justify-content: center; }

/* BUTTONS */
.btn-primary { background: var(--blue); color: #fff; border: none; border-radius: 8px; padding: 13px 28px; font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
.btn-primary:hover { opacity: 0.88; }
.btn-secondary { background: transparent; color: rgba(255,255,255,0.75); border: 0.5px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 13px 28px; font-size: 15px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.4); }

/* STATS */
.stats { display: flex; justify-content: center; gap: 48px; padding: 40px 48px; border-top: 0.5px solid rgba(255,255,255,0.06); border-bottom: 0.5px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-size: 28px; font-weight: 500; color: #fff; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* SECTION */
.section { padding: 72px 48px; }
.section-label { font-size: 12px; color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: 32px; font-weight: 500; color: #fff; margin-bottom: 10px; letter-spacing: -0.3px; }
.section-sub { font-size: 16px; color: var(--muted); margin-bottom: 44px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: border-color 0.2s; }
.service-card:hover { border-color: rgba(52,168,83,0.3); }
.svc-icon { width: 40px; height: 40px; background: rgba(52,168,83,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 20px; height: 20px; }
.svc-title { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* PROCESS */
.process-section { padding: 72px 48px; background: rgba(255,255,255,0.015); border-top: 0.5px solid rgba(255,255,255,0.06); }
.process-inner { max-width: 900px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.step { position: relative; }
.step-num { font-size: 12px; color: var(--blue); font-weight: 500; margin-bottom: 12px; }
.step-title { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.step-line { position: absolute; top: 6px; right: -12px; width: 24px; height: 0.5px; background: rgba(52,168,83,0.3); }

/* CTA */
.cta-section { padding: 72px 48px; text-align: center; }
.cta-box { background: rgba(52,168,83,0.06); border: 0.5px solid rgba(52,168,83,0.2); border-radius: 16px; padding: 56px 40px; max-width: 640px; margin: 0 auto; }
.cta-box h2 { font-size: 30px; font-weight: 500; color: #fff; margin-bottom: 14px; letter-spacing: -0.3px; }
.cta-box p { font-size: 16px; color: var(--muted); margin-bottom: 28px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 16px; margin-bottom: 0 !important; }

/* FOOTER */
.footer { padding: 28px 48px; border-top: 0.5px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.footer p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 50px; }
  .hero h1 { font-size: 32px; }
  .stats { gap: 24px; padding: 30px 20px; }
  .section { padding: 48px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step-line { display: none; }
  .process-section { padding: 48px 20px; }
  .cta-section { padding: 48px 20px; }
  .cta-box { padding: 36px 24px; }
  .footer { padding: 20px; flex-direction: column; gap: 12px; }
}
