:root {
  --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --color-primary: #4F46E5;
  --color-primary-hover: #4338CA;
  --color-primary-light: #EEF2FF;
  --color-secondary: #0EA5E9;
  --color-accent: #10B981;
  --color-dark: #0F172A;
  --color-dark-surface: #1E293B;
  --color-slate-50: #F8FAFC;
  --color-slate-100: #F1F5F9;
  --color-slate-200: #E2E8F0;
  --color-slate-300: #CBD5E1;
  --color-slate-400: #94A3B8;
  --color-slate-500: #64748B;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1E293B;
  --color-slate-900: #0F172A;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 25px -5px rgba(79, 70, 229, 0.4);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  background: var(--color-slate-50);
  color: var(--color-slate-900);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================================
   LOGIN & SIGNUP LAYOUT
   ========================================================================= */
.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #EEF2FF 0%, #F8FAFC 100%);
  padding: 40px 16px;
}

.login-card {
  width: min(580px, 100%);
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--color-slate-200);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.08);
}

/* =========================================================================
   LANDING PAGE WRAPPER & HEADER
   ========================================================================= */
.landing-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #FAFAFC;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.2s ease;
}

.landing-header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-slate-900);
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.brand-text {
  letter-spacing: -0.02em;
}

.brand-main {
  color: var(--color-slate-900);
}

.brand-gradient {
  background: linear-gradient(135deg, #4F46E5, #0EA5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  color: var(--color-slate-600);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-item:hover {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.signin-btn {
  font-weight: 600;
  color: var(--color-slate-700) !important;
}

.cta-nav-btn {
  font-weight: 600 !important;
  border-radius: 9999px !important;
  padding: 8px 20px !important;
  background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%) !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25) !important;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero-section {
  padding: 80px 24px 70px;
  background: radial-gradient(circle at 50% 0%, #EEF2FF 0%, #FAFAFC 70%);
  overflow: hidden;
  position: relative;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #EEF2FF;
  border: 1px solid #C7D2FE;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4338CA;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4F46E5;
  box-shadow: 0 0 8px #4F46E5;
  animation: pulseBeacon 2s infinite;
}

.hero-heading {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-slate-900);
  margin: 0 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #4F46E5 0%, #0EA5E9 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-slate-600);
  margin: 0 0 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-primary-btn {
  border-radius: 12px !important;
  padding: 14px 32px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%) !important;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.hero-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.45) !important;
}

.hero-secondary-btn {
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--color-slate-700) !important;
  border-color: var(--color-slate-300) !important;
  background: #ffffff !important;
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--color-slate-600);
  font-weight: 500;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-icon {
  color: #10B981 !important;
  font-size: 18px !important;
}

/* =========================================================================
   HERO PREVIEW WINDOW MOCKUP
   ========================================================================= */
.hero-preview-window {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--color-slate-200);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(226, 232, 240, 0.6);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hero-preview-window:hover {
  transform: translateY(-4px);
}

.window-header {
  background: var(--color-slate-900);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.window-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-slate-300);
  letter-spacing: -0.01em;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #10B981;
}

.pulse-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseBeacon 1.5s infinite;
}

.window-body {
  padding: 18px;
  background: #F8FAFC;
}

.preview-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.preview-stat-card {
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--color-slate-500);
  font-weight: 600;
  display: block;
}

.stat-value-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 4px;
}

.stat-number {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-slate-900);
}

.text-success {
  color: #10B981;
}

.stat-trend {
  font-size: 0.68rem;
  font-weight: 700;
}
.stat-trend.positive { color: #10B981; }
.stat-trend.neutral { color: #6366F1; }

/* Mini Radar */
.radar-preview-box {
  position: relative;
  height: 140px;
  background: radial-gradient(circle, #0F172A 0%, #020617 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1E293B;
}

.radar-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at center, rgba(79, 70, 229, 0.15) 0%, transparent 70%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px, 20px 20px;
}

.radar-scan-line {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(79, 70, 229, 0.4);
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.2) inset;
}

.geofence-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px dashed rgba(14, 165, 233, 0.6);
  background: rgba(14, 165, 233, 0.06);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.geofence-label {
  font-size: 0.6rem;
  color: #38BDF8;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.radar-pin {
  position: absolute;
  cursor: pointer;
}

.radar-pin.pin-1 { top: 38%; left: 36%; }
.radar-pin.pin-2 { top: 58%; left: 56%; }
.radar-pin.pin-3 { top: 30%; left: 62%; }

.pin-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.pin-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.4);
  animation: pulsePin 2s infinite;
  z-index: 1;
}

/* Preview Feed */
.preview-feed-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feed-item {
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--color-slate-200);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feed-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EEF2FF;
  color: #4F46E5;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-avatar.alt {
  background: #F0FDF4;
  color: #16A34A;
}

.feed-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feed-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-slate-900);
}

.feed-meta {
  font-size: 0.68rem;
  color: var(--color-slate-500);
}

.feed-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
}
.feed-tag.success {
  color: #16A34A;
  background: #DCFCE7;
  padding: 3px 8px;
  border-radius: 6px;
}

/* =========================================================================
   STATS RIBBON
   ========================================================================= */
.stats-ribbon {
  background: var(--color-slate-900);
  color: white;
  padding: 36px 24px;
}

.stats-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-big {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-sub {
  font-size: 0.85rem;
  color: var(--color-slate-400);
  margin-top: 4px;
  font-weight: 500;
}

/* =========================================================================
   SECTION HEADINGS
   ========================================================================= */
.section-header-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-slate-900);
  margin: 0 0 16px;
}

.section-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-slate-600);
  margin: 0;
}

/* =========================================================================
   FEATURES GRID
   ========================================================================= */
.features-section {
  padding: 90px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card-modern {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
}

.feature-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #C7D2FE;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.feature-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-slate-600);
  margin: 0 0 20px;
  flex: 1;
}

.feature-pill {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 9999px;
}

/* =========================================================================
   WORKFLOW (HOW IT WORKS)
   ========================================================================= */
.workflow-section {
  padding: 90px 24px;
  background: #ffffff;
  border-top: 1px solid var(--color-slate-200);
  border-bottom: 1px solid var(--color-slate-200);
}

.steps-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card-modern {
  background: var(--color-slate-50);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-slate-200);
  position: relative;
  transition: transform 0.2s ease;
}

.step-card-modern:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: #E2E8F0;
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
}

.step-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.3);
}

.step-card-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin: 0 0 12px;
}

.step-card-modern p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-slate-600);
  margin: 0;
}

/* =========================================================================
   SHOWCASE RADAR SECTION
   ========================================================================= */
.showcase-section {
  padding: 90px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.showcase-heading {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-slate-900);
  margin: 0 0 18px;
}

.showcase-p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-slate-600);
  margin: 0 0 28px;
}

.showcase-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  gap: 16px;
}

.highlight-item strong {
  display: block;
  font-size: 1rem;
  color: var(--color-slate-900);
  margin-bottom: 4px;
}

.highlight-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-slate-600);
}

.radar-card-large {
  background: #0F172A;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #1E293B;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
  color: white;
}

.radar-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.radar-location-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1E293B;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #38BDF8;
}

.radar-headcount {
  font-size: 0.8rem;
  font-weight: 700;
  color: #10B981;
}

.radar-canvas {
  position: relative;
  height: 260px;
  background: radial-gradient(circle, #1E293B 0%, #020617 100%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #334155;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(79, 70, 229, 0.3);
}
.radar-ring.r1 { width: 80px; height: 80px; }
.radar-ring.r2 { width: 160px; height: 160px; }
.radar-ring.r3 { width: 240px; height: 240px; border-style: dashed; }

.radar-sweep {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(79, 70, 229, 0.3) 0deg, transparent 60deg);
  animation: radarRotate 4s linear infinite;
}

.radar-beacon {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 12px #10B981;
}

.radar-beacon.b1 { top: 40%; left: 45%; }
.radar-beacon.b2 { top: 62%; left: 52%; }
.radar-beacon.b3 { top: 35%; left: 68%; }
.radar-beacon.b4 { top: 70%; left: 35%; }

.beacon-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.85);
  padding: 2px 6px;
  border-radius: 4px;
  color: #E2E8F0;
  border: 1px solid #334155;
}

.radar-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--color-slate-400);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.legend-dot.green { background: #10B981; }
.legend-dot.amber { background: #F59E0B; }

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing-section {
  padding: 90px 24px;
  background: #ffffff;
  border-top: 1px solid var(--color-slate-200);
}

.billing-switch-wrapper {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-slate-500);
}

.billing-switch-wrapper span.active {
  color: var(--color-slate-900);
}

.discount-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16A34A;
  background: #DCFCE7;
  padding: 3px 8px;
  border-radius: 9999px;
  margin-left: 4px;
}

.pricing-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular-card {
  border: 2px solid var(--color-primary);
  box-shadow: 0 20px 35px -5px rgba(79, 70, 229, 0.15);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4F46E5, #0EA5E9);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-slate-900);
  margin: 0 0 6px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--color-slate-500);
  margin: 0 0 20px;
  min-height: 42px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
}

.price-val {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-slate-900);
}

.price-period {
  font-size: 1rem;
  color: var(--color-slate-500);
  font-weight: 500;
  margin-left: 4px;
}

.plan-divider {
  height: 1px;
  background: var(--color-slate-200);
  margin: 24px 0;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-slate-700);
}

.check-icon {
  color: #10B981 !important;
  font-size: 18px !important;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-btn {
  border-radius: 12px !important;
  font-weight: 700 !important;
  padding: 12px !important;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-section {
  padding: 90px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-panels {
  background: transparent !important;
}

.faq-item {
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid var(--color-slate-200) !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
}

/* =========================================================================
   BOTTOM CTA BANNER
   ========================================================================= */
.bottom-cta-section {
  padding: 40px 24px 90px;
  max-width: 1240px;
  margin: 0 auto;
}

.bottom-cta-card {
  background: linear-gradient(135deg, #4338CA 0%, #312E81 50%, #0F172A 100%);
  border-radius: 28px;
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(67, 56, 202, 0.4);
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35) 0%, transparent 70%);
  filter: blur(40px);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.cta-desc {
  font-size: 1.125rem;
  color: #C7D2FE;
  margin: 0 0 36px;
  line-height: 1.6;
}

.cta-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-light-btn {
  background: #ffffff !important;
  color: var(--color-primary) !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  padding: 14px 32px !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

.cta-border-btn {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.4) !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
}

.cta-footnote {
  font-size: 0.85rem;
  color: #A5B4FC;
  font-weight: 500;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.landing-footer-modern {
  background: #0F172A;
  color: #94A3B8;
  padding: 70px 24px 32px;
  border-top: 1px solid #1E293B;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-col .brand-logo {
  color: white;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 320px;
  margin: 12px 0 20px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1E293B;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #10B981;
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: #94A3B8;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #1E293B;
  padding-top: 28px;
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* =========================================================================
   ANIMATIONS & RESPONSIVENESS
   ========================================================================= */
@keyframes pulseBeacon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
}

@keyframes pulsePin {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes radarRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subheading {
    margin: 0 auto 36px;
  }
  .hero-cta-group, .hero-proof-bar {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-container {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
