/* ════════════════════════════════════════════════════
   DESIGN TOKENS
   Aesthetic: Industrial precision meets West African
   enterprise — deep navy authority, electric gold,
   crisp data-display typefaces
   ════════════════════════════════════════════════════ */
:root {
  --co-bg:             #030C14;
  --co-surface:        #071420;
  --navy:      #000066;
  --navy-dk:   #00003A;
  --navy-mid:  #000088;
  --navy-lt:   #0A1299;
  --gold:      #CC9933;
  --gold-lt:   #E8B84B;
  --gold-pale: rgba(204,153,51,.10);
  --gold-glow: rgba(204,153,51,.22);
  --green:     #10B981;
  --green-bg:  rgba(16,185,129,.08);
  --red:       #EF4444;
  --blue:      #3B82F6;
  --bg:        #FAFBFF;
  --surface:   #171b40;
  --panel:     #FFFFFF;
  --border:    rgba(0,0,102,.08);
  --border-s:  rgba(0,0,102,.15);
  --t1:        #0A0A1A;
  --t2:        #374151;
  --t3:        #6B7280;
  --t4:        #9CA3AF;
  --f-display: 'Inter', system-ui, -apple-system, sans-serif;
  --f-body:    'Fraunces', Georgia, serif;
  --f-mono:    'IBM Plex Mono', 'Courier New', monospace;
  --sh-sm:     0 1px 3px rgba(0,0,102,.08), 0 1px 2px rgba(0,0,102,.04);
  --sh-md:     0 1px 4px rgba(0,0,0,.32);
  --sh-lg:     0 12px 48px rgba(0,0,102,.12), 0 4px 10px rgba(0,0,102,.06);
  --sh-xl:     0 24px 80px rgba(0,0,102,.15), 0 8px 20px rgba(0,0,102,.07);
  --r:         10px;
  --r-lg:      16px;
  --r-xl:      22px;
  --r-2xl:     30px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--f-body); background: var(--bg); color: var(--t1); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ──────────────────────────────────────────────
NAVIGATION BAR
Fixed top navigation with blur + subtle border
────────────────────────────────────────────── */
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 500;

height: 64px;

/* Semi-transparent background with blur effect */
background: color-mix(in srgb, #07031A, 70%, transparent);
backdrop-filter: blur(20px);
color: whitesmoke;

/* Bottom divider */
border-bottom: 1px solid var(--border);

/* Smooth shadow transition on scroll */
transition: box-shadow 0.3s;
}

/* Adds shadow when page is scrolled */
.nav.scrolled {
box-shadow: var(--sh-sm);
}

/* ──────────────────────────────────────────────
NAV INNER CONTAINER
Centers content and controls layout spacing
────────────────────────────────────────────── */
.nav-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;

height: 100%;

display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}

/* ──────────────────────────────────────────────
BRAND / LOGO
────────────────────────────────────────────── */
.nav-brand {
font-family: var(--f-display);
font-size: 20px;
font-weight: 800;
color:white;

display: flex;
align-items: center;
gap: 8px;

/* Prevent shrinking when space is tight */
flex-shrink: 0;
}

.nav-brand img{
  height: 22px;
  display: block;
}

/* ──────────────────────────────────────────────
NAV LINKS (CENTER MENU)
────────────────────────────────────────────── */
.nav-links {
display: flex;
align-items: center;
gap: 6px;
}

/* Individual navigation links */
.nav-links a {
font-size: 14px;
font-weight: 500;
color: rgba(255,255,255,.58);

padding: 6px 12px;
border-radius: 8px;

/* Smooth hover/active transitions */
transition: background 0.15s, color 0.15s;
}

/* Hover + active state */
.nav-links a:hover,
.nav-links a.active {
color: var(--gold);
background: rgba(102, 75, 0, 0.05);
}

/* ──────────────────────────────────────────────
CALL-TO-ACTION BUTTON GROUP
────────────────────────────────────────────── */
.nav-cta {
display: flex;
gap: 10px;

/* Prevent buttons from shrinking */
flex-shrink: 0;
}

/* ──────────────────────────────────────────────
BUTTON BASE STYLES
Reusable button component
────────────────────────────────────────────── */
.btn {
display: inline-flex;
align-items: center;
gap: 7px;

font-family: var(--f-body);
font-size: 14px;
font-weight: 600;

padding: 9px 20px;
border-radius: var(--r);

border: 1.5px solid transparent;
cursor: pointer;

/* Interaction animations */
transition:
 background 0.18s,
 box-shadow 0.18s,
 transform 0.18s,
 color 0.18s;

/* Prevent text wrapping */
white-space: nowrap;

/* Remove default link styling */
text-decoration: none;
}/* ──────────────────────────────────────────────
   BUTTON STATES & VARIANTS
────────────────────────────────────────────── */

/* Active press effect */
.btn:active {
  transform: translateY(1px);
}

/* Primary button (main brand color) */
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 102, 0.28);
  transform: translateY(-1px);
}

/* Gold accent button */
.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #B8871E;
  box-shadow: 0 4px 16px rgba(204, 153, 51, 0.35);
  transform: translateY(-1px);
}

/* Outline button */
.btn-outline {
  background: transparent;
  color:var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

/* Ghost / subtle button */
.btn-ghost {
  background: var(--gold);
  color: white;
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--gold);
}

/* Size variants */
.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: 12px;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}

/* Full width button */
.btn-full {
  width: 100%;
  justify-content: center;
}

/* Mobile burger menu button (hidden by default) */
.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--t2);
  cursor: pointer;
}

/* ──────────────────────────────────────────────
   STICKY CALL-TO-ACTION BAR
   Slides in from bottom when triggered
────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;

  background: var(--navy);
  padding: 12px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  box-shadow: 0 -4px 24px rgba(0, 0, 40, 0.2);

  /* Hidden by default */
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1);
}

/* Visible state */
.sticky-cta.show {
  transform: translateY(0);
}

/* CTA text */
.sticky-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.sticky-cta-text strong {
  color: #fff;
}

/* CTA buttons container */
.sticky-cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   LAYOUT HELPERS
   Reusable grid and container utilities
────────────────────────────────────────────── */

/* Standard container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Smaller container variant */
.container--sm {
  max-width: 860px;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

/* Text alignment helper */
.text-center {
  text-align: center;
}

/* ──────────────────────────────────────────────
   SECTION TYPOGRAPHY
────────────────────────────────────────────── */

/* Small uppercase label (section intro) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--gold);
  margin-bottom: 14px;
}

/* Section heading */
h2.sh {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);

  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;

  color: var(--navy);
  margin-bottom: 16px;
}

h2.sh1{
  color: antiquewhite;
}

/* Highlighted text inside heading */
h2.sh em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

/* Light theme heading (dark background) */
h2.sh.light {
  color: #fff;
}

h2.sh.light em {
  color: var(--gold-lt);
}

/* Section subtitle */
.sh-sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.78;
  max-width: 600px;
}

/* Centered subtitle */
.sh-sub.center {
  margin: 0 auto;
}/* ──────────────────────────────────────────────
   HERO SECTION
   Full-screen intro with gradient + ambient effects
────────────────────────────────────────────── */

.hero {
  min-height: 100vh;

  /* Match Hero Section 1 gradient */
  background: linear-gradient(180deg, var(--co-surface) 0%, var(--co-bg) 65%);

  padding: 120px 0 80px;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;
}

/* =========================================================
   GRID OVERLAY (clean + consistent with Section 1 dark style)
   ========================================================= */
/* .hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);

  background-size: 64px 64px;

  mask-image: radial-gradient(
    ellipse 75% 65% at 50% 40%,
    #000 15%,
    transparent 70%
  );

  pointer-events: none;
} */

/* =========================================================
   AMBIENT ORBS (Reused from Section 1 — no duplication)
   ========================================================= */
.mkt-orbs::before,
.mkt-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mkt-orbs::before {
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse,
    rgba(204,153,51,.08) 0%,
    transparent 68%
  );
}

.mkt-orbs::after {
  bottom: -120px;
  left: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    ellipse,
    rgba(0,0,102,.05) 0%,
    transparent 68%
  );
}
/* ──────────────────────────────────────────────
   HERO LAYOUT
────────────────────────────────────────────── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;

  position: relative;
  z-index: 2; /* Above background effects */
}

/* ──────────────────────────────────────────────
   HERO BADGE (LIVE / STATUS)
────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 5px 14px;
  border-radius: 30px;

  background: rgba(204, 153, 51, 0.12);
  border: 1px solid var(--gold-glow);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--gold-lt);
  margin-bottom: 22px;
}

/* Animated live indicator dot */
.hero-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: #10B981;
  box-shadow: 0 0 8px #10B981;

  animation: pulse-dot 2s ease infinite;
}

/* Reusable pulse animation */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ──────────────────────────────────────────────
   HERO TEXT CONTENT
────────────────────────────────────────────── */
.hero-h {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 54px);

  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2px;

  color: #fff;
  margin-bottom: 22px;
}

/* Highlighted word inside heading */
.hero-h em {
  font-style: italic;
  color: var(--gold-lt);
}

/* Supporting paragraph */
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;

  max-width: 520px;
  margin-bottom: 36px;
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.9);
}

/* CTA buttons container */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;

  margin-bottom: 40px;
}

/* ──────────────────────────────────────────────
   TRUST INDICATORS
────────────────────────────────────────────── */
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.trust-item strong {
  color: rgba(255, 255, 255, 0.85);
}

.trust-item i {
  color: var(--gold);
  font-size: 15px;
}

/* ──────────────────────────────────────────────
   STATUS PANEL (RIGHT SIDE UI CARD)
────────────────────────────────────────────── */
.status-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

/* Top bar (window-like header) */
.sp-bar {
  background: rgba(255, 255, 255, 0.05);
  padding: 11px 18px;

  display: flex;
  align-items: center;
  gap: 10px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Mac-style dots */
.sp-dots {
  display: flex;
  gap: 5px;
}

.sp-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.sp-dot.r { background: #FF5F57; }
.sp-dot.y { background: #FFBD2E; }
.sp-dot.g { background: #28C840; }

/* Center label */
.sp-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.30);

  flex: 1;
  text-align: center;
}

/* Live label */
.sp-live {
  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;

  color: #10B981;
}

/* ──────────────────────────────────────────────
   STATUS BODY CONTENT
────────────────────────────────────────────── */
.sp-body {
  padding: 18px;

  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* Row item */
.sp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 9px 12px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Left label */
.sp-name {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.sp-name i {
  font-size: 14px;
}

/* Right metrics */
.sp-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Progress bar */
.sp-bar-wrap {
  width: 70px;
  height: 4px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.sp-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: #10B981;
}

/* Percentage label */
.sp-pct {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;

  color: #10B981;
}

/* ──────────────────────────────────────────────
   UPTIME BADGE
────────────────────────────────────────────── */
.sp-uptime-badge {
  margin-top: 4px;

  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);

  border-radius: 10px;
  padding: 10px 14px;

  display: flex;
  align-items: center;
  gap: 10px;
}

/* Animated green indicator */
.sp-green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);

  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

.sp-uptime-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.sp-uptime-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 2px;
}

/* ──────────────────────────────────────────────
   SPEED METRICS
────────────────────────────────────────────── */
.sp-speed-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;

  margin-top: 4px;
}

.sp-speed {
  background: rgba(204, 153, 51, 0.07);
  border: 1px solid rgba(204, 153, 51, 0.18);

  border-radius: 10px;
  padding: 12px;

  text-align: center;
}

.sp-speed-num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;

  color: var(--gold);
  line-height: 1;
}

.sp-speed-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);

  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* ──────────────────────────────────────────────
   SOCIAL PROOF STRIP
   Logos / credibility indicators row
────────────────────────────────────────────── */
.proof-strip {
  background: var(--surface);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  padding: 18px 0;
}

.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 48px;
  flex-wrap: wrap;
}

/* Individual proof item */
.proof-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 500;
  color: var(--t3);

  opacity: 0.7;
  transition: opacity 0.2s;
}

.proof-strip-item:hover {
  opacity: 1;
}

/* Icon */
.proof-strip-item i {
  font-size: 18px;
  color: var(--navy);
}

/* ──────────────────────────────────────────────
   STATS SECTION
   Key metrics displayed in grid cards
────────────────────────────────────────────── */
.stats-section {
  padding: 72px 0;
  background-color: #5143264f;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  /* Creates subtle divider effect */
  gap: 2px;
}

/* Stat card */
.stat-card {
  background: var(--panel);
  border: 1px solid var(--border);

  padding: 32px 24px;
  text-align: center;

  position: relative;
  overflow: hidden;
}

/* Rounded edges for first & last cards */
.stat-card:first-child {
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

.stat-card:last-child {
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

/* Top accent bar */
.stat-card::before {
  content: '';
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Color-coded accents */
.stat-card:nth-child(1)::before { background: var(--gold); }
.stat-card:nth-child(2)::before { background: var(--green); }
.stat-card:nth-child(3)::before { background: var(--navy); }
.stat-card:nth-child(4)::before { background: #8B5CF6; }

/* Value */
.stat-val {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 800;

  line-height: 1;
  margin-bottom: 6px;
}

/* Color variants */
.stat-val.gold   { color: var(--gold); }
.stat-val.green  { color: var(--green); }
.stat-val.navy   { color: var(--navy); }
.stat-val.purple { color: #8B5CF6; }

/* Label */
.stat-label {
  font-size: 13px;
  color: var(--t3);
}

/* ──────────────────────────────────────────────
   SERVICES SECTION
   Feature / offering breakdown
────────────────────────────────────────────── */
.services-section {
  padding: 80px 0;
}

/* Light alt background */
.services-section--alt {
  background: var(--surface);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Dark theme variant */
.services-section--dark {
  background: linear-gradient(165deg, var(--navy-dk), #000066);
}

.services-section--dark h2.sh {
  color: #fff;
}

.services-section--dark .eyebrow {
  color: rgba(204, 153, 51, 0.85);
}

.services-section--dark .sh-sub {
  color: white;
}

/* ──────────────────────────────────────────────
   SERVICES LAYOUT (SPLIT VIEW)
────────────────────────────────────────────── */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 64px;
  align-items: center;
}

/* Sub-heading */
.svc-sub-h {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.5vw, 38px);

  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;

  color:#fff;
  margin-bottom: 14px;
}

.svc-sub-h em {
  font-style: italic;
  color: var(--gold);
}

/* Light version */
.svc-sub-h.light {
  color: #fff;
}

.svc-sub-h.light em {
  color: var(--gold-lt);
}

/* Paragraph */
.svc-sub-p {
  font-size: 16px;
  color: #fff;

  line-height: 1.8;
  margin-bottom: 24px;
}

.services-section--dark .svc-sub-p {
  color: rgba(255, 255, 255, 0.65);
}

/* ──────────────────────────────────────────────
   FEATURE LIST (BULLETS)
────────────────────────────────────────────── */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin-bottom: 28px;
}

.feat-list strong{
  color:#CC9933;
}

/* Item */
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  font-size: 14px;
  line-height: 1.55;
  color: #fff;
}

.services-section--dark .feat-item {
  color: rgba(255, 255, 255, 0.72);
}

/* Icon container */
.feat-icon {
  width: 28px;
  height: 28px;
  color: #CC9933;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 1px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
}

/* Icon color variants */
.fi-navy   { background: var(--gold-pale); color: var(--green); }
.fi-gold   { background: var(--gold-pale);       color: var(--gold); }
.fi-green  { background: rgba(16,185,129,0.1);   color: var(--green); }
.fi-blue   { background: rgba(59,130,246,0.1);   color: var(--green); }
.fi-red    { background: rgba(239,68,68,0.1);    color: var(--green); }
.fi-purple { background: rgba(139,92,246,0.1);   color: var(--green);}

/* Dark mode tweak */
.services-section--dark .fi-gold {
  background: rgba(204, 153, 51, 0.15);
}

/* Highlight text */
.feat-item strong {
  color: var(--gold);
  font-weight: 700;
}

.services-section--dark .feat-item strong {
  color: #fff;
}
/* ──────────────────────────────────────────────
PLAN CHIPS
Small label tags for plans/features
────────────────────────────────────────────── */
.plan-chips {
display: flex;
gap: 8px;
flex-wrap: wrap;

margin-bottom: 28px;
}

.chip {
padding: 5px 14px;
border-radius: 20px;

font-size: 12px;
font-weight: 700;
font-family: var(--f-mono);

border: 1px solid;
cursor: default;
}

/* Color variants */
.chip-navy {
background: rgba(0, 0, 102, 0.07);
color: var(--gold);
border-color: rgba(0, 0, 102, 0.15);
}

.chip-green {
background: rgba(16, 185, 129, 0.08);
color:whitesmoke;
border-color: rgba(16, 185, 129, 0.2);
}

.chip-gold {
background: var(--gold-pale);
color: whitesmoke;
border-color: var(--gold-glow);
}

.chip-blue {
background: rgba(59, 130, 246, 0.08);
color: whitesmoke;
border-color: rgba(59, 130, 246, 0.2);
}

.chip-purple {
background: rgba(139, 92, 246, 0.08);
color:var(--navy);
border-color: rgba(246, 202, 92, 0.2);
}

/* ──────────────────────────────────────────────
VISUAL PANEL (GENERIC CARD CONTAINER)
────────────────────────────────────────────── */
.vis-panel {
background: var(--panel);
border: 1.5px solid var(--border);

border-radius: var(--r-2xl);
overflow: hidden;

box-shadow: var(--sh-lg);
}

/* Header (window-style) */
.vis-header {
background: var(--navy);
padding: 13px 18px;

display: flex;
align-items: center;
gap: 10px;

border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vis-header-dots {
display: flex;
gap: 5px;
}

.vis-header-dot {
width: 9px;
height: 9px;
border-radius: 50%;
}

/* Center label */
.vis-lbl {
font-family: var(--f-mono);
font-size: 11px;
color: rgba(255, 255, 255, 0.35);

flex: 1;
text-align: center;
}

.vis-body {
padding: 18px;
}

/* ──────────────────────────────────────────────
SPEED TEST WIDGET
────────────────────────────────────────────── */
.speed-widget {
padding: 20px;

display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}

/* Animated gauge */
.speed-gauge {
width: 140px;
height: 140px;
border-radius: 50%;

border: 8px solid var(--border);
border-top-color: var(--gold);
border-right-color: var(--gold);

display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

box-shadow: 0 0 0 4px var(--gold-pale);

animation: spin-gauge 3s cubic-bezier(.65, 0, .35, 1) infinite;
}

@keyframes spin-gauge {
0%, 100% { transform: rotate(-30deg); }
50%      { transform: rotate(180deg); }
}

/* Speed value */
.speed-num {
font-family: var(--f-display);
font-size: 32px;
font-weight: 800;

color: var(--navy);
line-height: 1;
}

.speed-unit {
font-size: 11px;
color: var(--t3);
margin-top: 2px;
}

/* Stats row */
.speed-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;

width: 100%;
}

.speed-stat {
background: var(--surface);
border: 1px solid var(--border);

border-radius: 12px;
padding: 12px;

text-align: center;
}

.speed-stat-val {
font-family: var(--f-display);
font-size: 22px;
font-weight: 700;

color: var(--gold);
}

.speed-stat-lbl {
font-size: 11px;
color: white;
margin-top: 3px;
}

/* Ping mini chart */
.ping-row {
display: flex;
align-items: flex-end;
gap: 2px;
}

.ping-bar {
width: 8px;
border-radius: 2px 2px 0 0;
background: var(--gold);
}

/* ──────────────────────────────────────────────
INFRASTRUCTURE STATUS WIDGET
────────────────────────────────────────────── */
.infra-row {
display: flex;
align-items: center;
justify-content: space-between;

padding: 9px 0;
border-bottom: 1px solid var(--border);
}

.infra-row:last-of-type {
border: none;
}

/* Labels */
.infra-name {
font-size: 13px;
font-weight: 600;
color: var(--t2);
}

.infra-pct {
display: flex;
align-items: center;
gap: 8px;
}

/* Progress bar */
.infra-track {
width: 72px;
height: 5px;

background: var(--surface);
border-radius: 3px;
overflow: hidden;
}

.infra-fill {
height: 100%;
border-radius: 3px;
}

.infra-fill-green { background: #10B981; }
.infra-fill-gold  { background: var(--gold); }

/* Value */
.infra-val {
font-family: var(--f-mono);
font-size: 12px;
font-weight: 600;

color: #10B981;
}

/* System status badge */
.system-ok {
margin-top: 12px;

background: rgba(16, 185, 129, 0.07);
border: 1px solid rgba(16, 185, 129, 0.18);

border-radius: 10px;
padding: 11px 14px;

display: flex;
align-items: center;
gap: 10px;
}

/* Animated indicator */
.ok-dot {
width: 8px;
height: 8px;
border-radius: 50%;

background: #10B981;
box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);

flex-shrink: 0;
animation: pulse-dot 2s ease infinite;
}

.ok-text {
font-size: 13px;
font-weight: 700;
color: var(--t1);
}

.ok-sub {
font-size: 11px;
color: var(--t3);
}

/* ──────────────────────────────────────────────
CLOUD SERVICE CARDS
────────────────────────────────────────────── */
.cloud-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);

gap: 12px;
margin-top: 8px;
}

.cloud-card {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);

border-radius: 12px;
padding: 14px;

text-align: center;
transition: 0.2s;
}

.cloud-card:hover {
background: rgba(255, 255, 255, 0.07);
border-color: rgba(204, 153, 51, 0.25);
}

.cloud-card-icon {
font-size: 24px;
margin-bottom: 6px;
}

.cloud-card-title {
font-size: 12px;
font-weight: 700;
color: rgba(255, 255, 255, 0.75);
}

.cloud-card-sub {
font-size: 10px;
color: rgba(255, 255, 255, 0.38);
margin-top: 3px;
}

/* ──────────────────────────────────────────────
HOW IT WORKS (STEPS)
────────────────────────────────────────────── */
.hiw-section {
padding: 80px 0;

background: var(--surface);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}

.steps-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);

margin-top: 48px;
position: relative;
}

/* Connecting line */
.steps-grid::before {
content: '';
position: absolute;

top: 36px;
left: 12.5%;
right: 12.5%;
height: 2px;

background: linear-gradient(90deg, var(--gold), var(--navy));
z-index: 0;
}

/* Step card */
.step-card {
text-align: center;
padding: 0 20px;

position: relative;
z-index: 1;
}

/* Step number circle */
.step-num {
width: 72px;
height: 72px;
border-radius: 50%;

background: var(--panel);
border: 2px solid var(--gold);

color: var(--navy);
font-family: var(--f-display);
font-size: 22px;
font-weight: 800;

display: flex;
align-items: center;
justify-content: center;

margin: 0 auto 20px;
box-shadow: var(--sh-md);

transition: background 0.2s, color 0.2s;
}

/* Hover interaction */
.step-card:hover .step-num {
background: var(--navy);
color: var(--gold);
}

/* Text */
.step-h {
font-size: 16px;
font-weight: 700;
color: var(--gold);

margin-bottom: 8px;
}

.step-p {
font-size: 13px;
color: white;

line-height: 1.65;
}

/* ──────────────────────────────────────────────
   PRICING SECTION
────────────────────────────────────────────── */
.pricing-section {
  padding: 80px 0;
}

/* ──────────────────────────────────────────────
   BILLING TOGGLE (MONTHLY / YEARLY)
────────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin-bottom: 48px;
}

/* Labels */
.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--t3);
}

.toggle-label.active {
  color: var(--t1);
}

/* Toggle switch */
.toggle-pill {
  width: 50px;
  height: 26px;
  border-radius: 13px;

  background: var(--navy);
  position: relative;

  cursor: pointer;
  transition: background 0.2s;
}

/* Thumb */
.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;

  width: 20px;
  height: 20px;
  border-radius: 50%;

  background: #fff;
  transition: transform 0.25s;
}

/* Active state */
.toggle-pill.monthly .toggle-thumb {
  transform: translateX(24px);
}

/* Discount badge */
.toggle-save {
  display: inline-flex;
  align-items: center;

  padding: 2px 9px;
  border-radius: 20px;

  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);

  font-size: 11px;
  font-weight: 700;
  color: #059669;
}

/* ──────────────────────────────────────────────
   PLAN CARDS GRID
────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.plan-card {
  background: var(--panel);
  border: 1.5px solid var(--border);

  border-radius: var(--r-xl);
  padding: 28px;

  display: flex;
  flex-direction: column;
  gap: 20px;

  transition: 0.25s;
}

.plan-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}

/* Featured plan */
.plan-card--featured {
  background: linear-gradient(150deg, var(--navy-dk), var(--navy));
  border-color: var(--gold-glow);

  color: #fff;
}

.plan-card--featured:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 60, 0.5);
}

/* Popular badge */
.plan-popular {
  align-self: flex-start;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  padding: 3px 10px;
  border-radius: 20px;

  background: var(--gold-pale);
  color: #9A6A00;
  border: 1px solid var(--gold-glow);
}

.plan-card--featured .plan-popular {
  background: rgba(204, 153, 51, 0.2);
  color: var(--gold-lt);
  border-color: rgba(204, 153, 51, 0.3);
}

/* Tier label */
.plan-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--t4);
}

.plan-card--featured .plan-tier {
  color: rgba(255, 255, 255, 0.42);
}

/* Speed */
.plan-speed {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 800;

  color: var(--navy);
  line-height: 1;
}

.plan-card--featured .plan-speed {
  color: #fff;
}

.plan-speed span {
  font-size: 16px;
  font-weight: 500;
  color: var(--t3);
}

.plan-card--featured .plan-speed span {
  color: rgba(255, 255, 255, 0.45);
}

/* Price */
.plan-price {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;

  color: var(--gold);
}

.plan-period {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;

  color: var(--t3);
}

.plan-card--featured .plan-period {
  color: rgba(255, 255, 255, 0.45);
}

/* Description */
.plan-desc {
  font-size: 13px;
  color: var(--t3);
}

.plan-card--featured .plan-desc {
  color: rgba(255, 255, 255, 0.52);
}

/* Divider */
.plan-divider {
  height: 1px;
  background: var(--border);
}

.plan-card--featured .plan-divider {
  background: rgba(255, 255, 255, 0.1);
}

/* Features list */
.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;

  flex: 1;
}

.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  font-size: 13px;
  line-height: 1.5;
  color: var(--t2);
}

.plan-card--featured .plan-feat {
  color: rgba(255, 255, 255, 0.72);
}

.plan-feat i {
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;

  color: var(--green);
}

.plan-card--featured .plan-feat i {
  color: #34D399;
}

/* CTA alignment */
.plan-cta {
  margin-top: auto;
}

/* ──────────────────────────────────────────────
   BUSINESS PLAN TABS
────────────────────────────────────────────── */
#business{
  background-color:#5143264f ;
}
.plan-tabs {
  display: flex;
  gap: 4px;

  padding: 4px;
  margin-bottom: 32px;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.plan-tab {
  flex: 1;
  padding: 8px;

  border-radius: 9px;
  border: none;
  background: none;

  text-align: center;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;

  color: var(--t3);
  cursor: pointer;

  transition: 0.18s;
}

.plan-tab.active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--sh-sm);
}

/* ──────────────────────────────────────────────
   CASE STUDIES / RESULTS
────────────────────────────────────────────── */
.results-section {
  padding: 80px 0;

  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
  margin-top: 40px;
}

/* Card */
.result-card {
  background: var(--panel);
  border: 1.5px solid var(--border);

  border-radius: var(--r-xl);
  overflow: hidden;

  transition: 0.25s;
}

.result-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
  border-color: var(--navy);
}

/* Top section */
.rc-top {
  background: linear-gradient(145deg, var(--navy-dk), var(--navy));
  padding: 24px;

  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.rc-top::after {
  content: '';
  position: absolute;

  top: -40px;
  right: -40px;

  width: 160px;
  height: 160px;
  border-radius: 50%;

  background: radial-gradient(
    ellipse,
    rgba(204, 153, 51, 0.12),
    transparent 70%
  );

  pointer-events: none;
}

/* Meta */
.rc-sector {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 8px;
}

.rc-company {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;

  color: #fff;
  margin-bottom: 14px;
}

/* Metrics */
.rc-metrics {
  display: flex;
  gap: 16px;
}

.rc-metric {
  text-align: center;
}

.rc-metric-val {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;

  color: var(--gold-lt);
  line-height: 1;
}

.rc-metric-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

/* Body */
.rc-body {
  padding: 22px;
}

.rc-quote {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;

  color: var(--t2);
  margin-bottom: 14px;
}

.rc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
}

.rc-role {
  font-size: 12px;
  color: var(--t3);
}

/* ──────────────────────────────────────────────
   FAQ SECTION
────────────────────────────────────────────── */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;

  margin-top: 40px;

  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* Item */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border: none;
}

/* Question */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 24px;

  cursor: pointer;
  user-select: none;

  background: var(--panel);
  transition: background 0.18s;
}

.faq-q:hover {
  background: var(--surface);
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);

  padding-right: 20px;
}

/* Icon */
.faq-icon {
  font-size: 20px;
  color: var(--t3);

  flex-shrink: 0;
  transition: transform 0.25s;
}

/* Open state */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--navy);
}

/* Answer */
.faq-a {
  max-height: 0;
  overflow: hidden;

  background: var(--surface);
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.75;

  color: whitesmoke;
  padding: 0 24px 20px;
}

.faq-item.open .faq-a {
  max-height: 300px;
}
/* ──────────────────────────────────────────────
FINAL CALL-TO-ACTION SECTION
────────────────────────────────────────────── */
.final-cta {
padding: 80px 0;
text-align: center;

background: linear-gradient(168deg, var(--navy-dk), #000066);

position: relative;
overflow: hidden;
}

/* Ambient glow */
.final-cta::before {
content: '';
position: absolute;

top: -100px;
left: 50%;
transform: translateX(-50%);

width: 600px;
height: 600px;
border-radius: 50%;

background: radial-gradient(
 ellipse,
 rgba(204, 153, 51, 0.1),
 transparent 65%
);

pointer-events: none;
}

/* Content wrapper */
.cta-inner {
position: relative;
z-index: 2;
}

/* Heading */
.final-cta h2 {
font-family: var(--f-display);
font-size: clamp(32px, 5vw, 54px);

font-weight: 800;
letter-spacing: -1.5px;
line-height: 1.08;

color: #fff;
margin-bottom: 16px;
}

.final-cta h2 em {
font-style: italic;
color: var(--gold-lt);
}

/* Subtitle */
.final-cta p {
font-size: 17px;
line-height: 1.75;

color: rgba(255, 255, 255, 0.62);

max-width: 560px;
margin: 0 auto 36px;
}

/* CTA buttons */
.cta-actions {
display: flex;
justify-content: center;
gap: 14px;
flex-wrap: wrap;

margin-bottom: 24px;
}

/* Perks row */
.cta-perks {
display: flex;
justify-content: center;
gap: 24px;
flex-wrap: wrap;
}

.cta-perk {
display: flex;
align-items: center;
gap: 7px;

font-size: 13px;
color: rgba(255, 255, 255, 0.52);
}

.cta-perk i {
color: var(--gold);
}

/* ──────────────────────────────────────────────
LEAD FORM (EMAIL + SELECT + CTA)
────────────────────────────────────────────── */
.lead-form {
max-width: 520px;
margin: 0 auto 28px;

display: flex;
gap: 0;

background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.14);

border-radius: 14px;
overflow: hidden;

box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Input */
.lead-form input {
flex: 1;

padding: 16px 20px;

background: transparent;
border: none;
outline: none;

font-family: var(--f-body);
font-size: 15px;
color: #fff;
}

.lead-form input::placeholder {
color: rgba(255, 255, 255, 0.35);
}

/* Dropdown */
.lead-form select {
padding: 0 16px;

background: transparent;
border: none;
border-left: 1px solid rgba(255, 255, 255, 0.1);

font-family: var(--f-body);
font-size: 14px;

color: rgba(255, 255, 255, 0.65);

cursor: pointer;
appearance: none;
}

.lead-form select option {
background: var(--navy-dk);
color: #fff;
}

/* Submit button */
.lead-form-btn {
padding: 16px 24px;

background: var(--gold);
color: #000;

border: none;

font-family: var(--f-body);
font-size: 14px;
font-weight: 700;

cursor: pointer;
white-space: nowrap;

transition: background 0.18s;
}

.lead-form-btn:hover {
background: #B8871E;
}

/* ──────────────────────────────────────────────
FOOTER
────────────────────────────────────────────── */
.footer {
background: var(--navy-dk);
color: rgba(255, 255, 255, 0.55);

padding: 48px 0 24px;
}

.footer-inner {
display: flex;
justify-content: space-between;
flex-wrap: wrap;

gap: 32px;
margin-bottom: 40px;
}

/* Brand */
.footer-brand {
font-family: var(--f-display);
font-size: 20px;
font-weight: 800;

color: #fff;

display: flex;
align-items: center;
gap: 8px;

margin-bottom: 8px;
}

.footer-brand img{
width: 100%;
height: 80px;
display: block;
}

/* Description */
.footer-sub {
font-size: 13px;
max-width: 240px;
line-height: 1.65;
}

/* Columns */
.fc h5 {
font-size: 10px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;

color: rgba(255, 255, 255, 0.28);
margin-bottom: 14px;
}

.fc a {
display: block;

font-size: 13px;
color: rgba(255, 255, 255, 0.45);

margin-bottom: 10px;
transition: color 0.2s;
}

.fc a:hover {
color: #fff;
}

/* Bottom bar */
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);

padding-top: 20px;

display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;

gap: 12px;

font-size: 12px;
}

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

.footer-links a {
color: rgba(255, 255, 255, 0.32);
}

.footer-links a:hover {
color: rgba(255, 255, 255, 0.7);
}

/* ──────────────────────────────────────────────
ANIMATIONS
────────────────────────────────────────────── */
@keyframes fade-up {
from {
 opacity: 0;
 transform: translateY(18px);
}
to {
 opacity: 1;
 transform: none;
}
}

.anim {
opacity: 0;
}

.anim.visible {
animation: fade-up 0.48s cubic-bezier(.16, 1, .3, 1) both;
}

/* ──────────────────────────────────────────────
RESPONSIVE BREAKPOINTS
────────────────────────────────────────────── */
@media (max-width: 1024px) {
.nav-links {
 display: none;
}

.nav-burger {
 display: block;
}

.hero-inner,
.svc-split {
 grid-template-columns: 1fr;
 gap: 48px;
}

.stats-grid,
.plans-grid,
.result-cards,
.cloud-grid {
 grid-template-columns: 1fr 1fr;
}

.steps-grid {
 grid-template-columns: 1fr 1fr;
}

.steps-grid::before {
 display: none;
}
}

@media (max-width: 700px) {
.stats-grid,
.plans-grid,
.result-cards,
.cloud-grid {
 grid-template-columns: 1fr;
}

.steps-grid {
 grid-template-columns: 1fr;
}

.proof-strip-inner {
 gap: 24px;
}

.stat-card:first-child,
.stat-card:last-child {
 border-radius: 0;
}

.lead-form {
 flex-direction: column;
 border-radius: 12px;
}

.lead-form select,
.lead-form input {
 border: none;
 border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta {
 flex-direction: column;
 gap: 10px;
 text-align: center;
}
}