/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --indigo:    #6366f1;
  --indigo-d:  #4f46e5;
  --indigo-l:  #e0e7ff;
  --violet:    #8b5cf6;
  --amber:     #f59e0b;
  --emerald:   #10b981;
  --rose:      #f43f5e;
  --sky:       #0ea5e9;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-700:  #334155;
  --gray-900:  #0f172a;
  --white:     #ffffff;
  --radius:    16px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

h2 { font-size: clamp(28px, 4vw, 42px); color: var(--gray-900); }
h3 { font-size: 20px; font-weight: 700; }

p { color: var(--gray-500); line-height: 1.7; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; }

.section { padding: 96px 0; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--indigo);
  color: #fff;
}
.btn-primary:hover { background: var(--indigo-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,102,241,.35); }
.btn-ghost { color: var(--gray-700); background: transparent; }
.btn-ghost:hover { background: var(--gray-100); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
}
.btn-outline:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }

/* ─── Nav ───────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-900);
  flex-shrink: 0;
}
.logo-icon { font-size: 22px; color: var(--indigo); }
.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  transition: all .15s;
}
.nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }
.nav-cta { display: flex; gap: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: .2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-100);
}
.mobile-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--gray-700);
}
.mobile-menu a:hover { background: var(--gray-100); }
.mobile-menu .btn-primary { text-align: center; justify-content: center; margin-top: 8px; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fafafe 0%, #fff 60%);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 400px;
  background: rgba(99,102,241,.12);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 400px;
  background: rgba(139,92,246,.1);
  top: 0; right: -80px;
}
.hero-inner {
  position: relative;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 64px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo-l);
  color: var(--indigo-d);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -2px;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--gray-500);
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-400);
  flex-wrap: wrap;
}
.hero-trust strong { color: var(--gray-700); }
.hero-trust span { display: flex; align-items: center; gap: 4px; }
.trust-sep { color: var(--gray-200); }

/* ─── Dashboard Mockup ──────────────────────────────────────── */
.hero-mockup-wrap {
  padding-bottom: 0;
}
.dashboard-preview {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 60px rgba(99,102,241,.12), 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden;
}
.dp-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.dp-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dp-dot.red { background: #ff5f56; }
.dp-dot.yellow { background: #ffbd2e; }
.dp-dot.green { background: #27c93f; }
.dp-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  margin-left: 8px;
}
.dp-body {
  display: flex;
  min-height: 340px;
}
.dp-sidebar {
  width: 160px;
  background: var(--gray-50);
  border-right: 1px solid var(--gray-100);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.dp-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: .15s;
}
.dp-nav-item:hover, .dp-nav-item.active {
  background: var(--white);
  color: var(--indigo);
  box-shadow: var(--shadow);
}
.dp-content {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
  overflow: hidden;
}
.dp-stats-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dp-stat {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--gray-100);
}
.dp-stat-label { font-size: 11px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.dp-stat-value { font-size: 28px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; margin: 4px 0 2px; }
.dp-stat-value.indigo { color: var(--indigo); }
.dp-stat-value.green { color: var(--emerald); }
.dp-stat-value.amber { color: var(--amber); }
.dp-stat-sub { font-size: 11px; color: var(--gray-400); }
.dp-map-area {
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dp-map-label { font-size: 11px; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: .5px; }
.dp-map {
  flex: 1;
  position: relative;
  min-height: 120px;
  background: linear-gradient(135deg, #e0e7ff 0%, #f0f9ff 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dp-fence-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--indigo);
  opacity: .25;
}
.ring-1 { width: 80px; height: 80px; }
.ring-2 { width: 130px; height: 130px; animation: ring-pulse 3s ease-in-out infinite; }
.ring-3 { width: 180px; height: 180px; opacity: .1; }
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: .25; }
  50% { transform: scale(1.04); opacity: .15; }
}
.dp-campus-dot {
  width: 20px; height: 20px;
  background: var(--indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(99,102,241,.2);
  z-index: 2;
}
.dp-campus-inner { width: 8px; height: 8px; background: #fff; border-radius: 50%; }
.dp-dot-student {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  border: 2px solid #fff;
}
.dp-dot-student.outside { background: var(--rose); }
.s1 { top: 40%; left: 38%; }
.s2 { top: 55%; left: 52%; }
.s3 { top: 35%; left: 56%; }
.s4 { top: 20%; left: 80%; }
.dp-app-rules {
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dp-rules-label { font-size: 11px; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.dp-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 8px;
  border-radius: 6px;
}
.dp-rule.allowed { background: #f0fdf4; }
.dp-rule.blocked { background: #fff1f2; color: var(--gray-500); }
.rule-icon { font-size: 11px; }
.rule-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.rule-tag.green { background: #dcfce7; color: #16a34a; }
.rule-tag.red { background: #ffe4e6; color: #e11d48; }

/* ─── Logos ─────────────────────────────────────────────────── */
.logos-section {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.logos-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-pill {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}

/* ─── Section header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  background: var(--indigo-l);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 17px; }

/* ─── Steps ─────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-100);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.indigo-bg { background: #e0e7ff; }
.violet-bg { background: #ede9fe; }
.emerald-bg { background: #d1fae5; }
.step-card h3 { margin-bottom: 12px; font-size: 19px; }

.steps-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px 32px;
  flex-wrap: wrap;
}
.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}
.flow-icon { font-size: 28px; }
.flow-label { font-size: 12px; font-weight: 600; color: var(--gray-500); text-align: center; }
.flow-arrow { font-size: 20px; color: var(--gray-300); }

/* ─── Features Bento ────────────────────────────────────────── */
.features-section { background: var(--gray-50); }
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.bento-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 3; }
.bento-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.bento-tag.indigo { background: #e0e7ff; color: var(--indigo); }
.bento-tag.violet { background: #ede9fe; color: var(--violet); }
.bento-tag.amber { background: #fef3c7; color: #b45309; }
.bento-tag.rose { background: #ffe4e6; color: #e11d48; }
.bento-tag.emerald { background: #d1fae5; color: #059669; }
.bento-tag.sky { background: #e0f2fe; color: #0284c7; }
.bento-card h3 { margin-bottom: 10px; }
.bento-card > p { font-size: 14px; margin-bottom: 24px; }

/* Geo Demo */
.geo-demo {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #eef2ff 0%, #f0f9ff 100%);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed var(--indigo);
}
.r1 { width: 100px; height: 100px; opacity: .4; }
.r2 { width: 160px; height: 160px; opacity: .25; border-style: solid; }
.r3 { width: 220px; height: 220px; opacity: .12; }
.geo-center {
  width: 16px; height: 16px;
  background: var(--indigo);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(99,102,241,.2);
  z-index: 2;
}
.geo-label {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  color: var(--indigo);
  background: #fff;
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid var(--indigo-l);
}
.geo-label.top { top: 20px; left: 20px; }
.geo-label.bottom { bottom: 20px; right: 20px; }
.geo-badge {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.geo-badge.locked { background: #ffe4e6; color: #e11d48; top: 20px; right: 20px; }
.geo-badge.unlocked { background: #d1fae5; color: #059669; bottom: 20px; left: 20px; }

/* App List Demo */
.app-list-demo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.app-row.allow { background: #f0fdf4; color: var(--gray-700); }
.app-row.block { background: #fff1f2; color: var(--gray-500); }
.app-ico { font-size: 16px; }
.badge-allow {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 100px;
}
.badge-block {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #e11d48;
  background: #ffe4e6;
  padding: 2px 8px;
  border-radius: 100px;
}

/* Schedule Demo */
.schedule-demo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sched-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sched-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  width: 100px;
  flex-shrink: 0;
}
.sched-bar {
  flex: 1;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.sched-bar.full-lock { background: #e0e7ff; color: var(--indigo); }
.sched-bar.lunch { background: #fef9c3; color: #854d0e; }
.sched-bar.after { background: #d1fae5; color: #065f46; }

/* Exception Demo */
.exception-demo { }
.exc-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px;
}
.exc-head { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.exc-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exc-name { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.exc-reason { font-size: 12px; color: var(--gray-500); }
.exc-actions { display: flex; gap: 8px; margin-bottom: 8px; }
.exc-btn {
  flex: 1;
  padding: 7px;
  border-radius: 7px;
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .15s;
}
.exc-btn.approve { background: #dcfce7; color: #16a34a; }
.exc-btn.approve:hover { background: #bbf7d0; }
.exc-btn.deny { background: #ffe4e6; color: #e11d48; }
.exc-btn.deny:hover { background: #fecdd3; }
.exc-duration { font-size: 11px; color: var(--gray-400); }

/* Analytics Demo */
.analytics-demo { }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding-bottom: 4px;
}
.bar-wrap {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.bar {
  width: 100%;
  background: linear-gradient(180deg, var(--indigo) 0%, var(--violet) 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: -16px;
  transition: .3s;
  position: relative;
}
.bar span {
  position: absolute;
  bottom: -18px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
}
.chart-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
  margin-top: 24px;
}

/* Emergency Demo */
.emergency-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.emergency-btn {
  background: #fef2f2;
  border: 2px solid #fecaca;
  color: #dc2626;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}
.emergency-btn:hover { background: #fee2e2; border-color: #f87171; }
.emergency-options {
  display: flex;
  gap: 10px;
}
.emerg-opt {
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: .15s;
}
.emerg-opt.active {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-l);
}

/* ─── Who Section ───────────────────────────────────────────── */
.who-section { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.who-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.featured-who {
  background: var(--white);
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo), var(--shadow);
}
.who-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.who-card h3 { font-size: 17px; margin-bottom: 14px; }
.who-card ul { display: flex; flex-direction: column; gap: 8px; }
.who-card li {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--gray-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.featured-testimonial {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border: none;
  color: #fff;
}
.featured-testimonial .testimonial-text { color: rgba(255,255,255,.9); }
.featured-testimonial .author-name { color: #fff; }
.featured-testimonial .author-role { color: rgba(255,255,255,.7); }
.quote-mark {
  font-size: 64px;
  line-height: 1;
  color: rgba(99,102,241,.15);
  font-family: Georgia, serif;
  margin-bottom: -16px;
  display: block;
}
.quote-mark.small { font-size: 40px; margin-bottom: -10px; color: var(--indigo-l); }
.testimonials-right { display: flex; flex-direction: column; gap: 20px; }
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.author-role { font-size: 12px; color: var(--gray-400); }
.testimonial-stat {
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* ─── Stats ─────────────────────────────────────────────────── */
.stats-section {
  background: var(--gray-900);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { font-size: 32px; color: var(--indigo); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.5); font-weight: 500; }

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.featured-plan {
  border: 2px solid var(--indigo);
  box-shadow: 0 0 0 4px rgba(99,102,241,.08);
}
.plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.plan-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 8px;
  line-height: 1;
}
.plan-price span { font-size: 16px; font-weight: 500; color: var(--gray-400); }
.plan-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--gray-700); }
.plan-features li.muted { color: var(--gray-300); }
.plan-btn { width: 100%; justify-content: center; }
.pricing-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--gray-400);
}

/* ─── Comparison ────────────────────────────────────────────── */
.comparison-section { background: var(--gray-50); }
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-700);
}
.comparison-table th {
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-50);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.highlight-col { background: #eef2ff; color: var(--indigo) !important; font-weight: 700 !important; }
.yes { color: var(--emerald); font-weight: 700; }
.no { color: var(--gray-300); }
.partial { color: var(--amber); font-weight: 700; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-container { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  gap: 16px;
  cursor: pointer;
  transition: color .15s;
}
.faq-q:hover { color: var(--indigo); }
.faq-arrow {
  font-size: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .2s;
  display: inline-block;
}
.faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--indigo); }
.faq-a {
  display: none;
  padding: 0 0 20px;
}
.faq-a.open { display: block; }
.faq-a p { font-size: 15px; line-height: 1.7; }

/* ─── CTA ───────────────────────────────────────────────────── */
.cta-section { padding: 80px 0; }
.cta-card {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 80%);
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-content { position: relative; }
.cta-section .section-tag.light { background: rgba(255,255,255,.2); color: #fff; }
.cta-card h2 { color: #fff; margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 40px; }
.cta-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }
.form-group input, .form-group select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
}
.form-group input::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus, .form-group select:focus { border-color: rgba(255,255,255,.6); }
.form-group select { color: rgba(255,255,255,.8); cursor: pointer; }
.form-group select option { color: var(--gray-900); background: #fff; }
.cta-submit {
  margin-top: 8px;
  background: #fff;
  color: var(--indigo-d);
  border: none;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  cursor: pointer;
  transition: .2s;
  align-self: flex-start;
}
.cta-submit:hover { background: #f1f5f9; color: var(--indigo-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.cta-footnote { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 20px; }
.form-success {
  margin-top: 16px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); max-width: 280px; line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.f-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
}
.footer-links-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-size: 15px;
  color: rgba(255,255,255,.3);
  transition: color .15s;
}
.footer-social a:hover { color: #fff; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-bento { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item { border-right: none; }
  .footer-links-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding-top: 100px; }
  .hero-headline { letter-spacing: -1px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-flow { gap: 12px; }
  .flow-arrow { display: none; }
  .features-bento { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .dp-sidebar { display: none; }
  .dp-content { grid-template-columns: 1fr; }
  .dp-stats-row { grid-template-columns: repeat(3, 1fr); }
  .cta-card { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-wrap { grid-template-columns: repeat(2, 1fr); }
  .comparison-table th, .comparison-table td { padding: 12px; font-size: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 500px) {
  .who-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dp-stats-row { grid-template-columns: 1fr; }
  .footer-links-wrap { grid-template-columns: 1fr 1fr; }
}

/* ─── Scroll animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
