/* ==========================================================================
   SYNVEST PREMIUM GLOBAL FINTECH WEBSITE LAYOUT
   Futuristic Cyber Dark Theme - CSS Stylesheet
   ========================================================================== */

/* --- Typography & Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Custom Variables & Theme Tokens --- */
:root {
  /* Colors */
  --bg-primary: #020617;        /* Ultra dark slate/navy-black */
  --bg-secondary: #0b1329;      /* Deep space navy */
  --bg-card: rgba(15, 23, 42, 0.55); /* Glassmorphic card background */
  --accent-cyan: #0073ff;       /* Neon electric cyan */
  --accent-blue: #3b82f6;       /* Premium tech blue */
  --accent-blue-glow: rgba(0, 115, 255, 0.25);
  --text-primary: #ffffff;      /* Crisp white */
  --text-secondary: #94a3b8;    /* Cool slate gray */
  --text-muted: #64748b;        /* Slate muted gray */
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Borders */
  --border-cyan-glow: 1px solid rgba(0, 115, 255, 0.15);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Global Resets & Body --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-cyan);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* --- Core Utilities & Glow Effects --- */
.text-cyan {
  color: var(--accent-cyan) !important;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0073ff 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-silver {
  background: linear-gradient(135deg, #ffffff 30%, #cbd5e1 70%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-glow {
  filter: drop-shadow(0 0 10px rgba(0, 115, 255, 0.45));
}

.glow-btn-cyan {
  background: linear-gradient(135deg, #3b82f6, #0073ff);
  color: #000000 !important;
  font-weight: 600;
  border: none;
  box-shadow: 0 0 15px rgba(0, 115, 255, 0.3);
  transition: var(--transition-smooth);
}

.glow-btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 115, 255, 0.6);
  color: #000000 !important;
}

.glow-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.glow-btn-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 115, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 115, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
.custom-navbar {
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-glass);
  padding: 18px 0;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.custom-navbar.scrolled {
  padding: 12px 0;
  background: rgba(2, 6, 23, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-brand-custom {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
}

.navbar-brand-custom svg {
  width: 28px;
  height: 28px;
}

.nav-link-custom {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 16px !important;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link-custom:hover, 
.nav-link-custom.active {
  color: var(--accent-cyan) !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 24px;
}

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  transition: var(--transition-fast);
}

.btn-login:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 115, 255, 0.15);
}

.btn-getstarted {
  font-weight: 600;
  font-size: 14px;
  padding: 8px 22px;
  border-radius: 6px;
}

/* ==========================================================================
   PAGE 1: HERO / LANDING SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px 0;
  background-image: url('assets/hero_space_bg.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.12) 0%, rgba(2, 6, 23, 0) 60%), radial-gradient(circle at 10% 80%, #001028 0%, rgb(0 8 42 / 31%) 50%);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg-primary), rgba(2, 6, 23, 0));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }
}

.hero-subtext {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.btn-hero-primary {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-secondary {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Feature Icons Row */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-top: var(--border-glass);
  padding-top: 30px;
  max-width: 600px;
}

@media (max-width: 575px) {
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 115, 255, 0.08);
  border: 1px solid rgba(0, 115, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.hero-feature-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* --- Floating Mockups Layer --- */
.hero-mockups-container {
  position: relative;
  width: 100%;
  height: 520px;
  z-index: 5;
}

@media (max-width: 991px) {
  .hero-mockups-container {
    height: 420px;
    margin-top: 50px;
  }
}

/* Interactive Dashboard Mockup */
.mockup-dashboard {
  position: absolute;
  left: 0;
  top: 10px;
  width: 82%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 
              0 0 35px rgba(0, 82, 255, 0.15);
  border: var(--border-glass);
  overflow: hidden;
  animation: floatDashboard 6s ease-in-out infinite;
  background: #080f1e;
  z-index: 3;
}

/* Interactive Phone Mockup */
.mockup-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: auto;
  aspect-ratio: 9 / 18.5;
  border-radius: 36px;
  background: #040914;
  border: 8px solid #1e293b;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.8),
              0 0 40px rgba(0, 115, 255, 0.2);
  z-index: 4;
  overflow: hidden;
  animation: floatPhone 6s ease-in-out infinite 1.5s;
}

/* Dashboard Mockup Inner Layout */
.dash-window-header {
  height: 36px;
  background: #0d162a;
  border-bottom: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

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

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dash-dot.red { background: #ef4444; }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.green { background: #10b981; }

.dash-window-title {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.dash-window-actions {
  display: flex;
  gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
}

.dash-body {
  display: flex;
  height: 320px;
}

.dash-sidebar {
  width: 25%;
  background: #060b16;
  border-right: var(--border-glass);
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 12px;
  padding-left: 8px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: var(--text-secondary);
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dash-nav-item:hover, .dash-nav-item.active {
  background: rgba(0, 82, 255, 0.15);
  color: var(--accent-cyan);
}

.dash-content {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08), rgba(0, 0, 0, 0));
}

.dash-stats-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.dash-card {
  background: rgba(15, 23, 42, 0.7);
  border: var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px;
  position: relative;
}

.dash-card-title {
  font-size: 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.dash-card-value {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

.dash-card-change {
  font-size: 8px;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 2px;
}

.dash-chart-container {
  height: 60px;
  width: 100%;
  margin-top: 8px;
}

.dash-badge {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  font-size: 7px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 4px;
}

.dash-progress-title {
  font-size: 8px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.dash-progress-bar-container {
  height: 5px;
  background: #1e293b;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.dash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #0073ff);
  width: 72%;
  border-radius: 3px;
}

.dash-row-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-rank-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;
  margin-top: 8px;
}

.dash-rank-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-btn {
  font-size: 8px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: var(--transition-fast);
  cursor: pointer;
  text-align: center;
  display: inline-block;
}

.dash-btn:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

.dash-btn.btn-cyan {
  background: var(--accent-cyan);
  color: #000;
  border: none;
}

.dash-btn.btn-cyan:hover {
  background: #00d8e6;
  box-shadow: 0 0 10px rgba(0, 115, 255, 0.3);
}

/* Phone Screen Mockup Inner */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 18px;
  background: #1e293b;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #030712;
  padding: 24px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}

.phone-logo {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding-bottom: 30px;
}

.phone-nav-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: rgba(13, 22, 42, 0.95);
  border-top: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 4px;
  z-index: 5;
}

.phone-nav-item {
  color: var(--text-muted);
  font-size: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.phone-nav-item.active {
  color: var(--accent-cyan);
}

.phone-nav-item i {
  font-size: 11px;
}

/* Float Animations */
@keyframes floatDashboard {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatPhone {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   PAGE 2: WHY SYNVEST
   ========================================================================== */
.why-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-primary);
}

.section-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Why cards row */
.why-cards-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1199px) {
  .why-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .why-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-cards-container {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: left;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 115, 255, 0.05) 0%, rgba(2, 6, 23, 0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto;
  color: var(--accent-blue);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.why-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  transition: var(--transition-smooth);
}

.why-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

/* Card Hover States */
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 115, 255, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(0, 115, 255, 0.15);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover .why-card-icon {
  background: rgba(0, 115, 255, 0.12);
  border-color: rgba(0, 115, 255, 0.4);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 115, 255, 0.2);
}

.why-card:hover .why-card-title {
  color: var(--accent-cyan);
}

/* ==========================================================================
   PAGE 3: HOW IT WORKS
   ========================================================================== */
.how-section {
  padding: 100px 0;
  position: relative;
  background-color: #01040f;
  background-image: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, rgba(1, 4, 15, 0) 70%);
}

.how-steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  z-index: 5;
}

@media (max-width: 991px) {
  .how-steps-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.how-step {
  text-align: center;
  position: relative;
}

.how-circle-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(11, 19, 43, 0.8);
  border: 2px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  position: relative;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.how-circle-wrapper i {
  font-size: 32px;
  color: var(--accent-cyan);
  transition: var(--transition-smooth);
}

.how-step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.how-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.how-step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Glowing Connecting Arrows */
.how-connector {
  position: absolute;
  top: 45px;
  left: calc(50% + 55px);
  width: calc(100% - 110px);
  height: 2px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .how-connector {
    display: none; /* Hide horizontal arrows on mobile stacked */
  }
}

.connector-line {
  flex-grow: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent-blue) 0, var(--accent-blue) 6px, transparent 6px, transparent 12px);
  opacity: 0.35;
}

.connector-arrow {
  color: var(--accent-cyan);
  font-size: 12px;
  animation: pulseArrow 2s infinite ease-in-out;
  padding: 0 4px;
}

.how-step:hover .how-circle-wrapper {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 35px rgba(0, 115, 255, 0.4);
  transform: scale(1.05);
}

.how-step:hover .how-circle-wrapper i {
  color: #fff;
  transform: rotate(5deg);
}

@keyframes pulseArrow {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

/* ==========================================================================
   PAGE 4: GLOBAL VISION SECTION
   ========================================================================== */
.global-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.global-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 50%, rgba(59, 130, 246, 0.08) 0%, rgba(2, 6, 23, 0) 65%);
  z-index: 1;
}

.global-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 5;
}

@media (max-width: 991px) {
  .global-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.global-left {
  position: relative;
}

.global-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.global-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn-global {
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Glowing World Map Container */
.map-canvas-container {
  position: relative;
  width: 100%;
  height: 280px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-svg {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.map-hotspot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  cursor: pointer;
}

.map-hotspot::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid var(--accent-cyan);
  border-radius: 50%;
  animation: pulseRing 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulseRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Right Side Mission Panel */
.mission-panel {
  padding: 40px 32px;
  border: var(--border-cyan-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 
              0 0 30px rgba(0, 115, 255, 0.06);
  position: relative;
}

.mission-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #0073ff);
}

.mission-tag {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  display: block;
}

.mission-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.mission-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.mission-statements {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-stmt-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.mission-stmt-item:hover {
  background: rgba(0, 115, 255, 0.04);
  border-color: rgba(0, 115, 255, 0.15);
  transform: translateX(5px);
}

.mission-stmt-bullet {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 115, 255, 0.08);
  border: 1px solid rgba(0, 115, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 700;
}

.mission-stmt-text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   PAGE 5: FINAL CTA / FOOTER
   ========================================================================== */
.cta-section {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 100%, rgba(0, 82, 255, 0.14) 0%, rgba(2, 6, 23, 0) 60%),
              #020617;
  border-bottom: var(--border-glass);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.cta-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 36px;
  }
}

.cta-subtext {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

.btn-cta-primary {
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-secondary {
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Footer Styling */
.custom-footer {
  background-color: #01040a;
  padding: 60px 0 30px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-left {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .footer-logo {
    justify-content: center;
  }
}

.footer-logo svg {
  width: 26px;
  height: 26px;
}

.footer-slogan {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.footer-nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: var(--border-glass);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ==========================================================================
   VIDEO/PRESENTATION OVERLAY MODAL
   ========================================================================== */
.presentation-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.presentation-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content-panel {
  width: 100%;
  max-width: 850px;
  background: #080f1e;
  border: var(--border-cyan-glow);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 115, 255, 0.15);
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.presentation-modal.active .modal-content-panel {
  transform: translateY(0);
}

.modal-header {
  padding: 15px 20px;
  border-bottom: var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--accent-cyan);
}

.modal-video-body {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
}

.demo-presentation-player {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(8, 15, 30, 0.95), rgba(4, 9, 20, 0.98));
  padding: 30px;
  text-align: center;
}

.demo-player-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 115, 255, 0.1);
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 115, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-cyan);
  animation: pulseRing 2s infinite;
}

.demo-player-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.demo-player-desc {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 480px;
}
