/* ==========================================================================
   A ONE AFRO LIMITED - World-Class Corporate Design System
   Benchmarked on top 5 global consultancies: IQVIA, ZS, Trinity, Clarivate, CRA
   Core Aesthetics: Asymmetrical Glassmorphism, Neon Gradients, High-Contrast Rhythm
   ========================================================================== */

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

/* --- Brand Tokens System --- */
:root {
  /* Primary letterhead colors calibrated for high contrast */
  --royal-blue: #004B87;
  --royal-blue-light: #0066B3;
  --royal-blue-dark: #003360;
  --royal-blue-rgb: 0, 75, 135;
  
  --deep-navy: #0A1128;
  --deep-navy-dark: #050814;
  --deep-navy-light: #111C3A;
  
  --charcoal-black: #0F172A;
  --charcoal-dark: #090D16;
  --charcoal-light: #1E293B;
  
  --silver-gray: #E2E8F0;
  --silver-light: #F8FAFC;
  --silver-border: rgba(0, 75, 135, 0.08);
  --white: #FFFFFF;
  
  /* Neon Accents */
  --neon-emerald: #10B981;
  --neon-emerald-dark: #059669;
  --neon-emerald-light: #34D399;
  
  --accent-gold: #F59E0B;
  --accent-gold-dark: #D97706;
  
  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Premium Micro-Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -5px rgba(0, 75, 135, 0.08), 0 8px 16px -6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 25px 50px -12px rgba(0, 75, 135, 0.15), 0 0 30px rgba(0, 75, 135, 0.04);
  --shadow-glow-blue: 0 0 25px rgba(0, 75, 135, 0.35);
  --shadow-glow-green: 0 0 25px rgba(16, 185, 129, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Resets & Layout --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--silver-light);
  color: var(--charcoal-light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--deep-navy-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

p {
  color: #4A5568;
  margin-bottom: 1.25rem;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--deep-navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--royal-blue);
  border-radius: 6px;
  border: 3px solid var(--deep-navy-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--royal-blue-light);
}

/* ==========================================================================
   Global Layout & Asymmetrical Design System
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

/* World-Class Asymmetrical Card Framework (ZS & IQVIA Style) */
.glass-card {
  background: var(--white);
  border: 1px solid var(--silver-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Asymmetrical top border line */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-blue), var(--royal-blue-light));
  transform: scaleX(0.4);
  transform-origin: left;
  transition: var(--transition-normal);
}

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

.glass-card:hover::before {
  transform: scaleX(1);
}

/* Offset positioning to break monotony */
.offset-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.offset-left {
  transform: translateY(-20px);
}

/* Gradient typography */
.gradient-text {
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  gap: 0.6rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  color: var(--white);
  box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 75, 135, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--neon-emerald), var(--neon-emerald-dark));
  color: var(--white);
  box-shadow: var(--shadow-glow-green);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--silver-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--deep-navy-dark);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

/* Section headers (CRA & Clarivate Style) */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.section-header .subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  color: var(--deep-navy-dark);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-blue), var(--accent-gold));
  border-radius: 2px;
}

/* ==========================================================================
   Header and Sticky Navigation (Frosted Glass Navy)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 2.25rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  padding: 0.85rem 0;
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 52px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.logo-wrapper svg {
  height: 100%;
  width: auto;
}

/* Menu links - stylized for dark layout overlay */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--silver-light);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
}

.site-header:not(.scrolled) .nav-link {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--royal-blue-light), var(--accent-gold));
  transition: var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-gold);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--silver-light);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Ensure mobile links inside the drawer remain highly readable (white) */
@media (max-width: 768px) {
  .logo-wrapper {
    height: 40px; /* Highly compact and responsive for small viewports */
  }
  .nav-menu .nav-link {
    color: var(--silver-light) !important;
    text-shadow: none !important;
  }
  .nav-menu .nav-link::after {
    background: linear-gradient(90deg, var(--royal-blue-light), var(--accent-gold));
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--accent-gold) !important;
  }
  .mobile-nav-toggle span {
    background: var(--silver-light) !important;
  }
  /* Active state mobile toggle burger spans remain white for visibility */
  .mobile-nav-toggle.active span {
    background: var(--silver-light) !important;
  }
}

/* ==========================================================================
   Home Page Overhaul - IQVIA Immersive Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 14rem 0 10rem 0;
  background: linear-gradient(135deg, var(--deep-navy-dark) 0%, #08132d 50%, #032115 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Interactive SVG visual grid in background */
.hero-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 75, 135, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.hero-content .tagline-banner {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--silver-light);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
}

.hero-content h1 span.accent {
  background: linear-gradient(135deg, var(--royal-blue-light), var(--neon-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p.hero-lead {
  font-size: 1.25rem;
  color: #94A3B8;
  margin-bottom: 3rem;
  max-width: 620px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1.75rem;
}

/* Beautiful Supply Chain Flow Visualizer */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstract-graphic-container {
  width: 100%;
  max-width: 460px;
  height: 460px;
  position: relative;
}

.pulse-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 75, 135, 0.12) 0%, transparent 70%);
  animation: pulse-ring 6s infinite ease-in-out;
}

.pulse-circle.c1 { width: 460px; height: 460px; animation-delay: 0s; }
.pulse-circle.c2 { width: 360px; height: 360px; animation-delay: 2s; }
.pulse-circle.c3 { width: 260px; height: 260px; animation-delay: 4s; }

.interactive-zambia-map {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  z-index: 10;
  filter: drop-shadow(0 20px 45px rgba(0, 75, 135, 0.35));
  animation: float-map 6s infinite ease-in-out;
}

/* Supply Node points */
.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--neon-emerald);
  border-radius: 50%;
  box-shadow: var(--shadow-glow-green);
  z-index: 20;
}

.map-pin::after {
  content: '';
  position: absolute;
  top: -7px;
  left: -7px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--neon-emerald);
  border-radius: 50%;
  animation: pulse-pin 2s infinite ease-out;
}

.pin-lusaka { top: 68%; left: 54%; }
.pin-copperbelt { top: 40%; left: 44%; }

/* --- Solutions Grid (Trinity Style) --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.solution-card {
  text-align: left;
  border-top: 4px solid var(--royal-blue);
  background: var(--white);
  padding: 2.75rem 2rem;
}

.solution-card:hover {
  border-top-color: var(--accent-gold);
}

.solution-card .card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 75, 135, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--royal-blue);
  transition: var(--transition-normal);
}

.solution-card:hover .card-icon {
  background: var(--royal-blue);
  color: var(--white);
  box-shadow: var(--shadow-glow-blue);
}

.solution-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--deep-navy-dark);
}

.solution-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate-gray);
  margin-bottom: 1.5rem;
}

.solution-card .card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--royal-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

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

.solution-card:hover .card-link {
  color: var(--accent-gold-dark);
}

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

/* ==========================================================================
   About Us Page Rework - Trinity Asymmetrical Blocks
   ========================================================================== */

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

.mv-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--silver-border);
}

.mv-card .icon-header {
  font-size: 3.5rem;
  color: var(--royal-blue);
  margin-bottom: 1.75rem;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0, 75, 135, 0.15));
}

.mv-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--deep-navy-dark);
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Values Grid cards (Charles River Style - Clean Minimal) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-md);
  border-bottom: 4px solid var(--royal-blue);
}

.value-card:hover {
  border-bottom-color: var(--accent-gold);
}

.value-card .value-num {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 900;
  color: rgba(0, 75, 135, 0.08);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.value-card:hover .value-num {
  color: rgba(245, 158, 11, 0.2);
  transform: scale(1.1);
}

.value-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

/* Compliance Grid Layout */
.compliance-intro {
  margin-bottom: 4rem;
  background: rgba(0, 75, 135, 0.03);
  border-left: 5px solid var(--royal-blue);
  padding: 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.75rem;
  margin-bottom: 6rem;
}

.compliance-card {
  background: var(--white);
  border: 1px solid var(--silver-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
}

.compliance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition-fast);
}

.compliance-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 75, 135, 0.2);
}

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

.compliance-card .comp-icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 75, 135, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  margin-bottom: 1.75rem;
  font-weight: 800;
  font-size: 1.1rem;
}

.compliance-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.compliance-card .comp-code {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--royal-blue);
  margin-bottom: 0.85rem;
  display: block;
  letter-spacing: 0.5px;
}

/* Timeline Components */
.timeline-container::before {
  background: linear-gradient(180deg, var(--royal-blue-light) 0%, var(--accent-gold) 100%);
  width: 3px;
}

.timeline-dot {
  background: var(--accent-gold);
  border-color: var(--white);
}

.timeline-date {
  font-size: 1rem;
  color: var(--royal-blue-light);
  font-weight: 800;
}

.timeline-content {
  border: 1px solid var(--silver-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  border-color: rgba(0, 75, 135, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   ESG & CSR Page - Overhaul (Clarivate & McKinsey Style)
   ========================================================================== */

.esg-hero {
  background: linear-gradient(135deg, var(--deep-navy-dark) 0%, #051a2d 100%);
  padding: 10rem 0 6rem 0;
}

.esg-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.esg-card {
  border-top: 4px solid var(--royal-blue);
}

.esg-card:nth-child(2) { border-top-color: var(--neon-emerald); }
.esg-card:nth-child(3) { border-top-color: var(--accent-gold); }

.esg-card .esg-badge {
  background: rgba(0, 75, 135, 0.08);
  color: var(--royal-blue-light);
}

.esg-card:nth-child(2) .esg-badge { background: rgba(16, 185, 129, 0.08); color: var(--neon-emerald); }
.esg-card:nth-child(3) .esg-badge { background: rgba(245, 158, 11, 0.08); color: var(--accent-gold-dark); }

/* ==========================================================================
   Contact & Secure Financial Authorization Portal (Clarivate & ZS style)
   ========================================================================== */

.contact-item-row .info-icon {
  background: rgba(0, 75, 135, 0.05);
  color: var(--royal-blue);
  border-radius: var(--radius-md);
}

.form-input:focus {
  border-color: var(--royal-blue-light);
  box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.15);
}

/* Magnificent Secure Banking card layouts */
.financial-secure-panel {
  background: var(--white);
  border: 1px solid var(--silver-border);
  border-left: 6px solid var(--royal-blue);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.financial-secure-panel:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent-gold);
}

.financial-secure-panel .secure-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 75, 135, 0.08);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.financial-secure-panel h3 {
  font-size: 2rem;
  color: var(--deep-navy-dark);
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.financial-secure-panel .secure-tag {
  background: rgba(16, 185, 129, 0.08);
  color: var(--neon-emerald-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.4rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.financial-secure-panel .secure-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--neon-emerald);
  border-radius: 50%;
  display: inline-block;
}

.financial-secure-panel p.secure-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate-gray-dark);
  margin-bottom: 2.5rem;
}

.financial-secure-panel .secure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.secure-info-box {
  background: rgba(0, 75, 135, 0.02);
  border: 1px dashed rgba(0, 75, 135, 0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.secure-info-box h4 {
  font-size: 1.2rem;
  color: var(--royal-blue-dark);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.secure-info-box p {
  font-size: 0.95rem;
  color: var(--slate-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

.secure-action-area {
  text-align: center;
  border-top: 1px solid rgba(0, 75, 135, 0.08);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Dynamic clearance interactive state */
.clearance-verification-display {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  animation: fade-in 0.4s ease-out;
  max-width: 500px;
  margin: 0 auto;
}

.clearance-verification-display.active {
  display: flex;
}

.clearance-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 75, 135, 0.1);
  border-left-color: var(--royal-blue);
  border-radius: 50%;
  animation: secure-spin 1.2s infinite linear;
}

.clearance-status-msg {
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal-blue);
  letter-spacing: 0.5px;
}

.clearance-result-card {
  display: none;
  background: rgba(16, 185, 129, 0.03);
  border: 1.5px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  animation: fade-in 0.4s ease-out;
  box-shadow: var(--shadow-glow-green);
}

.clearance-result-card.active {
  display: block;
}

.clearance-result-card h5 {
  font-size: 1.1rem;
  color: var(--neon-emerald-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clearance-result-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Footer Component & Copy
   ========================================================================== */

.site-footer {
  background: var(--deep-navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h4::after {
  background: var(--accent-gold);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.badge-outline {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   Keyframes & Responsiveness Breakpoints
   ========================================================================== */

@keyframes float-map {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-pin {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1.15); opacity: 0.3; box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes secure-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--deep-navy);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    transition: var(--transition-normal);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-ctas {
    justify-content: center;
  }
}

/* ==========================================================================
   PREMIUM REDESIGN v2 — Bold & Modern (A One Afro Limited) | Zambia-focused
   Appended override layer + new components. 2026-05.
   ========================================================================== */
body{ font-size:1.0625rem; line-height:1.7; -webkit-font-smoothing:antialiased; }
.container{ max-width:1240px; }
h1,h2,h3,h4{ letter-spacing:-0.02em; }
.section-padding{ padding:6.5rem 0; }
.section-header h2{ font-size:clamp(2rem,4vw,3.1rem); font-weight:800; line-height:1.08; }

/* Eyebrow / subtitle */
.subtitle{ display:inline-flex; align-items:center; gap:.55rem; font-family:var(--font-heading);
  font-weight:700; letter-spacing:.16em; text-transform:uppercase; font-size:.78rem; color:var(--royal-blue-light); }
.subtitle::before{ content:""; width:26px; height:2px; display:inline-block;
  background:linear-gradient(90deg,var(--accent-gold),var(--royal-blue-light)); }

/* Buttons */
.btn{ border-radius:999px; font-weight:700; padding:.95rem 1.9rem; transition:var(--transition-normal); border:none; cursor:pointer; }
.btn-primary{ background:linear-gradient(135deg,var(--royal-blue-light),var(--royal-blue)); color:#fff; box-shadow:0 12px 30px -10px rgba(0,75,135,.6); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 20px 42px -12px rgba(0,75,135,.75); }
.btn-gold{ background:linear-gradient(135deg,#FBBF24,var(--accent-gold-dark)); color:#1a1206; box-shadow:0 12px 30px -10px rgba(245,158,11,.55); }
.btn-gold:hover{ transform:translateY(-3px); box-shadow:0 20px 42px -12px rgba(245,158,11,.6); }
.btn-ghost{ background:rgba(255,255,255,.08); color:#fff; border:1.5px solid rgba(255,255,255,.4); backdrop-filter:blur(8px); }
.btn-ghost:hover{ background:rgba(255,255,255,.18); transform:translateY(-3px); }

/* ---- HERO v2 ---- */
.hero-v2{ position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; color:#fff;
  padding:9rem 0 4rem;
  background:radial-gradient(1100px 600px at 82% -8%, rgba(0,102,179,.5), transparent 60%),
             radial-gradient(900px 500px at -5% 110%, rgba(16,185,129,.18), transparent 55%),
             linear-gradient(160deg,#050814 0%,#0A1128 45%,#0d1b3d 100%); }
.hero-v2::before{ content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.05) 1px,transparent 1px); background-size:32px 32px; opacity:.55; }
.hero-v2-inner{ position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:4rem; align-items:center; }
.eyebrow{ display:inline-flex; align-items:center; gap:.55rem; padding:.5rem 1.05rem; border-radius:999px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.18); color:#cfe0ff;
  font-family:var(--font-heading); font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:.72rem; }
.hero-v2 h1{ font-family:var(--font-heading); font-weight:800; font-size:clamp(2.6rem,5.4vw,4.6rem);
  line-height:1.03; margin:1.5rem 0 1.25rem; letter-spacing:-.03em; }
.hero-v2 h1 .grad{ background:linear-gradient(120deg,#36A3FF,#22D3A6 75%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-v2 .lead{ font-size:1.15rem; color:#c4d0e6; max-width:42ch; margin-bottom:2rem; }
.hero-ctas{ display:flex; gap:1rem; flex-wrap:wrap; }

.hero-figure{ position:relative; }
.media-frame{ position:relative; border-radius:26px; overflow:hidden; border:1px solid rgba(255,255,255,.18);
  box-shadow:0 40px 80px -30px rgba(0,0,0,.7); }
.hero-figure .media-frame{ aspect-ratio:4/4.5; }
.media-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-figure .media-frame::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(5,8,20,.5)); }
.cred-chip{ position:absolute; backdrop-filter:blur(12px); background:rgba(10,17,40,.74);
  border:1px solid rgba(255,255,255,.2); color:#fff; padding:.8rem 1.1rem; border-radius:16px;
  box-shadow:0 24px 44px -20px rgba(0,0,0,.7); }
.cred-chip strong{ display:block; font-family:var(--font-heading); font-size:1.35rem; line-height:1; color:#36A3FF; }
.cred-chip span{ font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color:#c4d0e6; }
.cred-chip.tl{ top:1.2rem; left:-1.1rem; }
.cred-chip.br{ bottom:1.4rem; right:-1.1rem; }

/* ---- Stat band ---- */
.stat-band{ background:linear-gradient(135deg,var(--royal-blue),#02233f); color:#fff; }
.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; padding:3.25rem 0; text-align:center; }
.stat-item{ padding:.75rem 1rem; border-right:1px solid rgba(255,255,255,.13); }
.stat-item:last-child{ border-right:none; }
.stat-num{ font-family:var(--font-heading); font-weight:800; font-size:clamp(1.9rem,3.6vw,2.9rem);
  background:linear-gradient(120deg,#fff,#bfe0ff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-label{ color:#bcd0ec; font-size:.92rem; margin-top:.45rem; }

/* ---- Feature split ---- */
.feature-split{ display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.feature-split.reverse .feature-media{ order:2; }
.feature-media{ position:relative; border-radius:24px; overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:5/4; background:var(--silver-gray); }
.feature-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.feature-media .tag{ position:absolute; left:1rem; bottom:1rem; background:rgba(10,17,40,.82); color:#fff;
  padding:.5rem .9rem; border-radius:10px; font-size:.8rem; backdrop-filter:blur(8px); }
.feature-body h2{ font-size:clamp(1.8rem,3.4vw,2.7rem); font-weight:800; line-height:1.12; margin:.6rem 0 1rem; }
.feature-list{ list-style:none; margin-top:1.4rem; display:grid; gap:.85rem; padding:0; }
.feature-list li{ display:flex; gap:.75rem; align-items:flex-start; }
.feature-list li::before{ content:"\2713"; flex:none; width:24px; height:24px; border-radius:50%;
  background:linear-gradient(135deg,var(--neon-emerald),var(--neon-emerald-dark)); color:#fff;
  display:grid; place-items:center; font-size:.8rem; font-weight:700; margin-top:2px; }

/* ---- Consultant ---- */
.consultant{ background:var(--silver-light); }
.consultant-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:3.5rem; align-items:center; }
.consultant-photo{ position:relative; border-radius:24px; overflow:hidden; box-shadow:var(--shadow-lg); border:6px solid #fff; }
.consultant-photo img{ width:100%; display:block; }
.consultant-body .role{ color:var(--royal-blue-light); font-weight:700; margin-bottom:1rem; }
.linkedin-btn{ display:inline-flex; align-items:center; gap:.6rem; background:#0A66C2; color:#fff;
  padding:.8rem 1.4rem; border-radius:999px; font-weight:700; margin-top:1.4rem; box-shadow:0 12px 24px -12px rgba(10,102,194,.7); }
.linkedin-btn:hover{ transform:translateY(-3px); }

/* ---- CTA band ---- */
.cta-band{ position:relative; overflow:hidden; text-align:center; padding:6rem 0; color:#fff;
  background:linear-gradient(135deg,#0A1128,#0d1b3d 55%,#063b6b); }
.cta-band::before{ content:""; position:absolute; inset:0;
  background:radial-gradient(620px 320px at 50% -25%, rgba(54,163,255,.35), transparent 60%); }
.cta-band .container{ position:relative; }
.cta-band h2{ font-size:clamp(2rem,4vw,3.2rem); font-weight:800; margin:.5rem 0 1rem; }
.cta-band p{ color:#c4d0e6; max-width:60ch; margin:0 auto 2rem; }

/* ---- Inner page hero ---- */
.page-hero{ position:relative; padding:11rem 0 5rem; color:#fff; overflow:hidden;
  background:radial-gradient(820px 420px at 85% -12%, rgba(0,102,179,.5), transparent 60%),
             linear-gradient(160deg,#050814,#0A1128 55%,#0d1b3d); }
.page-hero::before{ content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.05) 1px,transparent 1px); background-size:30px 30px; opacity:.5; }
.page-hero .container{ position:relative; }
.page-hero .subtitle{ color:#8fc0ff; }
.page-hero h1{ font-family:var(--font-heading); font-weight:800; font-size:clamp(2.2rem,5vw,3.6rem); line-height:1.05; margin:1rem 0; color:#fff; }
.page-hero p{ color:#c4d0e6; max-width:62ch; }

/* ---- Reveal on scroll ---- */
.reveal{ opacity:0; transform:translateY(30px); transition:opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }

/* ---- Card hover ---- */
.solution-card:hover,.value-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }

/* ---- Footer social ---- */
.social-row{ display:flex; gap:.7rem; margin-top:1.1rem; }
.social-row a{ width:42px; height:42px; border-radius:11px; display:grid; place-items:center;
  background:rgba(255,255,255,.08); color:#fff; transition:var(--transition-fast); }
.social-row a:hover{ background:#0A66C2; transform:translateY(-3px); }

/* ---- Responsive ---- */
@media (max-width:992px){
  .hero-v2-inner{ grid-template-columns:1fr; gap:3rem; }
  .hero-figure{ max-width:420px; margin:0 auto; width:100%; }
  .stat-grid{ grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2){ border-right:none; }
  .feature-split{ grid-template-columns:1fr; gap:2rem; }
  .feature-split.reverse .feature-media{ order:0; }
  .consultant-grid{ grid-template-columns:1fr; }
  .consultant-photo{ max-width:360px; margin:0 auto; }
}
@media (max-width:560px){
  .section-padding{ padding:4.5rem 0; }
  .stat-grid{ grid-template-columns:1fr; }
  .stat-item{ border-right:none; border-bottom:1px solid rgba(255,255,255,.12); padding-bottom:1.25rem; }
  .stat-item:last-child{ border-bottom:none; }
  .cred-chip.tl{ left:0; } .cred-chip.br{ right:0; }
}
