*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #6d28d9;
  --purple-light: #7c3aed;
  --purple-soft: #f5f3ff;
  --purple-border: #ede9fe;
  --purple-mid: #ddd6fe;
  --black: #0f0e0e;
  --white: #ffffff;
  --off: #faf9ff;
  --gray-100: #f3f0ff;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --blue-cal: #006bff;
  --radius-pill: 99px;
  --radius-card: 16px;
  --radius-sm: 10px;
  --max: 760px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--white); color: var(--black); -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.65; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--purple-border); padding: 0 32px; height: 62px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; text-decoration: none; color: var(--black); }
.nav-logo span { color: var(--purple-light); }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-size: 14px; color: var(--gray-500); text-decoration: none; font-weight: 450; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-btn { font-size: 12px; font-weight: 600; color: var(--gray-400); background: none; border: none; cursor: pointer; font-family: inherit; padding: 4px 8px; border-radius: 6px; transition: all 0.15s; }
.lang-btn:hover { color: var(--black); background: var(--gray-100); }
.lang-btn.active { color: var(--purple-light); font-weight: 700; }
.btn-nav { background: var(--purple-light); color: #fff; border: none; padding: 8px 18px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none; transition: opacity 0.15s; display: inline-block; }
.btn-nav:hover { opacity: 0.85; }

/* BUTTONS */
.btn-primary { background: var(--purple-light); color: #fff; border: none; padding: 13px 28px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 500; cursor: pointer; font-family: inherit; transition: opacity 0.15s; text-decoration: none; display: inline-block; }
.btn-primary:hover { opacity: 0.85; }
.btn-cal { background: var(--blue-cal); color: #fff; border: none; padding: 13px 24px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 500; cursor: pointer; font-family: inherit; transition: opacity 0.15s; text-decoration: none; display: inline-block; }
.btn-cal:hover { opacity: 0.85; }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--purple-border); padding: 12px 24px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; transition: border-color 0.15s; }
.btn-outline:hover { border-color: var(--purple-light); }

/* PAGE HERO */
.page-hero { padding: 64px 32px 48px; max-width: var(--max); margin: 0 auto; border-bottom: 1px solid var(--purple-border); }
.page-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: var(--purple-soft); color: var(--purple); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-pill); border: 1px solid var(--purple-border); margin-bottom: 22px; }
.page-eyebrow::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--purple-light); }
.page-hero h1 { font-size: clamp(26px, 5vw, 36px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.15; }
.page-hero h1 em { font-style: normal; color: var(--purple-light); }
.page-hero p { font-size: 16px; color: var(--gray-500); max-width: 480px; line-height: 1.7; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* PAGE BODY */
.page-body { padding: 56px 32px 80px; max-width: var(--max); margin: 0 auto; }
.page-body h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin: 44px 0 14px; color: var(--black); }
.page-body h2:first-child { margin-top: 0; }
.page-body p { font-size: 15px; color: var(--gray-500); line-height: 1.75; margin-bottom: 16px; }
.page-body ul { padding-left: 20px; margin-bottom: 16px; }
.page-body ul li { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 8px; }
.page-body strong { color: var(--black); font-weight: 600; }

/* STEPS */
.steps-list { display: flex; flex-direction: column; gap: 0; margin-top: 28px; }
.step-row { display: flex; gap: 20px; padding-bottom: 32px; }
.step-row:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; }
.step-num-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--purple-light); color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-line { width: 1px; flex: 1; background: var(--purple-border); margin-top: 8px; }
.step-row:last-child .step-line { display: none; }
.step-body { padding-top: 5px; flex: 1; }
.step-title { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.step-badge { display: inline-block; margin-top: 10px; padding: 3px 12px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 600; background: #d4f5e9; color: #0e7c5a; }

/* PHASE BLOCKS (how page) */
.phase-block { background: var(--off); border: 1px solid var(--purple-border); border-radius: var(--radius-card); padding: 20px 22px; margin-bottom: 12px; }
.phase-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.phase-title { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.phase-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ROLE CARDS (how page) */
.role-cards { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.role-card { border: 1.5px solid var(--purple-border); border-radius: var(--radius-card); padding: 22px; background: var(--white); }
.role-card-header { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.role-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.role-card-name { font-size: 15px; font-weight: 600; color: var(--black); }
.role-card-sub { font-size: 12px; color: var(--gray-400); margin-top: 1px; }
.role-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.role-chip { display: flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: var(--radius-pill); background: var(--off); border: 1px solid var(--purple-border); font-size: 11px; font-weight: 500; color: var(--gray-600); }
.role-chip img { width: 13px; height: 13px; object-fit: contain; border-radius: 2px; }

/* CTA BOX */
.cta-box { background: var(--purple-soft); border: 1px solid var(--purple-border); border-radius: var(--radius-card); padding: 28px 32px; margin-top: 48px; }
.cta-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.cta-box p { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }
.cta-box-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* DIVIDER */
hr.divider { border: none; border-top: 1px solid var(--purple-border); margin: 0 32px; }

/* FOOTER */
footer { border-top: 1px solid var(--purple-border); padding: 28px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--gray-400); text-decoration: none; }
.footer-links a:hover { color: var(--black); }
.footer-copy { font-size: 12px; color: #d1d5db; }

@media (max-width: 560px) {
  .nav-links { display: none; }
  .page-hero-actions { flex-direction: column; }
}
