/* =============================================
   BILLING — Landing Page Design System
   Public-facing pages: Home, About, Contact, etc.
   ============================================= */

/* ── GLOBAL PUBLIC ── */
.lp-body {
  background: #020917;
  color: #E2E8F0;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

/* ── AMBIENT BACKGROUND ── */
.lp-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: orbFloat 18s ease-in-out infinite alternate;
}
.lp-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #4f46e5, transparent 70%); top: -200px; left: -150px; }
.lp-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #0ea5e9, transparent 70%); bottom: -100px; right: -100px; animation-delay: -9s; }
.lp-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #ec4899, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.15; animation-delay: -4s; }
.lp-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.08); }
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.lp-nav.scrolled {
  background: rgba(2, 9, 23, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

.lp-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,0.5);
  font-family: 'Outfit', sans-serif;
}
.lp-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.lp-logo-text span { color: #0ea5e9; }

/* Nav Links */
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.lp-nav-link {
  padding: 7px 16px;
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.lp-nav-link:hover, .lp-nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

/* Nav CTAs */
.lp-nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lp-btn-ghost {
  padding: 8px 18px;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.lp-btn-primary {
  padding: 9px 20px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(79,70,229,0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(79,70,229,0.55);
  transform: translateY(-1px);
  color: #fff;
}

/* Hamburger */
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.lp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.lp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.lp-mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(3, 7, 18, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 998;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.25s ease;
}
.lp-mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.lp-mobile-link {
  padding: 12px 16px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s;
}
.lp-mobile-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.lp-mobile-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }

@media (max-width: 900px) {
  .lp-nav-links, .lp-nav-ctas { display: none; }
  .lp-hamburger { display: flex; }
  .lp-nav-inner { gap: 0; }
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.lp-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 6% 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.lp-hero-content {
  flex: 1;
  max-width: 540px;
}

/* Badge */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.lp-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4f46e5;
  box-shadow: 0 0 6px #4f46e5;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* Hero Title */
.lp-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: #fff;
  margin-bottom: 22px;
}

.lp-gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #38bdf8 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Hero Actions */
.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(79,70,229,0.4);
  white-space: nowrap;
}
.lp-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,70,229,0.55);
  color: #fff;
}
.lp-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.lp-cta-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* Trust Badges */
.lp-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ── Hero Visual ── */
.lp-hero-visual {
  flex: 1;
  max-width: 560px;
  position: relative;
}

.lp-dashboard-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.5s ease;
}
.lp-dashboard-card:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.lp-win-dots {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 20px;
}
.lp-win-dots .dot-r { width:12px;height:12px;border-radius:50%;background:#ef4444; }
.lp-win-dots .dot-y { width:12px;height:12px;border-radius:50%;background:#eab308; }
.lp-win-dots .dot-g { width:12px;height:12px;border-radius:50%;background:#22c55e; }

.lp-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.lp-dash-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 12px;
}
.lp-dash-kpi-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.lp-dash-kpi-val { font-size: 20px; font-weight: 800; font-family: 'Outfit',sans-serif; letter-spacing: -0.5px; }
.lp-dash-kpi-delta { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 4px; }
.lp-dash-kpi-delta.up { color: #10B981; }

.lp-dash-chart-area {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
}
.lp-dash-chart-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }

.lp-dash-invoice-list { display: flex; flex-direction: column; gap: 8px; }
.lp-dash-inv-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);
}
.lp-dash-inv-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lp-dash-inv-name { flex: 1; font-size: 12px; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-dash-inv-amount { font-size: 12px; font-weight: 700; color: #fff; margin-right: 8px; }
.lp-dash-inv-status { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.lp-dash-inv-status.paid { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.lp-dash-inv-status.pending { background: rgba(245,158,11,0.15); color: #fcd34d; }

/* Floating badges */
.lp-float-badge {
  position: absolute;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.lp-float-1 { bottom: -20px; left: -30px; animation: floatY 3s ease-in-out infinite alternate; }
.lp-float-2 { top: -16px; right: -20px; animation: floatY 4s ease-in-out infinite alternate-reverse; }
@keyframes floatY { 0%{transform:translateY(0);} 100%{transform:translateY(-10px);} }

@media (max-width: 1024px) {
  .lp-hero { flex-direction: column; text-align: center; padding-top: 110px; }
  .lp-hero-content { max-width: 100%; }
  .lp-hero-sub { max-width: 100%; }
  .lp-hero-actions { justify-content: center; }
  .lp-trust { justify-content: center; }
  .lp-hero-visual { max-width: 100%; width: 100%; }
  .lp-dashboard-card { transform: none; }
  .lp-float-badge { display: none; }
  .lp-hero-title { font-size: 48px; }
}
@media (max-width: 600px) {
  .lp-hero-title { font-size: 38px; letter-spacing: -1.5px; }
  .lp-hero-sub { font-size: 16px; }
  .lp-dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .lp-hero { padding: 100px 5% 60px; }
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
.lp-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  padding: 28px 6%;
}
.lp-stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.lp-stat { text-align: center; }
.lp-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.lp-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); }
.lp-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }
@media (max-width: 700px) {
  .lp-stats-inner { justify-content: center; }
  .lp-stat-divider { display: none; }
}

/* ══════════════════════════════════════
   FEATURES
   ══════════════════════════════════════ */
.lp-features {
  position: relative;
  z-index: 1;
  padding: 120px 6%;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.lp-section-label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #a5b4fc;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.lp-section-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-feature-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.lp-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(79,70,229,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.lp-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79,70,229,0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(79,70,229,0.1);
}
.lp-feature-card:hover::before { opacity: 1; }

.lp-feature-icon {
  width: 58px; height: 58px;
  background: rgba(var(--icon-color, #4f46e5), 0.1);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--icon-color, #818cf8);
  background: color-mix(in srgb, var(--icon-color, #4f46e5) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color, #4f46e5) 25%, transparent);
}

.lp-feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.lp-feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 18px;
}
.lp-feature-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(79,70,229,0.1);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #a5b4fc;
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) { .lp-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lp-feature-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════ */
.lp-how {
  position: relative;
  z-index: 1;
  padding: 80px 6% 120px;
}
.lp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.lp-step {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
}
.lp-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: rgba(79,70,229,0.2);
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.lp-step h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.lp-step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.lp-step-arrow {
  font-size: 28px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 780px) { .lp-step-arrow { display: none; } }

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.lp-pricing {
  position: relative;
  z-index: 1;
  padding: 80px 6% 120px;
}
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.lp-plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s ease;
}
.lp-plan-card.popular {
  background: rgba(79,70,229,0.08);
  border-color: rgba(79,70,229,0.35);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(79,70,229,0.2), 0 20px 40px rgba(0,0,0,0.3);
}
.lp-plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.lp-plan-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.lp-plan-price { font-family: 'Outfit',sans-serif; font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -2px; margin-bottom: 4px; }
.lp-plan-price span { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0; }
.lp-plan-tagline { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.lp-plan-features { list-style: none; padding: 0; margin-bottom: 28px; }
.lp-plan-features li { font-size: 14px; color: rgba(255,255,255,0.7); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.lp-plan-features li.dim { color: rgba(255,255,255,0.3); }
.lp-plan-btn { display: block; text-align: center; padding: 13px; border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.2s ease; }
.lp-plan-btn.primary { background: linear-gradient(135deg,#4f46e5,#0ea5e9); color: #fff; box-shadow: 0 4px 14px rgba(79,70,229,0.4); }
.lp-plan-btn.primary:hover { box-shadow: 0 6px 22px rgba(79,70,229,0.55); transform: translateY(-1px); color: #fff; }
.lp-plan-btn.ghost { border: 1.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.lp-plan-btn.ghost:hover { border-color: rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.05); }
@media (max-width: 900px) {
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .lp-plan-card.popular { transform: none; }
}

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.lp-cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 6%;
}
.lp-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.lp-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.15), transparent 70%);
  pointer-events: none;
}
.lp-cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.lp-cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.lp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .lp-cta-inner h2 { font-size: 38px; }
  .lp-section-header h2 { font-size: 32px; }
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.lp-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(2,6,18,0.8);
  backdrop-filter: blur(10px);
}
.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.lp-footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
  margin-top: 16px;
}
.lp-footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 16px;
}
.lp-social-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(79,70,229,0.35);
}
.lp-footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.lp-footer-col ul { list-style: none; padding: 0; }
.lp-footer-col li { margin-bottom: 10px; }
.lp-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer-col a:hover { color: #fff; }

/* Newsletter */
.lp-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 40px;
  margin-bottom: 48px;
  backdrop-filter: blur(10px);
}
.lp-newsletter-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.lp-newsletter-text p { font-size: 14px; color: rgba(255,255,255,0.45); }
.lp-newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}
.lp-newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.lp-newsletter-form input:focus {
  border-color: rgba(79,70,229,0.5);
  background: rgba(79,70,229,0.06);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}
.lp-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.lp-newsletter-form button {
  padding: 12px 22px;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(79,70,229,0.35);
}
.lp-newsletter-form button:hover { box-shadow: 0 6px 20px rgba(79,70,229,0.5); transform: translateY(-1px); }

/* Footer Bottom */
.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.lp-made-india {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) {
  .lp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-footer-inner { padding: 60px 24px 32px; }
  .lp-newsletter { flex-direction: column; padding: 24px; }
  .lp-newsletter-form { max-width: 100%; min-width: auto; width: 100%; }
  .lp-footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════
   PUBLIC PAGES — About, Contact, etc.
   ══════════════════════════════════════ */
.lp-page-hero {
  position: relative;
  z-index: 1;
  padding: 140px 6% 60px;
  text-align: center;
}
.lp-page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.lp-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.lp-page-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 6% 100px;
}

/* Content cards */
.lp-content-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
}
.lp-content-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.lp-content-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 10px;
  margin-top: 24px;
}
.lp-content-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.lp-content-card ul {
  padding-left: 20px;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.8;
}
.lp-content-card li { margin-bottom: 8px; }
.lp-content-card strong { color: rgba(255,255,255,0.8); }

/* About value grid */
.lp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.lp-value-item {
  background: rgba(79,70,229,0.06);
  border: 1px solid rgba(79,70,229,0.15);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.lp-value-emoji { font-size: 32px; margin-bottom: 12px; }
.lp-value-item h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.lp-value-item p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.6; margin: 0; }

/* Contact form */
.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lp-form-group { margin-bottom: 20px; }
.lp-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  resize: vertical;
  transition: all 0.2s;
}
.lp-form-group input:focus,
.lp-form-group textarea:focus,
.lp-form-group select:focus {
  border-color: rgba(79,70,229,0.5);
  background: rgba(79,70,229,0.06);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}
.lp-form-group input::placeholder,
.lp-form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.lp-form-group select option { background: #0f172a; color: #fff; }

/* Contact info items */
.lp-contact-info { display: flex; flex-direction: column; gap: 16px; }
.lp-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.lp-contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  font-size: 18px;
  flex-shrink: 0;
}
.lp-contact-info-text strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}
.lp-contact-info-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 700px) {
  .lp-page-hero h1 { font-size: 40px; }
  .lp-value-grid { grid-template-columns: 1fr; }
  .lp-contact-grid { grid-template-columns: 1fr; }
  .lp-content-card { padding: 28px 24px; }
}

/* Legal pages */
.lp-legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.lp-legal-toc a {
  padding: 6px 14px;
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #a5b4fc;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-legal-toc a:hover { background: rgba(79,70,229,0.16); color: #c4b5fd; }

/* Scroll to top button */
body.menu-open { overflow: hidden; }
