@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ─── TOKENS ─── */
:root {
  --purple:      #ae32fe;
  --purple-dim:  rgba(174,50,254,0.10);
  --purple-mid:  rgba(174,50,254,0.18);
  --dark:        #0a0a0a;
  --dark-card:   #161616;
  --dark-border: rgba(255,255,255,0.10);
  --dark-muted:  rgba(255,255,255,0.55);
  --light:       #ffffff;
  --light-soft:  #f5f0ff;
  --light-mid:   #ede6fa;
  --light-text:  #1a1a2e;
  --light-muted: #6b6880;
  --light-border:#e0d6f5;
  --card-bg:     #ffffff;
  --card-border: #e8e0f5;
  --white:       #ffffff;
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      10px;
  --radius-lg:   16px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  background: var(--light);
  color: var(--light-text);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITY ─── */
.container  { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--purple); color: var(--white); box-shadow: 0 4px 18px rgba(174,50,254,0.35); }
.btn-primary:hover { background: #c84fff; box-shadow: 0 6px 28px rgba(174,50,254,0.55); }

/* Ghost on dark background */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: var(--purple); color: var(--white); border-color: var(--purple); box-shadow: 0 4px 18px rgba(174,50,254,0.4); }

/* Ghost on light background */
.btn-ghost-dark {
  background: transparent;
  color: var(--light-text);
  border: 1px solid var(--light-border);
}
.btn-ghost-dark:hover { background: var(--purple); color: var(--white); border-color: var(--purple); box-shadow: 0 4px 18px rgba(174,50,254,0.3); }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark-muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .nav-cta {
  background: var(--purple);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 500;
}
.nav-links .nav-cta:hover { opacity: 0.88; color: var(--white); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
  padding: 64px 0 52px;
}
.page-header .tag { color: var(--purple); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
}
.page-header p { font-size: 16px; color: var(--dark-muted); max-width: 520px; line-height: 1.7; }

/* ─── STATS BAR ─── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); background: var(--purple); }
.stat-item { padding: 22px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 30px; letter-spacing: 1px; color: var(--white); }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.78); margin-top: 2px; }

/* ─── LIGHT CARDS ─── */
.lcard {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.lcard:hover { border-color: rgba(174,50,254,0.35); box-shadow: 0 4px 24px rgba(174,50,254,0.08); }
.lcard h3 { font-family: var(--font-display); font-size: 22px; color: var(--light-text); margin-bottom: 8px; }
.lcard p  { font-size: 14px; color: var(--light-muted); line-height: 1.7; }
.lcard-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--purple-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

/* ─── DARK CARDS ─── */
.dcard {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s;
}
.dcard:hover { border-color: rgba(174,50,254,0.4); }
.dcard h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 8px; }
.dcard p  { font-size: 14px; color: var(--dark-muted); line-height: 1.7; }

/* ─── TESTIMONIAL CARDS ─── */
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testi-stars  { color: var(--purple); font-size: 14px; margin-bottom: 12px; }
.testi-quote  { font-size: 14px; color: var(--light-muted); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testi-author { font-size: 13px; font-weight: 500; color: var(--light-text); }
.testi-role   { font-size: 11px; color: var(--light-muted); }

/* ─── FOOTER ─── */
.footer { background: var(--dark); border-top: 1px solid var(--dark-border); padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: var(--dark-muted); line-height: 1.7; max-width: 260px; margin-top: 12px; }
.footer-col h4 {
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark-muted); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .6s ease both; }
.fade-up-2 { animation: fadeUp .6s .15s ease both; }
.fade-up-3 { animation: fadeUp .6s .3s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
}
