/* ── ROOT VARIABLES ── */
:root {
  --blue: #305ddd;
  --teal: #00b8b6;
  --navy: #202a44;
  --navy-light: #2e3d5e;
  --gray-50: #f8f9fc;
  --gray-100: #f0f2f8;
  --gray-300: #cbd2e0;
  --gray-500: #6b7694;
  --gray-700: #3d4870;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
}

/* ── NAV ── */
.navbar {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}
.navbar-brand img {
  height: 36px;
  width: auto;
}
.navbar-nav .nav-link {
  color: var(--gray-700) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
}
.navbar-nav .nav-link:hover { color: var(--blue) !important; }
.navbar-toggler { border: none; box-shadow: none !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 60%, #0f1e3d 100%);
  color: #fff;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(48,93,221,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,184,182,0.15);
  border: 1px solid rgba(0,184,182,0.4);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #6b93ff 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.7;
}

/* ── STATS ── */
.stats-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.stat-item {
  padding: 48px 16px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── FEATURE CARDS ── */
.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(32,42,68,0.1);
  transform: translateY(-3px);
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.icon-blue { background: rgba(48,93,221,0.1); color: var(--blue); }
.icon-teal { background: rgba(0,184,182,0.1); color: var(--teal); }
.icon-navy { background: rgba(32,42,68,0.08); color: var(--navy); }
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--gray-50); }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ── PRICING ── */
.pricing-card {
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  height: 100%;
  transition: box-shadow 0.25s;
}
.pricing-card:hover { box-shadow: 0 16px 48px rgba(32,42,68,0.1); }
.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #f0f4ff 0%, #f8f9fc 100%);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.pricing-card .plan-desc {
  font-size: 0.87rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.pricing-price-sm {
  font-size: 1.5rem;
  padding-top: 4px;
}
.pricing-period {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.pricing-features li i {
  color: var(--teal);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── CONTACT / APP LAUNCH SECTION ── */
.coming-soon-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.coming-soon-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,184,182,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.coming-soon-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.coming-soon-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.coming-soon-section .hero-badge {
  background: rgba(0,184,182,0.15);
  border: 1px solid rgba(0,184,182,0.4);
  color: var(--teal);
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 12px 28px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.contact-pill:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--teal);
  color: var(--teal);
}
.contact-pill i { color: var(--teal); font-size: 1.1rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 28px;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--teal); }
.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 40px 0 24px;
}
.footer-bottom {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }

/* ── POLICY PAGES ── */
.policy-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
  color: #fff;
  padding: 72px 0 64px;
}
.policy-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.policy-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}
.policy-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.policy-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 12px;
}
.policy-body h2:first-child { margin-top: 0; }
.policy-body p, .policy-body li {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
}
.policy-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.policy-body ul li { margin-bottom: 6px; }
.policy-body a { color: var(--blue); text-decoration: none; }
.policy-body a:hover { text-decoration: underline; }
