/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #F7F9FC;
  color: #0D1B2A;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Brand Tokens ─────────────────────────────────────────────── */
:root {
  --navy:        #0A3D6B;
  --navy-light:  #1559A0;
  --navy-dark:   #062550;
  --teal:        #0D9488;
  --teal-light:  #14B8A6;
  --teal-dark:   #0A7A76;
  --bg:          #F7F9FC;
  --surface:     #EEF3FA;
  --card:        #FFFFFF;
  --border:      #D8E5F3;
  --text:        #0D1B2A;
  --text-2:      #4A6080;
  --text-3:      #8CA5BF;
  --white:       #FFFFFF;
}

/* ── Utilities ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(13,148,136,0.12); color: var(--teal-dark);
  border: 1px solid rgba(13,148,136,0.25);
  border-radius: 999px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: #fff;
  border: none; border-radius: 12px;
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(10,61,107,0.25);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(10,61,107,0.35); }
.btn-teal {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--teal); color: #fff;
  border: none; border-radius: 12px;
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.btn-teal:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal); border-radius: 12px;
  padding: 13px 28px; font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--navy); background: var(--surface); }
.section-label {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 10px; display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; color: var(--text);
  letter-spacing: -0.5px; line-height: 1.15;
}
.section-sub {
  font-size: 17px; color: var(--text-2);
  margin-top: 14px; max-width: 540px; line-height: 1.7;
}

/* ── Page Hero (inner pages) ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, #0F5490 100%);
  padding: 72px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900; color: #fff;
  letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 16px;
}
.page-hero-title .accent { color: var(--teal-light); }
.page-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 560px; margin: 0 auto;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px; margin-bottom: 20px;
}
.page-brand-row {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-bottom: 48px;
}
.page-brand-row-img {
  width: 44px; height: 44px; border-radius: 12px;
  object-fit: cover; margin-bottom: 4px;
}
.page-brand-row-text {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.page-brand-row-name {
  font-size: 22px; font-weight: 900; color: #fff;
  letter-spacing: 1px; line-height: 1;
  font-family: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
}
.page-brand-row-name .accent { color: var(--teal-light); }
.page-brand-row-tagline {
  font-size: 11px; font-weight: 700; color: var(--teal-light);
  letter-spacing: 1px; text-transform: uppercase; white-space: nowrap;
}
.footer-brand-tagline {
  font-size: 12px; color: var(--teal-light);
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-top: 3px;
  white-space: nowrap;
}

/* ── Top Brand Bar ────────────────────────────────────────────── */
.top-brand-bar {
  background: var(--navy-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-brand-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}

/* ── Navbar ───────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px; height: 36px; border-radius: 10px;
  object-fit: cover;
}
.nav-logo-text {
  font-size: 20px; font-weight: 900; color: var(--navy);
  letter-spacing: 0.5px;
  font-family: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
}
.nav-logo-text .accent { color: var(--teal); }
.nav-links {
  display: flex; align-items: center; gap: 26px; list-style: none;
  margin-left: 40px; margin-right: 32px;
}
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--text-2);
  text-decoration: none; transition: color 0.2s; padding: 4px 0;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.btn-nav {
  padding: 9px 22px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  min-width: 130px;
  text-align: center;
  box-sizing: border-box;
}
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); margin: 5px 0;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(10,61,107,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block; padding: 14px 24px;
  font-size: 15px; font-weight: 600; color: var(--text-2);
  text-decoration: none; border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu ul li a:hover { background: var(--surface); color: var(--teal); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, #0F5490 100%);
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--teal-light); }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 36px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-size: 28px; font-weight: 900; color: #fff; line-height: 1;
}
.hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 600;
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* Phone mockup */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone-frame {
  width: 260px; height: 520px;
  background: #0A2A4A;
  border-radius: 40px;
  border: 8px solid rgba(255,255,255,0.15);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 24px;
  background: #0A2A4A; border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1); z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0A3D6B 0%, #071525 100%);
  display: flex; flex-direction: column; padding: 48px 16px 16px;
}
.ps-header {
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.5);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
}
.ps-greeting  { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.ps-search {
  background: rgba(255,255,255,0.1);
  border-radius: 10px; padding: 8px 12px;
  font-size: 11px; color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.ps-card {
  background: rgba(255,255,255,0.07);
  border-radius: 14px; padding: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.ps-card-name  { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ps-card-role  { font-size: 10px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.ps-card-row   { display: flex; gap: 6px; }
.ps-card-btn   {
  flex: 1; background: var(--teal); border-radius: 7px;
  padding: 5px; text-align: center;
  font-size: 9px; font-weight: 700; color: #fff;
}
.ps-card-btn2  {
  flex: 1; background: rgba(255,255,255,0.1); border-radius: 7px;
  padding: 5px; text-align: center;
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.7);
}
.ps-price { font-size: 10px; font-weight: 700; color: var(--teal-light); }
.phone-glow {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(13,148,136,0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Trust bar ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--card); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
}
.trust-item .icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ── Mentor Verification ──────────────────────────────────────── */
.verification-section {
  background: var(--bg);
  padding: 88px 0 80px;
  position: relative; overflow: hidden;
}
.verification-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(13,148,136,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.verification-header {
  text-align: center; max-width: 700px;
  margin: 0 auto 64px; position: relative; z-index: 1;
}
.verification-sub {
  font-size: 16px; color: var(--text-2);
  line-height: 1.75; margin-top: 16px;
}
.verification-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
  position: relative; z-index: 1;
}
/* Connector line between step icons */
.verification-steps::before {
  content: '';
  position: absolute;
  top: 55px; left: calc(16.67% + 12px); right: calc(16.67% + 12px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  z-index: 0;
}
.vstep {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 22px; padding: 32px 28px 28px;
  position: relative; z-index: 1;
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
/* Teal top accent bar */
.vstep::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}
.vstep:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(10,61,107,0.12);
  transform: translateY(-4px);
}
.vstep-num {
  font-size: 72px; font-weight: 900; line-height: 1;
  color: rgba(10,61,107,0.06);
  position: absolute; top: 12px; right: 18px;
  pointer-events: none; user-select: none;
}
.vstep-icon {
  width: 60px; height: 60px; border-radius: 17px;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border: 1px solid rgba(13,148,136,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  margin-bottom: 22px; position: relative; z-index: 1;
  box-shadow: 0 6px 22px rgba(10,61,107,0.2);
}
.vstep-badge-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), #1559A0);
  color: #fff;
  font-size: 9px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
  margin-bottom: 14px;
}
.vstep-title {
  font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px;
}
.vstep-desc {
  font-size: 13.5px; color: var(--text-2); line-height: 1.75;
}
/* Trust seal */
.verification-seal {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; max-width: 540px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), #1559A0);
  border: 1.5px solid var(--teal);
  border-radius: 18px; padding: 24px 40px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 32px rgba(10,61,107,0.2);
}
.vseal-icon {
  font-size: 44px; color: var(--teal-light); flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(13,148,136,0.5));
}
.vseal-title {
  font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px;
}
.vseal-sub {
  font-size: 13px; color: rgba(255,255,255,0.65);
}
@media (max-width: 900px) {
  .verification-steps { grid-template-columns: 1fr; }
  .verification-steps::before { display: none; }
}

/* ── How it works ─────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 14px auto 0; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 60px;
}
.step {
  text-align: center; padding: 40px 28px;
  background: var(--card); border-radius: 20px;
  border: 1.5px solid var(--border);
  position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,61,107,0.1); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--surface), var(--border));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
}
.step-title { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── Categories ───────────────────────────────────────────────── */
.categories-section { background: var(--navy); padding: 96px 0; }
.categories-section .section-label { color: var(--teal-light); }
.categories-section .section-title { color: #fff; }
.categories-section .section-sub   { color: rgba(255,255,255,0.6); }
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.cat-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 28px 24px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  cursor: default;
}
.cat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--teal);
  transform: translateY(-2px);
}
/* Professional icon box */
.cat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(13,148,136,0.22), rgba(10,61,107,0.28));
  border: 1px solid rgba(13,148,136,0.22);
  margin-bottom: 18px; color: var(--teal-light);
  font-size: 30px; flex-shrink: 0;
}
.cat-name  { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cat-desc  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.cat-tag   {
  display: inline-block; margin-top: 12px;
  background: rgba(13,148,136,0.2); color: var(--teal-light);
  border-radius: 999px; padding: 3px 10px;
  font-size: 11px; font-weight: 700;
}
/* ── Quick Support highlight card ─────────────────────── */
.cat-card.cat-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(13,148,136,0.13) 0%, rgba(10,61,107,0.22) 100%);
  border-color: rgba(13,148,136,0.55);
  display: flex; align-items: flex-start; gap: 28px;
  animation: catGlow 2.5s ease-in-out infinite;
}
.cat-card.cat-highlight:hover {
  background: linear-gradient(135deg, rgba(13,148,136,0.2) 0%, rgba(10,61,107,0.28) 100%);
  transform: translateY(-2px);
}
.cat-card.cat-highlight .cat-icon {
  width: 80px; height: 80px; font-size: 34px;
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  border: 1px solid rgba(94,234,212,0.35);
  margin-bottom: 0; margin-top: 2px;
}
.cat-content { flex: 1; }
.cat-urgent-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff; font-size: 9px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
  animation: urgentBlink 1.8s ease-in-out infinite;
}
@keyframes catGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(13,148,136,0);
    border-color: rgba(13,148,136,0.45);
  }
  50% {
    box-shadow: 0 0 28px rgba(13,148,136,0.35), 0 4px 24px rgba(13,148,136,0.15);
    border-color: #5eead4;
  }
}
@keyframes urgentBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
/* Use-case bullet list */
.cat-uses {
  list-style: none; margin: 10px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.cat-uses li {
  font-size: 12px; color: rgba(255,255,255,0.55);
  padding-left: 14px; position: relative; line-height: 1.4;
}
.cat-uses li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--teal-light); font-weight: 700;
}

/* ── Tiers ────────────────────────────────────────────────────── */
.tiers-section { background: var(--bg); }
.tiers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.tier-card {
  background: var(--card); border-radius: 22px;
  border: 2px solid var(--border); padding: 36px 28px;
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,61,107,0.12); }
.tier-card.featured {
  border-color: var(--navy); background: var(--navy);
}
.tier-card.featured .tier-name,
.tier-card.featured .tier-rate,
.tier-card.featured .tier-rate-unit,
.tier-card.featured .tier-desc { color: #fff; }
.tier-card.featured .tier-desc { color: rgba(255,255,255,0.6); }
.tier-card.featured .tier-feature { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }
.tier-card.featured .tier-feature::before { color: var(--teal-light); }
.featured-badge {
  position: absolute; top: 0; right: 0;
  background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 6px 14px; border-bottom-left-radius: 12px;
  letter-spacing: 0.5px;
}
.tier-emoji { font-size: 40px; margin-bottom: 14px; display: block; }
.tier-name  { font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.tier-rate  { font-size: 42px; font-weight: 900; color: var(--teal); line-height: 1; }
.tier-rate-unit { font-size: 15px; font-weight: 600; color: var(--text-2); }
.tier-desc  { font-size: 13px; color: var(--text-2); margin: 12px 0 24px; line-height: 1.6; }
.tier-features { list-style: none; text-align: left; }
.tier-feature {
  font-size: 13px; color: var(--text-2);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.tier-feature:last-child { border-bottom: none; }
.tier-feature::before { content: '✓'; font-weight: 800; color: var(--teal); }

/* ── Features ─────────────────────────────────────────────────── */
.features-section { background: var(--surface); }
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
.feature-card {
  background: var(--card); border-radius: 20px;
  border: 1.5px solid var(--border); padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10,61,107,0.08); }
.feature-card.wide { grid-column: span 2; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feature-icon.navy  { background: linear-gradient(135deg, #1559A0, #0A3D6B); }
.feature-icon.teal  { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.feature-icon.green { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.feature-icon.amber { background: linear-gradient(135deg, var(--navy-light), var(--navy)); }
.feature-title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.feature-chip {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 12px;
  font-size: 12px; font-weight: 600; color: var(--text-2);
}

/* ── CTA ──────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), #0F5490);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -150px; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900; color: #fff;
  letter-spacing: -0.5px; margin-bottom: 16px;
}
.cta-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: var(--navy);
  border: none; border-radius: 12px;
  padding: 15px 32px; font-size: 16px; font-weight: 800;
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 2px solid rgba(255,255,255,0.25); border-radius: 12px;
  padding: 13px 28px; font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 10px;
}
.footer-logo-img {
  width: 36px; height: 36px; border-radius: 10px;
  object-fit: cover;
}
.footer-brand-name {
  font-size: 22px; font-weight: 900; color: #fff;
  letter-spacing: 1px;
  font-family: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
}
.footer-brand-name span { color: var(--teal-light); }
.footer-brand-desc {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 14px;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.footer-social:hover { background: var(--teal); color: #fff; }
.footer-col-title {
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── Info Cards ───────────────────────────────────────────────── */
.info-card {
  background: var(--card); border-radius: 20px;
  border: 1.5px solid var(--border); padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10,61,107,0.08); }

/* ── Animations ───────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── Hero Bridge Visual ───────────────────────────────────────── */
.hero-bridge-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.hbv-card {
  flex: 1;
  border-radius: 22px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
}
.hbv-mentor {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.hbv-user {
  background: rgba(13,148,136,0.12);
  border: 1.5px solid rgba(13,148,136,0.3);
}
.hbv-avatar {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 14px;
}
.hbv-avatar-mentor { background: rgba(255,255,255,0.12); }
.hbv-avatar-user   { background: rgba(13,148,136,0.2); }
.hbv-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border-radius: 999px; padding: 3px 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.hbv-tag-teal {
  background: rgba(13,148,136,0.25);
  color: var(--teal-light);
}
.hbv-name  { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.hbv-role  { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.hbv-exp   {
  font-size: 12px; font-weight: 700; color: var(--teal-light);
  margin-bottom: 12px;
}
.hbv-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.hbv-pill  {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  border-radius: 999px; padding: 3px 9px;
  font-size: 10px; font-weight: 600;
}
.hbv-status    { font-size: 12px; font-weight: 700; color: #4ADE80; }
.hbv-question  {
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-bottom: 14px;
  border-left: 3px solid var(--teal);
  padding-left: 12px;
}
.hbv-timer {
  font-size: 12px; font-weight: 700;
  color: var(--teal-light);
}

/* Connector */
.hbv-connector {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; flex-shrink: 0;
  position: relative; padding: 8px 4px;
}
.hbv-call-icon {
  width: 52px; height: 52px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #0A7A76);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 0 8px rgba(13,148,136,0.2), 0 8px 24px rgba(13,148,136,0.4);
  position: relative; z-index: 2;
}
.hbv-pulse-ring {
  position: absolute;
  width: 72px; height: 72px; border-radius: 999px;
  border: 2px solid rgba(13,148,136,0.4);
  animation: hbv-pulse 2s ease-out infinite;
  z-index: 1;
}
.hbv-pulse-delay { animation-delay: 1s; }
@keyframes hbv-pulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hbv-live-badge {
  background: #EF4444; color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  border-radius: 4px; padding: 2px 6px;
}
.hbv-wave {
  display: flex; align-items: center; gap: 3px;
}
.hbv-wave span {
  display: block; width: 3px; border-radius: 999px;
  background: var(--teal-light);
  animation: hbv-wave 1.2s ease-in-out infinite;
}
.hbv-wave span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.hbv-wave span:nth-child(2) { height: 16px; animation-delay: 0.15s; }
.hbv-wave span:nth-child(3) { height: 22px; animation-delay: 0.3s; }
.hbv-wave span:nth-child(4) { height: 16px; animation-delay: 0.45s; }
.hbv-wave span:nth-child(5) { height: 8px;  animation-delay: 0.6s; }
@keyframes hbv-wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* ── Download Modal ───────────────────────────────────────────────── */
.dl-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(6,37,80,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.dl-overlay.open { opacity: 1; pointer-events: all; }
.dl-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 420px; width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(10,61,107,0.22);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}
.dl-overlay.open .dl-modal { transform: translateY(0) scale(1); }
.dl-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-2);
  transition: background 0.2s, color 0.2s;
}
.dl-modal-close:hover { background: var(--border); color: var(--navy); }
.dl-modal-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(10,61,107,0.2);
}
.dl-modal-badge {
  display: inline-block;
  background: rgba(13,148,136,0.1); color: var(--teal-dark);
  border: 1px solid rgba(13,148,136,0.25);
  border-radius: 999px; padding: 4px 14px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.dl-modal-title {
  font-size: 22px; font-weight: 900; color: var(--navy);
  margin-bottom: 10px; line-height: 1.2;
}
.dl-modal-desc {
  font-size: 14px; color: var(--text-2);
  line-height: 1.75; margin: 0 auto 24px; max-width: 320px;
}
.dl-modal-contact {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 14px 18px;
  margin-bottom: 10px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.dl-modal-contact:hover { border-color: var(--teal); background: rgba(13,148,136,0.05); }
.dl-modal-contact.whatsapp:hover { border-color: #25D366; background: rgba(37,211,102,0.04); }
.dl-modal-contact-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dl-modal-contact-icon.email { background: linear-gradient(135deg, var(--teal-light), var(--teal)); }
.dl-modal-contact-icon.wa    { background: #25D366; }
.dl-modal-contact-text { text-align: left; }
.dl-modal-contact-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-3); margin-bottom: 2px; display: block;
}
.dl-modal-contact-value { font-size: 13px; font-weight: 700; color: var(--navy); }
.dl-modal-dismiss {
  width: 100%; padding: 13px; margin-top: 20px;
  background: var(--navy); color: #fff;
  border: none; border-radius: 12px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.dl-modal-dismiss:hover { background: var(--navy-light); }
@media (max-width: 480px) {
  .dl-modal { padding: 32px 20px 24px; }
  .dl-modal-title { font-size: 19px; }
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; text-align: center; }
  .hero-actions        { justify-content: center; }
  .hero-stats          { justify-content: center; }
  .hero-bridge-visual  { order: -1; flex-direction: column; }
  .hbv-connector       { flex-direction: row; padding: 4px 8px; }
  .steps               { grid-template-columns: 1fr; }
  .cat-grid            { grid-template-columns: repeat(2, 1fr); }
  .cat-card.cat-highlight { flex-direction: column; }
  .cat-card.cat-highlight .cat-icon { margin-bottom: 14px; }
  .tiers-grid          { grid-template-columns: 1fr; }
  .features-grid       { grid-template-columns: 1fr; }
  .feature-card.wide   { grid-column: span 1; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger       { display: block; }
  .trust-inner         { gap: 24px; }
}
@media (max-width: 768px) {
  .section              { padding: 64px 0; }
  .cta-section          { padding: 64px 0; }
  .verification-section { padding: 64px 0 56px; }
  .page-hero            { padding: 52px 0 60px; }
  .page-hero-sub        { font-size: 16px; }
  .cta-sub              { font-size: 16px; margin-bottom: 32px; }
  .hero-sub             { font-size: 16px; margin-bottom: 28px; }
}
@media (max-width: 560px) {
  .cat-grid    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-inner { gap: 16px; }
  .hero-stats  { gap: 20px; flex-wrap: wrap; }
  .hero-bridge-visual { gap: 12px; }
  .verification-seal  { flex-direction: column; padding: 24px 20px; gap: 12px; text-align: center; }
  .section-sub { font-size: 15px; }
}
@media (max-width: 480px) {
  .section              { padding: 52px 0; }
  .cta-section          { padding: 52px 0; }
  .verification-section { padding: 52px 0 44px; }
  .page-hero            { padding: 40px 0 48px; }
}

