/* ==========================================================================
   e-Estonia & Microsoft Inspired Portal - Core Design System & Stylesheet
   ========================================================================== */

/* Sticky Header Container */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 200, 255, 0.15);
  /* Smooth animation transition for sliding up/down */
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
  box-shadow 0.35s ease,
  background 0.35s ease;
}

/* Scrolled elevation effect */
.site-header.scrolled {
  background: rgba(8, 14, 26, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
  0 1px 0 rgba(0, 200, 255, 0.3);
}

/* Hide header off-screen when scrolling down */
.site-header.nav-hidden {
  transform: translateY(-100%);
}

/* 1. CSS Custom Properties / Design Tokens */
:root {
  /* Color Palette */
  --navy-deep: #0d1b2a;
  --navy-surface: #1b263b;
  --navy-card: #202d42;
  --navy-light: #415a77;
  
  --accent-blue: #0066ff;
  --accent-blue-hover: #0052cc;
  --accent-cyan: #00c8ff;
  --accent-glow: rgba(0, 102, 255, 0.3);
  --accent-cyan-glow: rgba(0, 200, 255, 0.2);
  
  --bg-light: #f8f9fa;
  --surface-white: #ffffff;
  --surface-card: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;
  
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-focus: #0066ff;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 4px rgba(13, 27, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(13, 27, 42, 0.15);
  --glass-bg: rgba(13, 27, 42, 0.88);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);
  
  /* Typography & Sizing */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container-max: 1280px;
  
  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Global Resets & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

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

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

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.badge-cyan {
  background: rgba(0, 200, 255, 0.1);
  color: #00a3d9;
  border: 1px solid rgba(0, 200, 255, 0.25);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* 3. Top Announcement & Prototype Control Bar */
.top-notice-bar {
  background: #070e17;
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.portal-switch-pills {
  display: flex;
  align-items: center;
  gap: 8px;
}

.switch-pill-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.switch-pill-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.switch-pill-btn.active {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 0 12px var(--accent-glow);
}

.notice-link {
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

/* 4. Header & Navigation Bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.logo-text span {
  color: var(--accent-cyan);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-inverse);
}

.nav-link.active {
  color: #00c8ff !important;
  font-weight: 700;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0066ff, #00c8ff);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.6);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-trigger-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-trigger-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0052cc 100%);
  color: var(--text-inverse);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}

.btn-outline-dark:hover {
  background: var(--navy-deep);
  color: #ffffff;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 1050;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.mobile-nav-toggle svg {
  pointer-events: none;
}

/* Mobile Drawer Overlay Backdrop */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background: rgba(7, 14, 23, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer Nav */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--navy-deep);
  z-index: 2500;
  padding: 32px 24px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0 !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 5. Home Page - Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(120% 120% at 50% 0%, #1b263b 0%, #0d1b2a 70%, #070e17 100%);
  color: var(--text-inverse);
  padding: 96px 0 80px 0;
  overflow: hidden;
}

/* Ambient glow blobs */
.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-cyan-glow) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 20px 0 24px 0;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, #00c8ff 0%, #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
}

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

/* Hero Stats Banner */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Visual Graphic Box */
.hero-visual-card {
  background: linear-gradient(145deg, rgba(27, 38, 59, 0.8) 0%, rgba(13, 27, 42, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.visual-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px #10b981;
  display: inline-block;
  margin-right: 8px;
}

.visual-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  background: rgba(0, 102, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateX(4px);
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 200, 255, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1rem;
  color: var(--text-inverse);
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.84375rem;
  color: #94a3b8;
}

/* 6. Core Focus Areas (Cards Grid) */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  margin: 12px 0 16px 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

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

.focus-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.2);
}

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

.card-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(0, 102, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.focus-card:hover .card-icon-wrap {
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 8px 20px var(--accent-glow);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent-blue);
}

.card-link svg {
  transition: transform var(--transition-fast);
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* 7. Latest Insights & News Section */
.insights-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.insights-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active {
  background: var(--surface-white);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.insight-card {
  background: var(--surface-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.insight-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.insight-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-cyan);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.insight-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.insight-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
  margin-bottom: 12px;
}

.insight-excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

/* 8. Briefing / Contact CTA Banner Section */
.cta-banner-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #162436 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  backdrop-filter: blur(12px);
}

.cta-info h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-info p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 0.9375rem;
}

/* Briefing Request Form */
.cta-form-box {
  background: var(--navy-card);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #ffffff;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.1);
}

.form-select option {
  background: var(--navy-deep);
  color: #ffffff;
}

/* 9. Educational / Business Inner Page Layout */
.inner-hero-header {
  background: var(--navy-deep);
  color: #ffffff;
  padding: 64px 0 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #cbd5e1;
}

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

.inner-page-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0;
}

.inner-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #94a3b8;
  font-size: 0.875rem;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
}

/* Inner Layout Grid */
.inner-content-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 64px 0 96px 0;
  align-items: start;
  width: 100%;
  max-width: var(--container-max);
  box-sizing: border-box;
}

/* Sticky Left Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 104px;
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sidebar-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.topic-sub-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.menu-item-link:hover {
  background: var(--bg-light);
  color: var(--accent-blue);
}

.menu-item-link.active {
  background: rgba(0, 102, 255, 0.08);
  color: var(--accent-blue);
  font-weight: 600;
  border-left-color: var(--accent-blue);
}

.sidebar-cta-card {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 200, 255, 0.08) 100%);
  border: 1px solid rgba(0, 102, 255, 0.2);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.sidebar-cta-card h5 {
  font-size: 0.9375rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.sidebar-cta-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Reading Area */
.reading-area {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.lead-intro {
  font-size: 1.2rem;
  color: #334155;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 36px;
}

/* Key Takeaways Box */
.takeaways-box {
  background: rgba(0, 102, 255, 0.04);
  border-left: 4px solid var(--accent-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px;
  margin-bottom: 40px;
}

.takeaways-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.takeaways-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.96875rem;
  color: #1e293b;
}

.takeaways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-blue);
  font-weight: 800;
}

.content-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin: 40px 0 20px 0;
  scroll-margin-top: 120px;
}

.content-paragraph {
  font-size: 1.03125rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Infographic Stats Bar inside Content */
.content-infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.info-stat-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.info-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.info-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Quote Callout */
.quote-block {
  margin: 40px 0;
  padding: 32px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  position: relative;
}

.quote-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.quote-author {
  font-size: 0.875rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Related Resources Links Grid */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.resource-download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.resource-download-card:hover {
  background: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pdf-icon {
  width: 44px;
  height: 44px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

/* 10. Multi-Column Footer */
.site-footer {
  background: #070e17;
  color: #cbd5e1;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-bio p {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 16px 0 24px 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #94a3b8;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.contact-office-item {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84375rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal-links a {
  color: #64748b;
}

.footer-legal-links a:hover {
  color: #cbd5e1;
}

/* 11. Search Overlay & Sitemap Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-box {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  position: relative;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 24px;
}

.search-input-wrap input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  width: 100%;
  outline: none;
}

.quick-search-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  cursor: pointer;
}

.quick-tag:hover {
  background: var(--accent-blue);
  color: #fff;
}

/* Toast Feedback */
.toast-notification {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--navy-deep);
  color: #fff;
  border: 1px solid var(--accent-cyan);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* 12. Sitemap Modal Grid Styling */
.sitemap-modal-box {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  position: relative;
  color: #ffffff;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.sitemap-category h4 {
  color: var(--accent-cyan);
  font-size: 1rem;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sitemap-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-category a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.sitemap-category a:hover {
  color: #ffffff;
}

/* 13. Comprehensive Mobile & Tablet Responsive Rules */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cta-banner-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 32px;
  }

  .inner-content-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .sticky-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* Horizontal sub-menu scrolling on tablets/mobile */
  .topic-sub-menu {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
    width: 100%;
    gap: 8px;
    padding-bottom: 8px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .menu-item-link {
    display: inline-block;
    flex-shrink: 0;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: var(--radius-sm);
    padding: 8px 14px;
  }

  .menu-item-link.active {
    border-left-color: transparent;
    border-bottom-color: var(--accent-blue);
  }

  .footer-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  /* Container Padding */
  .container {
    padding: 0 16px;
  }

  /* Top Notice Bar Mobile */
  .top-notice-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .portal-switch-pills {
    flex-wrap: wrap;
    gap: 6px;
  }

  .switch-pill-btn {
    font-size: 0.71875rem;
    padding: 4px 10px;
  }

  /* Header & Navigation Mobile */
  .site-header {
    height: 68px;
  }

  .header-inner {
    height: 68px;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .brand-logo {
    font-size: 1.15rem;
    gap: 8px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .btn-primary {
    display: none; /* Hidden on header for small mobile to keep space clean; available in hero & drawer */
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 48px 0 40px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
    margin: 16px 0 20px 0;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 14px 12px;
    text-align: center;
  }

  .stat-number {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-visual-card {
    padding: 20px 16px;
  }

  /* Focus Cards Grid Mobile */
  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .focus-card {
    padding: 24px 20px;
  }

  /* Insights Section Filter Tabs Horizontal Scroll Mobile */
  .insights-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }

  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    padding: 6px 16px;
    font-size: 0.8125rem;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .insight-thumb {
    height: 170px;
  }

  .insight-content {
    padding: 20px;
  }

  /* CTA Contact Section Mobile */
  .cta-banner-section {
    padding: 56px 0;
  }

  .cta-banner-card {
    padding: 28px 18px;
    border-radius: var(--radius-md);
  }

  .cta-info h3 {
    font-size: 1.75rem;
  }

  .cta-form-box {
    padding: 20px 16px;
  }

  /* iOS Mobile Form Inputs standard font-size 16px */
  .form-input, .form-select, .form-textarea {
    font-size: 16px;
    padding: 12px;
  }

  /* Inner Page Mobile Layout */
  .inner-hero-header {
    padding: 40px 0 32px 0;
  }

  .inner-page-title {
    font-size: clamp(1.75rem, 6.5vw, 2.5rem);
    margin: 12px 0;
  }

  .inner-meta-bar {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8125rem;
  }

  .reading-area {
    padding: 28px 18px;
    border-radius: var(--radius-md);
  }

  .lead-intro {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .takeaways-box {
    padding: 20px 16px;
  }

  .content-heading {
    font-size: 1.45rem;
    margin: 32px 0 16px 0;
  }

  .content-paragraph {
    font-size: 0.96875rem;
    line-height: 1.65;
  }

  .content-infographic-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-block {
    padding: 24px 18px;
  }

  .quote-text {
    font-size: 1rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding-top: 56px;
  }

  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Sitemap & Search Modals Mobile */
  .sitemap-modal-box {
    width: 95%;
    padding: 24px 16px;
    max-height: 88vh;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .search-modal-box {
    width: 95%;
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    margin-top: 0;
  }
}

/* ==========================================================================
   World Accelerator Page - Dedicated Styling & Visual Components
   ========================================================================== */

/* Page Background & Theme Reset for WA */
.wa-page-body {
  background-color: #080e1a;
  color: #f1f5f9;
}

/* Section Header Dividers with Glowing Dots */
.wa-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00c8ff;
  margin-bottom: 28px;
  position: relative;
}

.wa-section-divider::before,
.wa-section-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.4));
}

.wa-section-divider::after {
  background: linear-gradient(90deg, rgba(0, 200, 255, 0.4), transparent);
}

.wa-dot {
  width: 6px;
  height: 6px;
  background-color: #00c8ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00c8ff;
}

/* Hero Section Styling */
.wa-hero {
  position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.18) 0%, rgba(13, 27, 42, 0.95) 70%),
              url('images/world_accelerator_globe.jpg') no-repeat center right / cover;
  padding: 80px 0 100px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.wa-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(8, 14, 26, 0.96) 0%, rgba(8, 14, 26, 0.85) 55%, rgba(8, 14, 26, 0.4) 100%);
  z-index: 1;
}

.wa-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.wa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.35);
  color: #00c8ff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.wa-hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.wa-hero-title span.highlight-blue {
  background: linear-gradient(135deg, #00c8ff 0%, #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wa-hero-subline {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.wa-hero-quote {
  background: rgba(13, 27, 42, 0.75);
  border-left: 3px solid #00c8ff;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-hero-quote p {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: #38bdf8;
  margin: 0;
}

.wa-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wa-btn-primary {
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  color: #ffffff !important;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
  background: linear-gradient(135deg, #0077ff 0%, #0055ee 100%);
}

.wa-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.wa-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #00c8ff;
  color: #00c8ff !important;
}

/* About Section */
.wa-about-section {
  padding: 64px 0;
  background-color: #0b1329;
  position: relative;
}

.wa-about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.wa-about-header {
  margin-bottom: 24px;
}

.wa-about-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.wa-about-lead {
  font-size: 1.15rem;
  color: #38bdf8;
  font-weight: 500;
  line-height: 1.5;
}

.wa-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.wa-about-item {
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.wa-about-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 255, 0.3);
}

.wa-about-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 200, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c8ff;
}

.wa-about-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Core Proposition Section */
.wa-core-section {
  padding: 64px 0;
  background-color: #080e1a;
}

.wa-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wa-core-card {
  background: rgba(13, 27, 42, 0.8);
  color: #ffffff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 200, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wa-core-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #00c8ff);
}

.wa-core-card:hover {
  transform: translateY(-6px);
  background: rgba(13, 27, 42, 0.95);
  border-color: #00c8ff;
  box-shadow: 0 15px 40px rgba(0, 200, 255, 0.35);
}

.wa-core-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.wa-core-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff !important;
  margin-bottom: 10px;
  line-height: 1.3;
}

.wa-core-card p {
  font-size: 0.875rem;
  color: #cbd5e1 !important;
  line-height: 1.5;
  margin: 0;
}

/* Navigation Gateway Grid Layout (3 Columns / 12 Cards) */
.wa-gateway-section {
  padding: 64px 0 80px 0;
  background: #0b1329;
}

.wa-gateway-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wa-layer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wa-layer-header {
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wa-layer-header.layer-blue {
  background: linear-gradient(135deg, #0f4c81 0%, #0066ff 100%);
  border: 1px solid rgba(0, 102, 255, 0.4);
}

.wa-layer-header.layer-teal {
  background: linear-gradient(135deg, #0d5c63 0%, #00b894 100%);
  border: 1px solid rgba(0, 184, 148, 0.4);
}

.wa-layer-header.layer-purple {
  background: linear-gradient(135deg, #4a3080 0%, #6c5ce7 100%);
  border: 1px solid rgba(108, 92, 231, 0.4);
}

.wa-layer-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.wa-tab-card {
  background: rgba(13, 27, 42, 0.85);
  color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}

.wa-tab-card:hover {
  transform: translateY(-4px);
  background: rgba(13, 27, 42, 0.98);
  box-shadow: 0 12px 30px rgba(0, 200, 255, 0.3);
  border-color: #00c8ff;
}

.wa-tab-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.wa-tab-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #0066ff;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-layer-column:nth-child(2) .wa-tab-num {
  background: #00b894;
}

.wa-layer-column:nth-child(3) .wa-tab-num {
  background: #6c5ce7;
}

.wa-tab-header-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 2px;
}

.wa-tab-header-info p.one-liner {
  font-size: 0.8125rem;
  color: #38bdf8 !important;
  font-weight: 500;
}

.wa-tab-bullets {
  list-style: none;
  margin: 12px 0 16px 0;
  padding-left: 0;
}

.wa-tab-bullets li {
  font-size: 0.8125rem;
  color: #cbd5e1 !important;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.45;
}

.wa-tab-bullets li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: 0;
  color: #0066ff;
  font-weight: bold;
}

.wa-layer-column:nth-child(2) .wa-tab-bullets li::before {
  color: #00b894;
}

.wa-layer-column:nth-child(3) .wa-tab-bullets li::before {
  color: #6c5ce7;
}

.wa-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0066ff;
  font-weight: 700;
  font-size: 0.85rem;
  background: transparent;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.wa-layer-column:nth-child(2) .wa-tab-btn {
  color: #00b894;
}

.wa-layer-column:nth-child(3) .wa-tab-btn {
  color: #6c5ce7;
}

.wa-tab-card:hover .wa-tab-btn {
  transform: translateX(4px);
}

/* Impact Strip Section */
.wa-impact-section {
  padding: 64px 0;
  background-color: #080e1a;
}

.wa-impact-box {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(11, 19, 41, 0.95) 100%);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.wa-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.wa-impact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.wa-impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.wa-impact-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-impact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.2);
  border: 2px solid #00c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #00c8ff;
}

.wa-impact-stat {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.wa-impact-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #00c8ff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wa-impact-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
}

.wa-impact-footer-banner {
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #38bdf8;
  text-transform: uppercase;
}

/* Interactive Detail Modal for 12 Gateway Tabs */
.wa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.wa-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.wa-modal-content,
.wa-modal-box {
  background: #080e1a;
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 20px;
  width: 90%;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #ffffff;
}

.wa-modal-overlay.active .wa-modal-content,
.wa-modal-overlay.active .wa-modal-box {
  transform: translateY(0);
}

.wa-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.wa-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #00c8ff;
}

/* Responsive Rules for World Accelerator Page */
@media (max-width: 1024px) {
  .wa-gateway-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wa-core-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wa-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wa-hero-title {
    font-size: 2.1rem;
  }

  .wa-core-grid {
    grid-template-columns: 1fr;
  }

  .wa-impact-grid {
    grid-template-columns: 1fr;
  }

  .wa-hero {
    padding: 60px 0 80px 0;
  }
}

/* ==========================================================================
   Multi-Page Navigation Bar & Dropdown Switcher (3-Page Architecture)
   ========================================================================== */

/* Universal Section Scroll Margin Offset for Sticky Header */
section[id], div[id] {
  scroll-margin-top: 85px;
}

/* Top Notice Bar Enhancements */
.top-notice-bar {
  background: #080f1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  font-size: 0.8125rem;
  position: relative;
  z-index: 1000;
}

.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Dropdown Selector Component */
.page-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.page-dropdown-trigger {
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.35);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.page-dropdown-trigger:hover {
  background: rgba(0, 200, 255, 0.22);
  border-color: #00c8ff;
  color: #00c8ff;
}

.page-dropdown-trigger .arrow-icon {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.page-dropdown-wrapper.active .page-dropdown-trigger .arrow-icon {
  transform: rotate(180deg);
}

.page-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #0f172a;
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 240px;
  padding: 8px 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-dropdown-wrapper.active .page-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}

.page-dropdown-item:hover {
  background: rgba(0, 102, 255, 0.15);
  color: #00c8ff;
}

.page-dropdown-item.active {
  color: #00c8ff;
  font-weight: 700;
  background: rgba(0, 200, 255, 0.1);
}

.page-dropdown-item .page-num-tag {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.7;
}

/* History / Recent Page Tracker Aligned to Top-Right */
.top-history-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  text-align: right;
}

.recent-page-link {
  color: #00c8ff !important;
  font-size: 0.8125rem;
  font-weight: 700;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  padding: 4px 12px;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 6px;
  text-decoration: none;
}

.recent-page-link:hover {
  color: #ffffff !important;
  background: rgba(0, 200, 255, 0.22);
  border-color: #00c8ff;
}

.recent-page-link:hover {
  color: #00c8ff;
}

.sequence-nav-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sequence-nav-btn:hover {
  background: rgba(0, 200, 255, 0.15);
  border-color: #00c8ff;
  color: #ffffff;
}

/* Shared Contact Us Component Button */
.contact-us-btn-component {
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  color: #ffffff !important;
  border: 1px solid rgba(0, 200, 255, 0.4);
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  transition: all 0.2s ease;
}

.contact-us-btn-component:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
  background: linear-gradient(135deg, #0077ff 0%, #0055ee 100%);
}

/* ==========================================================================
   Smart Scroll-Up Sticky Header Animation & Glassmorphism Rules
   ========================================================================== */
.site-header {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

/* Hidden when scrolling down */
.site-header.header-hidden {
  transform: translateY(-100%) !important;
}

/* Sticky & Glassmorphism when scrolling UP */
.site-header.header-sticky-up {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  transform: translateY(0) !important;
  background: rgba(8, 14, 26, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(0, 200, 255, 0.25) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5) !important;
  animation: slideDownHeader 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownHeader {
  from {
    transform: translateY(-100%);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   Floating Bottom-Right Contact Us Button Component
   ========================================================================== */
.floating-contact-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  color: #ffffff !important;
  border: 1px solid rgba(0, 200, 255, 0.5);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.45);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-contact-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 200, 255, 0.6);
  background: linear-gradient(135deg, #0077ff 0%, #0055ee 100%);
  border-color: #00c8ff;
}

.floating-contact-btn .btn-text {
  display: inline-block;
  white-space: nowrap;
}

.floating-contact-btn .phone-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: #ffffff;
}

/* ==========================================================================
   Floating Bottom-Left Next/Previous Sequence Controls Component
   ========================================================================== */
.floating-sequence-nav {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seq-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.92);
  border: 1px solid rgba(0, 200, 255, 0.4);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.seq-icon-btn:hover:not(.disabled) {
  transform: translateY(-3px) scale(1.06);
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  border-color: #00c8ff;
  box-shadow: 0 12px 30px rgba(0, 200, 255, 0.5);
  color: #00c8ff !important;
}

.seq-icon-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .floating-sequence-nav {
    bottom: 20px;
    left: 20px;
    gap: 8px;
  }

  .seq-icon-btn {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .floating-contact-btn .btn-text {
    display: none !important;
  }
}

/* ==========================================================================
   Exact Match Design Styles (Inspired by World Accelerator Design Sheet)
   ========================================================================== */

/* Top Split Hero Section */
.wa-hero-split-section {
  background: radial-gradient(circle at 70% 30%, #0d2142 0%, #080e1a 70%);
  padding: 40px 0 32px 0;
  border-bottom: 1px solid rgba(0, 200, 255, 0.15);
}

.wa-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.wa-hero-split-left {
  background: rgba(13, 27, 42, 0.85);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.wa-brand-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.wa-brand-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c8ff 0%, #0052cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 200, 255, 0.4);
}

.wa-brand-text {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1;
}

.wa-exact-hero-heading {
  font-size: 2.15rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 12px 0 16px 0;
}

.wa-exact-hero-heading .highlight-blue {
  background: linear-gradient(135deg, #00c8ff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wa-exact-hero-subline {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin: 0;
}

.wa-hero-mission-box {
  background: rgba(0, 200, 255, 0.06);
  border-left: 3px solid #00c8ff;
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(0, 200, 255, 0.15);
  border-right: 1px solid rgba(0, 200, 255, 0.15);
  border-bottom: 1px solid rgba(0, 200, 255, 0.15);
}

.wa-exact-quote-box {
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  color: #38bdf8;
  text-align: center;
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.wa-exact-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.wa-btn-blue-pill {
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
  border: 1px solid rgba(0, 200, 255, 0.4);
  cursor: pointer;
}

.wa-btn-blue-pill:hover {
  background: linear-gradient(135deg, #0077ff 0%, #0055ee 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.6);
  border-color: #00c8ff;
}

.wa-btn-white-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.wa-btn-white-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #00c8ff;
  color: #00c8ff !important;
  transform: translateY(-2px);
}

/* Right Column: 3D Globe Card Container */
.wa-hero-split-right {
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Globe Canvas Overlay Badges */
.wa-globe-overlay-badge {
  position: absolute;
  background: rgba(8, 14, 26, 0.88);
  border: 1px solid rgba(0, 200, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 8px 16px;
  color: #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-globe-overlay-badge.top-badge {
  top: 16px;
  left: 16px;
}

.wa-globe-overlay-badge.bottom-badge {
  bottom: 16px;
  right: 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.wa-globe-overlay-badge .pulse-dot {
  width: 10px;
  height: 10px;
  background: #00c8ff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #00c8ff;
  animation: pulseGlow 2s infinite;
}

.wa-globe-overlay-badge .highlight-text {
  color: #00c8ff;
  font-weight: 700;
}

.wa-props-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.wa-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.wa-prop-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wa-prop-icon.icon-blue { background: #0052cc; }
.wa-prop-icon.icon-green { background: #16a34a; }
.wa-prop-icon.icon-orange { background: #ea580c; }
.wa-prop-icon.icon-purple { background: #7c3aed; }

.wa-prop-content h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.wa-prop-content p {
  font-size: 0.78rem;
  color: #cbd5e1;
  line-height: 1.35;
  margin: 0;
}

.wa-globe-preview-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
}

.wa-globe-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.3);
}

/* Section Divider Headers */
.wa-section-heading-divider {
  text-align: center;
  margin: 36px 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.wa-divider-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.4), transparent);
}

.wa-divider-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #38bdf8 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 12px rgba(0, 200, 255, 0.3);
}

.wa-divider-title .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00c8ff;
  display: inline-block;
  box-shadow: 0 0 10px #00c8ff;
}

.wa-divider-title .bullet {
  color: #00b894;
}

/* 3-Column 12-Tab Gateway Layout */
.wa-exact-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.wa-exact-col {
  background: rgba(13, 27, 42, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
}

.wa-exact-col-header {
  padding: 14px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wa-exact-col-header.header-blue { background: linear-gradient(135deg, #0052cc, #0066ff); }
.wa-exact-col-header.header-green { background: linear-gradient(135deg, #00875a, #00b894); }
.wa-exact-col-header.header-purple { background: linear-gradient(135deg, #5b21b6, #6c5ce7); }

.wa-col-num-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.header-blue .wa-col-num-badge { color: #0052cc; }
.header-green .wa-col-num-badge { color: #00875a; }
.header-purple .wa-col-num-badge { color: #5b21b6; }

.wa-exact-col-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  flex-grow: 1;
}

.wa-exact-tab-card {
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid rgba(0, 200, 255, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.wa-exact-tab-card:hover {
  transform: translateY(-3px);
  background: rgba(13, 27, 42, 0.95);
  border-color: #00c8ff;
  box-shadow: 0 8px 25px rgba(0, 200, 255, 0.3);
}

.wa-tab-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.3);
}

.icon-bg-blue { background: #0066ff; }
.icon-bg-green { background: #00b894; }
.icon-bg-purple { background: #6c5ce7; }

.wa-tab-card-content h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.wa-tab-card-content p {
  font-size: 0.825rem;
  color: #cbd5e1 !important;
  line-height: 1.4;
  margin: 0;
}

/* Lower Impact Metrics Grid */
.wa-exact-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.wa-exact-impact-card {
  background: rgba(13, 27, 42, 0.75);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.wa-exact-impact-card:hover {
  transform: translateY(-3px);
  border-color: #00c8ff;
  box-shadow: 0 12px 30px rgba(0, 200, 255, 0.25);
}

.impact-badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
}

.impact-stat-number {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff !important;
}

.impact-stat-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.impact-stat-desc {
  font-size: 0.825rem;
  color: #94a3b8 !important;
  line-height: 1.35;
}

/* Full-Width Dark Partner Footer Bar */
.wa-partner-footer-bar {
  background: #071426;
  color: #ffffff;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-partner-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.wa-partner-vision-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-partner-logos-list {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.wa-partner-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.wa-partner-logo-item:hover {
  opacity: 1;
}

/* Responsive adjustments for exact layout */
@media (max-width: 1024px) {
  .wa-hero-split-grid {
    grid-template-columns: 1fr;
  }
  .wa-hero-split-right {
    grid-template-columns: 1fr;
  }
  .wa-exact-columns-grid {
    grid-template-columns: 1fr;
  }
  .wa-exact-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wa-exact-impact-grid {
    grid-template-columns: 1fr;
  }
  .wa-partner-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Pretty Partner Credibility Marquee Section */
.wa-partner-marquee-section {
  background: linear-gradient(180deg, #030712 0%, #081329 50%, #030712 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(0, 200, 255, 0.25);
  border-bottom: 1px solid rgba(0, 200, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.wa-marquee-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 150px;
  background: radial-gradient(ellipse at center, rgba(0, 200, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.marquee-header {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.marquee-divider-line {
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.5), transparent);
}

.marquee-title-text {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 14px rgba(0, 200, 255, 0.4);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background-color: #00c8ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00c8ff;
}

.wa-marquee-track {
  display: flex !important;
  flex-direction: row !important;
  overflow: hidden !important;
  width: 100% !important;
  position: relative;
  z-index: 2;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.wa-marquee-content {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 32px !important;
  width: max-content !important;
  animation: marqueeScroll 28s linear infinite;
}

.wa-marquee-track:hover .wa-marquee-content {
  animation-play-state: paused;
}

/* Glass Pill Logo Card - Bigger & Prominent */
.wa-partner-logo-item {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  flex-shrink: 0 !important;
  background: rgba(13, 27, 42, 0.85);
  border: 1.5px solid rgba(0, 200, 255, 0.3);
  border-radius: 60px;
  padding: 14px 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.wa-partner-logo-item:hover {
  transform: translateY(-4px) scale(1.04);
  background: rgba(13, 27, 42, 0.98);
  border-color: #00c8ff;
  box-shadow: 0 12px 35px rgba(0, 200, 255, 0.4);
}

.partner-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 200, 255, 0.2);
  transition: transform 0.25s ease;
}

.wa-partner-logo-item:hover .partner-icon-wrapper {
  transform: scale(1.12);
  border-color: #00c8ff;
}

.partner-name {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
}

.partner-tag {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  margin-left: 6px;
}
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.3);
}

.partner-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease;
}

.wa-partner-logo-item:hover .partner-icon-wrapper {
  transform: scale(1.1);
}

.partner-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.partner-tag {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 600;
  margin-left: 6px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px #00c8ff; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* Hover effects for challenge & presence cards */
.wa-challenge-card:hover {
  transform: translateX(4px);
  border-color: #00c8ff !important;
  background: rgba(13, 27, 42, 0.95) !important;
}

.wa-presence-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 200, 255, 0.25);
}

@media (max-width: 900px) {
  .wa-storytelling-grid,
  .wa-presence-grid {
    grid-template-columns: 1fr !important;
  }
}








