:root {
  --bg: #F4F2EE;
  --surface: #FFFFFF;
  --dark: #0F1923;
  --teal: #00D4B4;
  --teal-dim: rgba(0, 212, 180, 0.12);
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --border: #E2DDD6;
  --radius: 16px;
  --radius-sm: 8px;
}

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

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

h1, h2, h3, h4 { font-family: 'Syne', system-ui, sans-serif; line-height: 1.1; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,212,180,0.12);
  border: 1px solid rgba(0,212,180,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-text h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 440px;
}

/* Dashboard mock */
.dashboard-mock {
  background: #1C2A3A;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #151F2C;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FFBD2E; }
.mock-dots span:nth-child(3) { background: #28CA41; }
.mock-title { font-size: 11px; color: rgba(255,255,255,0.35); font-family: 'DM Sans', sans-serif; }
.mock-body { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.mock-stat { display: flex; justify-content: space-between; align-items: center; }
.mock-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); font-family: 'DM Sans', sans-serif; }
.mock-stat-value { font-size: 22px; font-weight: 700; color: var(--teal); font-family: 'Syne', sans-serif; }
.mock-bar { margin-top: 4px; }
.mock-bar-label { font-size: 10px; color: rgba(255,255,255,0.3); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.mock-bar-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden; }
.mock-bar-fill { height: 100%; background: var(--teal); border-radius: 100px; }

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

/* SERVICES */
.services { padding: 96px 48px; background: var(--bg); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  max-width: 580px;
  margin-bottom: 56px;
  letter-spacing: -0.8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow 0.2s ease;
}
.service-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--teal-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* PRICING */
.pricing { padding: 96px 48px; background: var(--dark); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
  letter-spacing: -0.8px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  background: rgba(0,212,180,0.08);
  border-color: rgba(0,212,180,0.3);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.pricing-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* PROCESS */
.process { padding: 96px 48px; background: var(--bg); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 56px;
  letter-spacing: -0.8px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 32px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  opacity: 0.12;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* CLOSING */
.closing { padding: 120px 48px; background: var(--dark); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* FOOTER */
.footer { padding: 40px 48px; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-brand { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.6); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.15); }

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services, .pricing, .process, .closing { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step { padding: 0; }
  .step-connector { display: none; }
}