/* ─── SECTION SHARED ─── */
section { position: relative; z-index: 10; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 80px 24px; }

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,245,255,0.2);
  background: rgba(0,245,255,0.06);
  color: var(--cyan); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
  letter-spacing: -0.04em; text-transform: uppercase; color: #fff;
  line-height: 1;
}
.section-desc { font-size: 14px; color: #64748b; line-height: 1.8; margin-top: 12px; max-width: 520px; }

/* ─── FEATURES ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ─── HOW IT WORKS ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; margin-top: 56px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,255,0.3), rgba(0,245,255,0.3), transparent);
}
.step { text-align: center; padding: 0 20px; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 20px; font-weight: 800; color: var(--cyan);
  border: 1px solid rgba(0,245,255,0.3);
  background: rgba(0,245,255,0.08);
  box-shadow: 0 0 28px rgba(0,245,255,0.12);
}
.step-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #f1f5f9; margin-bottom: 10px; }
.step-desc { font-size: 11px; color: #64748b; line-height: 1.75; }

@media (max-width: 700px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps::before {
    display: none;
  }
  .step {
    position: relative;
    padding-bottom: 16px;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: rgba(0, 245, 255, 0.3);
  }
}

/* ─── SIGNAL FEED PREVIEW ─── */
.feed-preview { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 860px) { 
  .feed-preview { grid-template-columns: 1fr; } 
}

/* ─── MAP OPTIONS ─── */
@media (max-width: 900px) {
  #map-preview-panel { position: static !important; }
  .section-inner > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .map-options-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ─── CTA BLOCK ─── */
.cta-block {
  margin: 0 24px 80px;
  max-width: 1400px; margin-left: auto; margin-right: auto;
  border-radius: 24px;
  border: 1px solid rgba(0,245,255,0.2);
  background: rgba(10,13,24,0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 80px rgba(0,245,255,0.07);
  padding: 64px 48px;
  text-align: center;
  position: relative; z-index: 10; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,255,0.10), transparent 65%);
  pointer-events: none;
}
.cta-block h2 { font-size: clamp(28px, 4vw, 54px); }
.cta-block p { font-size: 14px; color: #64748b; margin: 16px auto 36px; max-width: 500px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── DASHBOARD PREVIEW ─── */
.dash-preview-wrap {
  margin-top: 48px; position: relative;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(0,245,255,0.18);
  box-shadow: 0 0 60px rgba(0,245,255,0.08);
}
.dash-preview-bar {
  background: rgba(10,13,24,0.95); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(0,245,255,0.10);
}
.dash-url { margin-left: 8px; font-size: 10px; color: #475569; letter-spacing: 0.06em; }
.dash-inner {
  background: #03050b; padding: 24px;
  display: grid; grid-template-columns: 200px 1fr 180px; gap: 12px; min-height: 260px;
}

@media (max-width: 1024px) {
  .dash-inner { grid-template-columns: 1fr 1fr; }
  .dash-panel:nth-child(3) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .dash-inner { grid-template-columns: 1fr; }
  .dash-panel:nth-child(3) { grid-column: span 1; }
}

.dash-panel {
  border-radius: 12px; border: 1px solid rgba(0,245,255,0.12);
  background: rgba(10,13,24,0.8); padding: 14px;
}
.dash-panel-title { font-size: 9px; font-weight: 800; color: var(--cyan); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.dash-feed-item {
  padding: 8px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02); margin-bottom: 6px; font-size: 9px; color: #94a3b8;
}
.dash-feed-item strong { display: block; margin-bottom: 2px; font-size: 9px; }
.dash-globe-sim {
  border-radius: 12px; border: 1px solid rgba(0,245,255,0.10);
  background: radial-gradient(circle at 50% 50%, rgba(0,245,255,0.12), #03050b 55%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(0,245,255,0.5); letter-spacing: 0.14em;
  min-height: 220px; flex-direction: column; gap: 8px;
}
.globe-ring {
  width: 120px; height: 120px; border-radius: 50%;
  border: 2px solid rgba(0,245,255,0.25);
  box-shadow: 0 0 40px rgba(0,245,255,0.15), inset 0 0 30px rgba(0,245,255,0.06);
  animation: pulse-ring 2s ease infinite;
  display: grid; place-items: center; font-size: 32px;
}
.dash-overlay-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02); margin-bottom: 6px; font-size: 9px; color: #94a3b8;
}

/* ─── GEOPOLITICAL BLINDSPOT ─── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  border: 1px solid rgba(255, 34, 68, 0.15);
  border-radius: 18px;
  background: rgba(10, 13, 24, 0.4);
  padding: 32px;
  box-shadow: 0 0 32px rgba(255, 34, 68, 0.02);
  transition: all 0.3s;
}
.problem-card:hover {
  border-color: rgba(255, 34, 68, 0.3);
  box-shadow: 0 0 32px rgba(255, 34, 68, 0.06);
}
.problem-card .card-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 800;
  color: var(--red);
  background: rgba(255, 34, 68, 0.08);
  border: 1px solid rgba(255, 34, 68, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.problem-card .problem-txt {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
}
.problem-card .solution-txt {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.75;
  background: rgba(0, 245, 255, 0.03);
  border: 1px dashed rgba(0, 245, 255, 0.15);
  padding: 16px;
  border-radius: 10px;
  position: relative;
}
.problem-card .solution-txt strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── ENTERPRISE TIER ─── */
.enterprise-section {
  border-top: 1px solid rgba(0, 245, 255, 0.07);
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .enterprise-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.enterprise-card-hero {
  border: 1px solid rgba(179, 102, 255, 0.3);
  border-radius: 24px;
  background: radial-gradient(circle at 100% 0%, rgba(179, 102, 255, 0.08) 0%, rgba(10, 13, 24, 0.8) 70%);
  padding: 48px 36px;
  box-shadow: 0 0 64px rgba(179, 102, 255, 0.08);
  position: relative;
}
.enterprise-card-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), #b366ff);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 0 12px #b366ff;
}
.enterprise-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.enterprise-feature-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}
.enterprise-feature-icon {
  font-size: 12px;
  color: #b366ff;
  font-weight: 800;
  text-shadow: 0 0 6px #b366ff;
}

/* ─── CTA INTERACTIVE GLOBE ─── */
.cta-globe {
  position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%,
    rgba(255,255,255,0.18),
    rgba(0,245,255,0.13) 18%,
    rgba(8,20,35,0.96) 54%,
    #02050c 100%);
  border: 1px solid rgba(0,245,255,0.28);
  box-shadow: 0 0 90px rgba(0,245,255,0.20), inset 0 0 60px rgba(0,0,0,0.6);
  z-index: 2;
  animation: ctaGlobeShimmer 8s ease-in-out infinite alternate;
}
.cta-radar {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0,245,255,0.18), transparent 55deg, transparent 360deg);
  animation: ctaRadarSpin 4s linear infinite;
  z-index: 3; mix-blend-mode: screen; pointer-events: none;
}
.cta-halo {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(0,245,255,0.35);
  animation: ctaHaloPulse 3.9s ease-out infinite;
  pointer-events: none;
}
.cta-orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,245,255,0.25);
  pointer-events: none;
}
#cta-stage .cta-orbit {
  position: absolute; left: 50%; top: 50%;
}
.cta-sat {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cta-tag {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 7px 11px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(8,8,16,0.75); backdrop-filter: blur(10px);
  animation: ctaTagFloat 4s ease-in-out infinite;
}
.cta-tag-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  animation: rdotBlink 1.1s ease infinite;
}

