/* ============================================
   DATAHUB GHANA — Premium iOS-Inspired Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ===== TOKENS ===== */
:root {
  --bg:          #F6F4FB;
  --bg-card:     #FFFFFF;
  --bg-dark:     #07050F;
  --bg-dark2:    #0F0B1E;
  --bg-dark3:    #181129;

  --text:        #1B1626;
  --text-muted:  #6E6A78;
  --text-faint:  #ADA8B8;

  --blue:        #6D42F5;
  --blue-light:  #A489FF;
  --blue-glow:   rgba(109,66,245,0.35);

  --gold:        #F0A500;
  --gold-light:  #FFCF4D;
  --gold-glow:   rgba(240,165,0,0.35);

  --mtn:         #FFC800;
  --mtn-dark:    #E6960A;
  --mtn-glow:    rgba(255,200,0,0.3);

  --tel:         #DB0032;
  --tel-light:   #FF4D7A;
  --tel-glow:    rgba(219,0,50,0.3);

  --tigo:        #00408F;
  --tigo-light:  #1E70CC;
  --tigo-glow:   rgba(0,64,143,0.3);

  --green:       #30D158;
  --yellow:      #FFD60A;
  --red:         #FF453A;

  --radius:      22px;
  --radius-sm:   14px;
  --radius-xs:   8px;

  --shadow:      0 12px 48px rgba(0,0,0,0.10);
  --shadow-md:   0 20px 64px rgba(0,0,0,0.14);
  --shadow-lg:   0 32px 80px rgba(0,0,0,0.18);

  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
  --t:           0.38s;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { font-family: inherit; }

/* ===== PAGE LOADER ===== */
#pageLoader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#pageLoader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-wrap { text-align: center; }

.loader-logo {
  width: 72px; height: 72px;
  position: relative;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.loader-icon-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--blue);
  border-right-color: var(--blue-light);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loader-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: 0 0 32px var(--blue-glow);
}
.loader-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: #fff; letter-spacing: -0.5px; margin-bottom: 20px;
}
.loader-brand span { color: var(--blue-light); }

.loader-progress {
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px; overflow: hidden;
  margin: 0 auto 12px;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--mtn));
  border-radius: 3px;
  animation: barFill 1.8s var(--ease) forwards;
  background-size: 200% 100%;
  animation: barFill 1.8s var(--ease) forwards, shimmer 1.5s linear infinite;
}
@keyframes barFill { from { width: 0 } to { width: 100% } }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.loader-hint { color: rgba(255,255,255,0.35); font-size: 0.8rem; letter-spacing: 0.3px; }

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(5,5,8,0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 0;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
#mainNav.scrolled {
  background: rgba(5,5,8,0.94);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff;
  box-shadow: 0 4px 12px var(--blue-glow);
  flex-shrink: 0;
}
.nav-brand-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: #fff; letter-spacing: -0.3px;
}
.nav-brand-accent { color: var(--blue-light); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.9rem; font-weight: 500;
  padding: 7px 12px !important;
  border-radius: 10px;
  transition: all 0.25s var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.09);
}
.net-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.4px;
}
.mtn-pill    { background: rgba(255,200,0,0.18); color: var(--mtn); }
.telecel-pill{ background: rgba(219,0,50,0.16);  color: var(--tel-light); }
.tigo-pill   { background: rgba(0,64,143,0.18);  color: #5BA8FF; }

.btn-buy-nav {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff !important; padding: 9px 22px !important;
  border-radius: 50px !important; font-weight: 600 !important;
  font-size: 0.88rem !important; border: none;
  box-shadow: 0 4px 18px var(--blue-glow);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s var(--ease);
}
.btn-buy-nav:hover { transform: scale(1.05); box-shadow: 0 8px 28px var(--blue-glow); }

.custom-toggler {
  background: rgba(255,255,255,0.1) !important;
  border: none !important; border-radius: 10px !important;
  color: #fff !important; padding: 8px 12px !important;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative; overflow: hidden;
  padding-top: 80px;
}
/* Grid lines decoration */
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
}
/* Orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0;
  animation: orbAppear 1.5s var(--ease) forwards;
}
.orb-1 { width: 700px; height: 700px; background: radial-gradient(var(--blue),transparent 70%); top:-200px; right:-200px; animation-delay: 0.3s; opacity: 0.14; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(var(--mtn),transparent 70%); bottom:-100px; left:-100px; animation-delay: 0.5s; opacity: 0.08; }
.orb-3 { width: 350px; height: 350px; background: radial-gradient(var(--tel),transparent 70%); top:40%; left:35%; animation-delay: 0.7s; opacity: 0.06; }
.orb-4 { width: 250px; height: 250px; background: radial-gradient(var(--green),transparent 70%); top:20%; left:10%; animation-delay: 0.9s; opacity: 0.08; }
@keyframes orbAppear { to { opacity: inherit; } }
/* Gentle float on orbs */
.orb-1 { animation: orbFloat1 9s ease-in-out infinite; }
.orb-2 { animation: orbFloat2 11s ease-in-out infinite; }
.orb-3 { animation: orbFloat3 13s ease-in-out infinite; }
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-25px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15px,15px)} }

.hero-container { position: relative; z-index: 2; }

/* ---- Hero Left ---- */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 7px 16px; border-radius: 50px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue-light); }
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.05; letter-spacing: -2.5px;
  margin-bottom: 22px;
}
.hero-em { font-style: italic; color: rgba(255,255,255,0.45); }
.hero-highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.55); font-size: 1.05rem;
  line-height: 1.75; max-width: 440px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-cta {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; border: none;
  box-shadow: 0 8px 32px var(--blue-glow);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease);
}
.btn-hero-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 40px var(--blue-glow); color: #fff; }
.btn-hero-ghost {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.8); padding: 14px 28px; border-radius: 50px;
  font-weight: 500; font-size: 1rem;
  transition: all 0.25s var(--ease);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-2px); border-color: var(--gold-glow); }

.hero-trust { display: flex; align-items: center; gap: 18px; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.trust-item span { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.2px; }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ---- Phone mockup ---- */
.hero-phone-scene { position: relative; }
.hphone { animation: phoneFloat 5s ease-in-out infinite; }
@keyframes phoneFloat { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-14px) rotate(2deg)} }

.hphone-body {
  width: 270px;
  background: #1A1A20;
  border-radius: 48px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.5);
}
.hphone-notch {
  width: 90px; height: 26px;
  background: #0E0E12; border-radius: 0 0 18px 18px;
  margin: 0 auto 6px;
}
.hphone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 12px 8px; color: rgba(255,255,255,0.85); font-size: 0.7rem; font-weight: 600;
}
.hphone-status-icons { display: flex; gap: 5px; font-size: 0.6rem; }
.hphone-screen {
  background: linear-gradient(180deg, #0E0E12 0%, #090910 100%);
  border-radius: 34px; padding: 14px 14px 18px;
}
.hphone-app-name { font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 2px; }
.hphone-greeting { font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 12px; }

.hphone-balance-card {
  background: linear-gradient(135deg, var(--blue), var(--gold));
  border-radius: 18px; padding: 14px 16px; margin-bottom: 12px;
}
.hphone-bal-label { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.hphone-bal-amount { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.hphone-bal-amount small { font-size: 1rem; font-weight: 600; }
.hphone-progress-wrap {
  height: 4px; background: rgba(255,255,255,0.2); border-radius: 4px;
  overflow: hidden; margin: 8px 0 6px;
}
.hphone-progress-bar {
  height: 100%; width: 62%;
  background: rgba(255,255,255,0.8); border-radius: 4px;
}
.hphone-expire { font-size: 0.6rem; color: rgba(255,255,255,0.6); }

.hphone-section-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.hphone-networks { display: flex; gap: 6px; margin-bottom: 12px; }
.hnet-btn {
  flex: 1; text-align: center; padding: 8px 4px;
  border-radius: 12px; font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.5px;
}
.mtn-hnet  { background: linear-gradient(135deg, #FFC800, #E6960A); color: #0A0600; }
.tel-hnet  { background: linear-gradient(135deg, #DB0032, #FF4D7A); color: #fff; }
.tigo-hnet { background: linear-gradient(135deg, #00408F, #1E70CC); color: #fff; }

.hphone-buy-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; text-align: center; padding: 10px;
  border-radius: 14px; font-size: 0.72rem; font-weight: 700;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  animation: fbFloat 4s ease-in-out infinite;
}
.fb-1 { top: 15%; right: -20px; animation-delay: 0s; }
.fb-1 i { color: var(--green); font-size: 1rem; }
.fb-2 { bottom: 30%; left: -20px; animation-delay: 1s; }
.fb-2 i { color: var(--yellow); font-size: 1rem; }
.fb-3 { bottom: 10%; right: 0; animation-delay: 2s; padding: 10px 14px; gap: 10px; }
.fb3-net { background: var(--mtn); color: #0A0600; font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: 8px; }
.fb-3 strong { display: block; font-size: 0.85rem; }
.fb-3 span { font-size: 0.72rem; color: var(--text-muted); }
@keyframes fbFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  animation: fadeInUp 1s var(--ease) 2s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 5px;
}
.scroll-dot {
  width: 4px; height: 8px; border-radius: 2px;
  background: rgba(255,255,255,0.5);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(10px);opacity:0.3} }

/* ===== SECTION SHARED ===== */
.section-pad { padding: 96px 0; }
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(109,66,245,0.1), rgba(71,168,255,0.08));
  border: 1px solid rgba(109,66,245,0.2);
  color: var(--blue); padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.12;
  color: var(--text);
}
.section-sub { color: var(--text-muted); font-size: 1rem; margin-top: 10px; }

/* ===== NETWORKS SECTION ===== */
.networks-section { background: #fff; }
.net-card {
  display: block; position: relative; overflow: hidden;
  background: #fff; border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  border: 1.5px solid #EFEFEF;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  color: var(--text);
}
.net-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.nc-glow {
  position: absolute; inset: 0; opacity: 0; border-radius: var(--radius);
  transition: opacity var(--t) var(--ease);
}
.net-card-mtn:hover  { border-color: var(--mtn); }
.net-card-mtn:hover .nc-glow { background: radial-gradient(circle, rgba(255,200,0,0.07) 0%, transparent 70%); opacity: 1; }
.net-card-telecel:hover { border-color: var(--tel); }
.net-card-telecel:hover .nc-glow { background: radial-gradient(circle, rgba(219,0,50,0.07) 0%, transparent 70%); opacity: 1; }
.net-card-tigo:hover { border-color: var(--tigo); }
.net-card-tigo:hover .nc-glow { background: radial-gradient(circle, rgba(0,64,143,0.07) 0%, transparent 70%); opacity: 1; }

.nc-top { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.nc-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff;
}
.nc-mtn-icon    { background: linear-gradient(135deg, #FFC800, #E6960A); box-shadow: 0 8px 24px var(--mtn-glow); }
.nc-telecel-icon{ background: linear-gradient(135deg, #DB0032, #FF4D7A); box-shadow: 0 8px 24px var(--tel-glow); }
.nc-tigo-icon   { background: linear-gradient(135deg, #00408F, #1E70CC); box-shadow: 0 8px 24px var(--tigo-glow); }

.nc-badge {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px;
}
.nc-mtn-badge    { background: rgba(255,200,0,0.14); color: #A06800; }
.nc-telecel-badge{ background: rgba(219,0,50,0.1); color: var(--tel); }
.nc-tigo-badge   { background: rgba(0,64,143,0.1); color: var(--tigo); }

.nc-title { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.nc-desc  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; }
.nc-desc strong { color: var(--text); }
.nc-meta { display: flex; justify-content: space-between; align-items: center; }
.nc-count {
  background: var(--bg); padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
}
.nc-cta {
  font-size: 0.82rem; font-weight: 700; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s var(--ease);
}
.net-card:hover .nc-cta { gap: 10px; }

/* ===== HOW IT WORKS ===== */
.steps-section { background: var(--bg); }
.steps-track { position: relative; }
.steps-line {
  display: none;
}
@media (min-width: 768px) {
  .steps-line {
    display: block;
    position: absolute; top: 68px; left: calc(16.666% + 30px); right: calc(16.666% + 30px);
    height: 1px; background: linear-gradient(90deg, var(--blue), var(--mtn), var(--tel));
    z-index: 0; opacity: 0.25;
  }
}
.step-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 26px; text-align: center;
  box-shadow: var(--shadow); position: relative; z-index: 1;
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease);
}
.step-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.step-card-mid {
  background: var(--bg-dark);
  color: #fff;
}
.step-card-mid h4 { color: #fff; }
.step-card-mid p  { color: rgba(255,255,255,0.55); }
.step-card-mid .step-num { color: rgba(255,255,255,0.06); }

.step-num {
  position: absolute; top: 16px; right: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: var(--bg); line-height: 1; letter-spacing: -3px;
}
.step-ico {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: 0 8px 24px var(--blue-glow);
}
.step-card h4 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ===== WHY US ===== */
.why-section { background: #fff; }
.btn-why-more {
  display: inline-flex; align-items: center;
  background: var(--bg); border: 1.5px solid #E0E0E5;
  color: var(--text); padding: 12px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem;
  transition: all 0.25s var(--ease);
}
.btn-why-more:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }

.why-card {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 24px 20px;
  transition: all 0.3s var(--ease-bounce);
  cursor: default; height: 100%;
}
.why-card:hover { background: var(--bg-dark); transform: scale(1.03); }
.why-card:hover h5 { color: #fff; }
.why-card:hover p  { color: rgba(255,255,255,0.5); }
.why-ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
  transition: background 0.3s var(--ease);
}
.why-ico-blue  { background: rgba(109,66,245,0.12); color: var(--blue); }
.why-ico-green { background: rgba(48,209,88,0.12); color: var(--green); }
.why-ico-yellow{ background: rgba(255,214,10,0.14); color: #CC9000; }
.why-ico-red   { background: rgba(255,69,58,0.1); color: var(--red); }
.why-card:hover .why-ico { background: rgba(255,255,255,0.1); }
.why-card:hover .why-ico-blue,
.why-card:hover .why-ico-green,
.why-card:hover .why-ico-yellow,
.why-card:hover .why-ico-red { color: #fff; }
.why-card h5 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--bg); }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease);
  height: 100%; position: relative; overflow: hidden;
}
.testi-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.testi-card-featured {
  background: var(--bg-dark);
}
.testi-card-featured .testi-quote,
.testi-card-featured p { color: #fff; }
.testi-card-featured .testi-quote { color: rgba(255,255,255,0.15); }

.testi-quote {
  font-family: 'Syne', sans-serif;
  font-size: 5rem; line-height: 0.6;
  color: rgba(0,0,0,0.05); font-weight: 800;
  display: block; margin-bottom: 14px;
}
.testi-card p { font-size: 0.92rem; line-height: 1.75; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #fff;
}
.av-mtn  { background: linear-gradient(135deg, #FFC800, #E6960A); }
.av-tel  { background: linear-gradient(135deg, #DB0032, #FF4D7A); }
.av-tigo { background: linear-gradient(135deg, #00408F, #1E70CC); }
.testi-footer strong { display: block; font-size: 0.88rem; color: var(--text); }
.testi-card-featured .testi-footer strong { color: #fff; }
.testi-footer span  { font-size: 0.77rem; color: var(--text-muted); }
.testi-card-featured .testi-footer span { color: rgba(255,255,255,0.4); }
.testi-stars { color: var(--mtn); font-size: 0.85rem; letter-spacing: 1px; }

/* ===== CTA SECTION ===== */
.cta-section { background: #fff; }
.cta-card {
  background: var(--bg-dark);
  border-radius: 28px; padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-orb-1 { width: 400px; height: 400px; background: var(--blue); opacity: 0.12; top: -150px; left: -100px; }
.cta-orb-2 { width: 300px; height: 300px; background: var(--mtn); opacity: 0.08; bottom: -80px; right: -60px; }
.cta-content { position: relative; z-index: 1; }
.cta-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  color: #fff; letter-spacing: -1px; margin-bottom: 10px;
}
.cta-card p { color: rgba(255,255,255,0.5); font-size: 1rem; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-net-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s var(--ease);
}
.cta-net-btn:hover { transform: translateY(-3px) scale(1.04); }
.cta-mtn-btn  { background: linear-gradient(135deg, #FFC800, #E6960A); color: #0A0600; }
.cta-tel-btn  { background: linear-gradient(135deg, #DB0032, #FF4D7A); color: #fff; }
.cta-tigo-btn { background: linear-gradient(135deg, #00408F, #1E70CC); color: #fff; }
.cta-mtn-btn:hover  { color: #0A0600; box-shadow: 0 8px 24px var(--mtn-glow); }
.cta-tel-btn:hover  { color: #fff; box-shadow: 0 8px 24px var(--tel-glow); }
.cta-tigo-btn:hover { color: #fff; box-shadow: 0 8px 24px var(--tigo-glow); }
.cbn-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.cbn-mtn  { background: #fff; }
.cbn-tel  { background: rgba(255,255,255,0.7); }
.cbn-tigo { background: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark2); padding: 64px 0 0;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 14px;
  transition: all 0.25s var(--ease-bounce);
  text-decoration: none;
}
.footer-social a:hover { background: var(--blue); color: #fff; transform: scale(1.12); }

.footer-col-title { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: 0.2px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45); font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.fl-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.fl-mtn  { background: var(--mtn); }
.fl-tel  { background: var(--tel); }
.fl-tigo { background: var(--tigo-light); }

.footer-contact p {
  color: rgba(255,255,255,0.45); font-size: 0.85rem;
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.footer-contact i { color: var(--blue); font-size: 0.9rem; flex-shrink: 0; }
.footer-secure-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(48,209,88,0.1); border: 1px solid rgba(48,209,88,0.2);
  padding: 7px 14px; border-radius: 50px; margin-top: 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--green);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0; margin-top: 48px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.footer-bottom strong { color: rgba(255,255,255,0.5); }

/* ===== BUNDLE PAGES ===== */
.page-hero {
  min-height: 42vh;
  padding: 130px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.page-orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: orbFloat1 10s ease-in-out infinite;
}

/* MTN page */
.page-mtn { background: linear-gradient(150deg, #070500 0%, #120C00 60%, #1A1200 100%); }
.mtn-orb-1 { width: 500px; height: 500px; background: var(--mtn); opacity: 0.12; top: -150px; right: -100px; }
.mtn-orb-2 { width: 300px; height: 300px; background: var(--mtn-dark); opacity: 0.08; bottom: -50px; left: 0; }

/* Telecel page */
.page-telecel { background: linear-gradient(150deg, #070002 0%, #120008 60%, #1A0010 100%); }
.tel-orb-1 { width: 500px; height: 500px; background: var(--tel); opacity: 0.12; top: -150px; right: -100px; }
.tel-orb-2 { width: 300px; height: 300px; background: var(--tel-light); opacity: 0.08; bottom: -50px; left: 0; }

/* Tigo page */
.page-tigo { background: linear-gradient(150deg, #000510 0%, #000C1C 60%, #001228 100%); }
.tigo-orb-1 { width: 500px; height: 500px; background: var(--tigo); opacity: 0.15; top: -150px; right: -100px; }
.tigo-orb-2 { width: 300px; height: 300px; background: var(--tigo-light); opacity: 0.08; bottom: -50px; left: 0; }

.page-hero-content { position: relative; z-index: 2; }
.page-net-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 18px;
  border: 1px solid;
}
.mtn-net-badge    { background: rgba(255,200,0,0.12); border-color: rgba(255,200,0,0.25); color: var(--mtn); }
.telecel-net-badge{ background: rgba(219,0,50,0.12); border-color: rgba(219,0,50,0.25); color: var(--tel-light); }
.tigo-net-badge   { background: rgba(0,64,143,0.15); border-color: rgba(30,112,204,0.3); color: #5BA8FF; }

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; color: #fff;
  letter-spacing: -2px; margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 500px; }

/* Bundles section */
.bundles-section { background: var(--bg); padding: 64px 0; }
.bundles-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.filter-btn {
  background: #fff; border: 1.5px solid #E8E8EC;
  color: var(--text-muted); padding: 8px 18px;
  border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}
.filter-btn:hover,
.filter-btn.active { color: #fff; border-color: transparent; }
.mtn-filter.active, .mtn-filter:hover    { background: linear-gradient(135deg, #FFC800, #E6960A); }
.tel-filter.active, .tel-filter:hover    { background: linear-gradient(135deg, #DB0032, #FF4D7A); }
.tigo-filter.active, .tigo-filter:hover  { background: linear-gradient(135deg, #00408F, #1E70CC); }
.filter-btn.active { color: #fff; }

/* Bundle Grid */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
}
.bcard {
  background: #fff; border-radius: var(--radius); padding: 28px 20px;
  text-align: center; border: 1.5px solid #EFEFEF;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease), border-color var(--t);
  cursor: pointer; position: relative; overflow: hidden;
}
.bcard::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.bcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.bcard:hover::after { opacity: 1; }

/* Popular badge */
.bcard-popular::before {
  content: '🔥 Popular';
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--red), #FF8C00);
  color: #fff; font-size: 0.6rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}

/* MTN card */
.bcard-mtn::after { background: linear-gradient(90deg, #FFC800, #E6960A); }
.bcard-mtn:hover  { border-color: rgba(255,200,0,0.35); }
/* Telecel card */
.bcard-tel::after { background: linear-gradient(90deg, #DB0032, #FF4D7A); }
.bcard-tel:hover  { border-color: rgba(219,0,50,0.3); }
/* Tigo card */
.bcard-tigo::after { background: linear-gradient(90deg, #00408F, #1E70CC); }
.bcard-tigo:hover  { border-color: rgba(0,64,143,0.3); }

.bcard-label {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.mtn-label    { background: rgba(255,200,0,0.12); color: #9A6400; }
.tel-label    { background: rgba(219,0,50,0.1); color: var(--tel); }
.tigo-label   { background: rgba(0,64,143,0.1); color: var(--tigo); }

.bcard-gb {
  font-family: 'Syne', sans-serif;
  font-size: 3rem; font-weight: 800; letter-spacing: -2px; line-height: 1;
}
.bcard-gb span { font-size: 1.2rem; letter-spacing: -0.5px; }
.bcard-gb-sub { font-size: 0.72rem; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 4px 0 14px; }

.bcard-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.55rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 18px;
}
.mtn-price  { color: var(--mtn-dark); }
.tel-price  { color: var(--tel); }
.tigo-price { color: var(--tigo); }

.bcard-btn {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: none; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.88rem; cursor: pointer;
  transition: transform 0.22s var(--ease-bounce), box-shadow 0.22s var(--ease);
}
.bcard-btn:hover { transform: scale(1.03); }
.mtn-btn  { background: linear-gradient(135deg, #FFC800, #E6960A); color: #0A0600; box-shadow: 0 4px 16px rgba(255,200,0,0.3); }
.tel-btn  { background: linear-gradient(135deg, #DB0032, #FF4D7A); color: #fff; box-shadow: 0 4px 16px rgba(219,0,50,0.25); }
.tigo-btn { background: linear-gradient(135deg, #00408F, #1E70CC); color: #fff; box-shadow: 0 4px 16px rgba(0,64,143,0.25); }

/* ===== MODAL ===== */
.modal-content {
  border-radius: 26px !important; border: none !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden;
}
.modal-header { border-bottom: 1px solid var(--bg) !important; padding: 24px 28px 16px !important; }
.modal-title  { font-family: 'Syne', sans-serif; font-weight: 800 !important; font-size: 1.15rem !important; }
.modal-body   { padding: 20px 28px !important; }
.modal-footer { border-top: 1px solid var(--bg) !important; padding: 16px 28px 24px !important; }
.btn-close    { background: var(--bg) !important; border-radius: 50% !important; opacity: 1 !important; }

.order-box {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 18px 20px; margin-bottom: 20px;
}
.order-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; margin-bottom: 8px;
}
.order-row:last-child { margin: 0; padding-top: 10px; border-top: 1px solid rgba(0,0,0,0.07); font-weight: 700; font-size: 1rem; }
.order-row span:first-child { color: var(--text-muted); }

.form-label { font-weight: 600 !important; font-size: 0.8rem !important; color: var(--text-muted) !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.form-control {
  border: 1.5px solid #E8E8EC !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important; font-weight: 500 !important;
  background: var(--bg) !important;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease) !important;
}
.form-control:focus {
  border-color: var(--blue) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(109,66,245,0.1) !important;
}

.pay-btn {
  width: 100%; padding: 15px; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s var(--ease);
}
.pay-btn:hover { transform: translateY(-2px); }
.pay-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.pay-mtn  { background: linear-gradient(135deg, #FFC800, #E6960A); color: #0A0600; box-shadow: 0 6px 24px rgba(255,200,0,0.35); }
.pay-tel  { background: linear-gradient(135deg, #DB0032, #FF4D7A); color: #fff; box-shadow: 0 6px 24px rgba(219,0,50,0.3); }
.pay-tigo { background: linear-gradient(135deg, #00408F, #1E70CC); color: #fff; box-shadow: 0 6px 24px rgba(0,64,143,0.3); }

.paystack-note {
  text-align: center; margin-top: 12px;
  font-size: 0.76rem; color: var(--text-faint);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.paystack-note i { color: var(--green); }

/* ===== TOAST ===== */
.toast-wrap {
  position: fixed; top: 76px; right: 18px;
  z-index: 99998; display: flex; flex-direction: column; gap: 10px;
}
.toast-item {
  background: #fff; border-radius: 18px; padding: 14px 18px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: var(--shadow-md); min-width: 280px; max-width: 360px;
  animation: toastIn 0.4s var(--ease-bounce);
  border-left: 4px solid var(--green);
}
.toast-item.err { border-color: var(--red); }
.toast-i { font-size: 1.4rem; flex-shrink: 0; }
.toast-title { font-weight: 700; font-size: 0.88rem; display: block; }
.toast-msg  { font-size: 0.78rem; color: var(--text-muted); }
@keyframes toastIn { from { opacity:0; transform:translateX(30px) scale(0.9); } to { opacity:1; transform:translateX(0) scale(1); } }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--bg-dark);
  padding: 140px 0 80px; text-align: center;
  position: relative; overflow: hidden;
}
.about-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800; color: #fff; letter-spacing: -2px; margin-bottom: 16px;
}
.about-hero p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.abt-stat-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  text-align: center; box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce);
}
.abt-stat-card:hover { transform: translateY(-7px); }
.abt-stat-num {
  font-family: 'Syne', sans-serif; font-size: 3.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -2px; line-height: 1;
}
.abt-stat-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 600; margin-top: 6px; }

.mission-card {
  background: #fff; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); height: 100%;
  transition: transform var(--t) var(--ease-bounce);
}
.mission-card:hover { transform: translateY(-6px); }
.mission-ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-phone-scene { display: none; }
  .hero-left { text-align: center; }
  .hero-eyebrow, .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .section-label { margin-inline: 0; }
}
@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .bundles-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cta-card { padding: 40px 24px; }
  .page-hero { padding: 110px 0 48px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .bundles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-headline { letter-spacing: -1.5px; }
  .hero-trust { flex-wrap: wrap; }
}

/* ===== UTILITY ===== */
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
.mt-section { margin-top: 80px; }
.visually-hidden { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ===== PAGE HERO STAT BOX ===== */
.page-hero-stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border-radius: 20px; padding: 28px 32px;
  display: flex; gap: 24px; align-items: center;
}
.phsb-item { text-align: center; }
.phsb-num {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800; letter-spacing: -1px;
}
.phsb-item span:last-child { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.phsb-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ===== NETWORK SWITCHER ===== */
.sw-btn {
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  transition: all 0.22s var(--ease);
  border: 1px solid transparent;
}
.sw-btn:hover { filter: brightness(1.1); transform: scale(1.04); }

/* ===== INFO STRIP ===== */
.info-strip { background: #fff; border-top: 1px solid #EFEFEF; border-bottom: 1px solid #EFEFEF; padding: 24px 0; }
.info-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
.is-item {
  display: flex; align-items: center; gap: 12px;
}
.is-item i { font-size: 1.4rem; flex-shrink: 0; }
.is-item strong { display: block; font-size: 0.88rem; font-weight: 700; }
.is-item span  { font-size: 0.78rem; color: var(--text-muted); }

/* ===== ABOUT PAGE EXTRAS ===== */
.hw-list { display: flex; flex-direction: column; gap: 20px; }
.hw-item { display: flex; align-items: flex-start; gap: 18px; }
.hw-num {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px var(--blue-glow);
}
.hw-item h5 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.hw-item p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.abt-visual-card {
  background: var(--bg-dark); border-radius: 20px;
  overflow: hidden; width: 100%; max-width: 340px;
  box-shadow: var(--shadow-lg);
}
.avc-top { background: var(--bg-dark3); padding: 12px 16px; display: flex; gap: 6px; }
.avc-dot { width: 10px; height: 10px; border-radius: 50%; }
.avc-dot.red    { background: #FF5F57; }
.avc-dot.yellow { background: #FFBD2E; }
.avc-dot.green  { background: #28C840; }
.avc-body { padding: 20px; }
.avc-label { font-family: 'Syne', sans-serif; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.avc-network-row { display: flex; gap: 8px; margin-bottom: 16px; }
.avc-net {
  flex: 1; text-align: center; border-radius: 12px;
  padding: 12px 6px; font-size: 0.72rem; font-weight: 800;
}
.avc-net small { font-weight: 400; opacity: 0.8; display: block; font-size: 0.6rem; margin-top: 2px; }
.mtn-avc  { background: linear-gradient(135deg,#FFC800,#E6960A); color: #0A0600; }
.tel-avc  { background: linear-gradient(135deg,#DB0032,#FF4D7A); color: #fff; }
.tigo-avc { background: linear-gradient(135deg,#00408F,#1E70CC); color: #fff; }
.avc-step { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.avc-step:last-child { border: none; }
.avc-step span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ============================================
   MOBILE-FIRST AMENDMENTS
   ============================================ */

/* ── Form field helpers ── */
.field-note {
  font-size: 0.7rem; font-weight: 500; color: var(--blue);
  background: rgba(109,66,245,0.08); padding: 2px 7px; border-radius: 20px;
  margin-left: 4px;
}
.field-hint {
  font-size: 0.73rem; color: var(--text-muted);
  margin-top: 5px; display: flex; align-items: center; gap: 5px;
}
.field-hint i { color: var(--blue); font-size: 0.7rem; }

/* ── Modal: more compact & mobile-friendly ── */
.modal-content { border-radius: 20px !important; }
.modal-header  { padding: 18px 20px 12px !important; }
.modal-body    { padding: 14px 20px 16px !important; }
.modal-title   { font-size: 1rem !important; }
.order-box     { padding: 12px 14px; margin-bottom: 14px; border-radius: 12px; }
.order-row     { font-size: 0.82rem; margin-bottom: 6px; }
.form-label    { font-size: 0.72rem !important; margin-bottom: 4px !important; }
.form-control  { padding: 10px 14px !important; font-size: 0.9rem !important; border-radius: 12px !important; }
.mb-3          { margin-bottom: 12px !important; }
.pay-btn       { padding: 13px 16px; font-size: 0.92rem; border-radius: 14px; }
.paystack-note { font-size: 0.72rem; margin-top: 10px; }

/* ── General mobile text scaling ── */
@media (max-width: 575px) {
  /* Navbar */
  .nav-brand-text        { font-size: 1.1rem; }
  .nav-logo-icon         { width: 30px; height: 30px; font-size: 12px; border-radius: 8px; }

  /* Hero */
  .hero-headline         { font-size: 2.6rem; letter-spacing: -1.5px; }
  .hero-sub              { font-size: 0.9rem; }
  .btn-hero-cta          { padding: 12px 22px; font-size: 0.9rem; }
  .btn-hero-ghost        { padding: 12px 20px; font-size: 0.9rem; }
  .hero-eyebrow          { font-size: 0.75rem; padding: 6px 12px; }
  .trust-item strong     { font-size: 1.4rem; }
  .trust-item span       { font-size: 0.68rem; }

  /* Section headings */
  .section-heading       { font-size: 1.75rem; letter-spacing: -0.8px; }
  .section-sub           { font-size: 0.85rem; }
  .section-label         { font-size: 0.72rem; padding: 5px 12px; }

  /* Network cards */
  .net-card              { padding: 24px 18px; }
  .nc-icon               { width: 52px; height: 52px; font-size: 20px; border-radius: 14px; }
  .nc-title              { font-size: 1.1rem; }
  .nc-desc               { font-size: 0.82rem; }

  /* Steps */
  .step-card             { padding: 24px 18px; }
  .step-ico              { width: 50px; height: 50px; font-size: 18px; border-radius: 14px; }
  .step-card h4          { font-size: 1rem; }
  .step-card p           { font-size: 0.82rem; }
  .step-num              { font-size: 2.8rem; }

  /* Why cards */
  .why-card              { padding: 18px 16px; }
  .why-ico               { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; }
  .why-card h5           { font-size: 0.92rem; }
  .why-card p            { font-size: 0.8rem; }

  /* Testimonials */
  .testi-card            { padding: 22px 18px; }
  .testi-card p          { font-size: 0.85rem; }
  .testi-footer strong   { font-size: 0.82rem; }
  .testi-footer span     { font-size: 0.72rem; }

  /* CTA */
  .cta-card              { padding: 36px 20px; }
  .cta-card h2           { font-size: 1.55rem; }
  .cta-card p            { font-size: 0.88rem; }
  .cta-net-btn           { padding: 11px 18px; font-size: 0.82rem; }

  /* Footer */
  .footer-tagline        { font-size: 0.8rem; }
  .footer-col-title      { font-size: 0.82rem; }
  .footer-links a        { font-size: 0.8rem; }
  .footer-contact p      { font-size: 0.8rem; }
  .footer-secure-badge   { font-size: 0.72rem; padding: 5px 12px; }
  .footer-bottom         { font-size: 0.72rem; }

  /* Bundle page hero */
  .page-hero             { padding: 100px 0 40px; }
  .page-hero h1          { font-size: 2rem; letter-spacing: -1px; }
  .page-hero p           { font-size: 0.85rem; }
  .page-net-badge        { font-size: 0.75rem; padding: 6px 14px; }

  /* Bundle cards */
  .bundles-grid          { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bcard                 { padding: 20px 14px; border-radius: 16px; }
  .bcard-gb              { font-size: 2.2rem; }
  .bcard-gb span         { font-size: 1rem; }
  .bcard-gb-sub          { font-size: 0.65rem; }
  .bcard-price           { font-size: 1.25rem; margin-bottom: 12px; }
  .bcard-btn             { padding: 10px 10px; font-size: 0.8rem; border-radius: 10px; }
  .bcard-label           { font-size: 0.62rem; padding: 3px 10px; margin-bottom: 10px; }
  .bcard-popular::before { font-size: 0.55rem; padding: 2px 8px; }

  /* Section padding tighter on mobile */
  .section-pad           { padding: 52px 0; }
  .bundles-section       { padding: 40px 0; }

  /* Info strip */
  .is-item strong        { font-size: 0.8rem; }
  .is-item span          { font-size: 0.7rem; }
  .is-item i             { font-size: 1.1rem; }

  /* Toast */
  .toast-item            { min-width: 240px; padding: 12px 14px; border-radius: 14px; }
  .toast-title           { font-size: 0.82rem; }
  .toast-msg             { font-size: 0.72rem; }

  /* Page hero stat box */
  .page-hero-stat-box    { padding: 20px 22px; gap: 16px; }
  .phsb-num              { font-size: 1.4rem; }
}

/* ── Mid-range phones (576–767) ── */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-headline    { font-size: 3rem; }
  .section-heading  { font-size: 2rem; }
  .bcard-gb         { font-size: 2.5rem; }
  .bcard-price      { font-size: 1.35rem; }
  .section-pad      { padding: 64px 0; }
}

/* ── Modal full-screen on very small phones ── */
@media (max-width: 480px) {
  .modal-dialog {
    margin: 0 !important;
    max-width: 100% !important;
    align-items: flex-end !important;
  }
  .modal.show .modal-dialog { transform: none; }
  .modal-content {
    border-radius: 24px 24px 0 0 !important;
    max-height: 92vh;
    overflow-y: auto;
  }
}

/* ============================================
   AGENT SECTION
   ============================================ */

.agent-section {
  background: var(--bg);
}

.agent-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease);
  height: 100%;
}
.agent-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.agent-card-ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(48,209,88,0.12), rgba(48,209,88,0.06));
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.agent-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.agent-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Pricing example box */
.agent-pricing-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.agent-pricing-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.agent-pricing-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.agent-example-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ae-item {
  flex: 1;
  min-width: 120px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
}
.ae-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.ae-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.ae-price.base { color: var(--text); }
.ae-price.margin { color: var(--blue); }
.ae-price.final { color: var(--green); }
.ae-plus {
  font-size: 1.2rem;
  color: var(--text-faint);
  flex-shrink: 0;
}
.agent-example-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.agent-example-note i { color: var(--blue); }

/* Features grid */
.agent-features-grid {
  margin-top: 16px;
}
.agent-feat {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce);
  height: 100%;
}
.agent-feat:hover { transform: translateY(-4px); }
.agent-feat i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(48,209,88,0.12), rgba(48,209,88,0.06));
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.agent-feat span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* CTA row */
.agent-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn-agent-main {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #30D158, #28A745);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 8px 24px rgba(48,209,88,0.3);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease);
}
.btn-agent-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(48,209,88,0.4);
  color: #fff;
}
.btn-agent-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(48,209,88,0.08);
  border: 1.5px solid rgba(48,209,88,0.25);
  color: var(--green);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s var(--ease);
}
.btn-agent-ghost:hover {
  background: rgba(48,209,88,0.15);
  color: var(--green);
  transform: translateY(-2px);
}

/* Agent auth pages */
.agent-auth-hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}
.agent-auth-hero .hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.agent-auth-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.agent-auth-card .auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.agent-auth-card .auth-logo .nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 16px;
}
.agent-auth-card .auth-logo .nav-brand-text {
  font-size: 1.4rem;
  color: var(--text);
}
.agent-auth-card .auth-logo .nav-brand-accent { color: var(--green); }
.agent-auth-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}
.agent-auth-card .auth-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}
.agent-auth-card .form-label {
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.agent-auth-card .form-control {
  border: 1.5px solid #E8E8EC !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  background: var(--bg) !important;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease) !important;
}
.agent-auth-card .form-control:focus {
  border-color: var(--green) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(48,209,88,0.1) !important;
}
.btn-auth-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #30D158, #28A745);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s var(--ease);
  box-shadow: 0 6px 20px rgba(48,209,88,0.3);
}
.btn-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(48,209,88,0.4);
}
.auth-alt-link {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.auth-alt-link a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.auth-alt-link a:hover { text-decoration: underline; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-faint);
  font-size: 0.78rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E8E8EC;
}
.auth-agent-price {
  text-align: center;
  background: rgba(48,209,88,0.06);
  border: 1px solid rgba(48,209,88,0.15);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 20px;
}
.auth-agent-price .price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.auth-agent-price .price-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -1px;
}
.auth-agent-price .price-note {
  font-size: 0.72rem;
  color: var(--text-faint);
}

/* Agent landing page */
.agent-landing-hero {
  background: var(--bg-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.agent-landing-hero .hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.agent-landing-hero .agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(48,209,88,0.12);
  border: 1px solid rgba(48,209,88,0.25);
  color: var(--green);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.agent-landing-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 14px;
}
.agent-landing-hero h1 span { color: var(--green); }
.agent-landing-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 30px;
}
.agent-landing-hero .hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Agent steps */
.agent-steps-section { background: #fff; }
.agent-step-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--t) var(--ease-bounce);
  height: 100%;
}
.agent-step-card:hover { transform: translateY(-6px); }
.agent-step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #30D158, #28A745);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(48,209,88,0.3);
}
.agent-step-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.agent-step-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Agent benefits */
.agent-benefits-section { background: var(--bg); }
.agent-benefit-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce);
  height: 100%;
}
.agent-benefit-card:hover { transform: translateY(-4px); }
.agent-benefit-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(48,209,88,0.12), rgba(48,209,88,0.06));
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.agent-benefit-card h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.agent-benefit-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive agent */
@media (max-width: 767px) {
  .agent-pricing-box { padding: 24px 20px; }
  .agent-example-grid { flex-direction: column; }
  .ae-plus { display: none; }
  .agent-cta-row { flex-direction: column; align-items: center; }
  .btn-agent-main, .btn-agent-ghost { width: 100%; justify-content: center; }
  .agent-auth-card { padding: 28px 22px; }
}

/* ============================================
   ADMIN PANEL
   ============================================ */

/* Admin login */
.admin-login-hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}
.admin-login-hero .hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.admin-login-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.admin-login-card .auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.admin-login-card .auth-logo .nav-logo-icon {
  width: 40px; height: 40px; border-radius: 12px; font-size: 16px;
  background: linear-gradient(135deg, #6C5CE7, #A29BFE);
  box-shadow: 0 4px 12px rgba(108,92,231,0.3);
}
.admin-login-card .auth-logo .nav-brand-text { font-size: 1.4rem; color: var(--text); }
.admin-login-card .auth-logo .nav-brand-accent { color: #6C5CE7; }
.admin-login-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}
.admin-login-card .auth-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

/* Admin layout */
.admin-body {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
  padding-bottom: 0;
}

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.sidebar-header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-header .nav-logo-icon {
  width: 34px; height: 34px; border-radius: 10px; font-size: 14px;
  background: linear-gradient(135deg, #6C5CE7, #A29BFE);
  box-shadow: 0 4px 12px rgba(108,92,231,0.3);
}
.sidebar-header .nav-brand-text { font-size: 1.15rem; color: #fff; }
.sidebar-header .nav-brand-accent { color: #A29BFE; }
.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
}
.sidebar-nav-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.25);
  padding: 8px 12px 4px;
  font-weight: 700;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}
.sidebar-link:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.sidebar-link.active {
  background: rgba(108,92,231,0.2);
  color: #A29BFE;
}
.sidebar-link i {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
}
.sidebar-link .badge {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}
.sidebar-footer {
  padding: 14px 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sidebar-footer .sidebar-link {
  color: rgba(255,255,255,0.4);
}
.sidebar-footer .sidebar-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* Main content */
.admin-main {
  flex: 1;
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top bar */
.admin-topbar {
  background: #fff;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}
.topbar-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-admin-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.topbar-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6C5CE7, #A29BFE);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.btn-admin-logout {
  background: none;
  border: 1.5px solid #E8E8EC;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-admin-logout:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Admin content area */
.admin-content {
  padding: 28px;
  flex: 1;
}

/* Stat cards */
.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-stat-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.admin-stat-ico.purple { background: rgba(108,92,231,0.1); color: #6C5CE7; }
.admin-stat-ico.green { background: rgba(48,209,88,0.1); color: var(--green); }
.admin-stat-ico.blue { background: rgba(109,66,245,0.1); color: var(--blue); }
.admin-stat-ico.yellow { background: rgba(255,200,0,0.12); color: var(--mtn-dark); }
.admin-stat-ico.red { background: rgba(255,69,58,0.1); color: var(--red); }
.admin-stat-info strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -1px;
}
.admin-stat-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Data table */
.admin-table-wrap {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-table-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EFEFEF;
}
.admin-table-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}
.admin-table-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: 10px;
  padding: 8px 14px;
}
.admin-search i { color: var(--text-faint); font-size: 0.85rem; }
.admin-search input {
  border: none;
  background: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--text);
  width: 180px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  padding: 12px 22px;
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 700;
  background: var(--bg);
  border-bottom: 1px solid #EFEFEF;
}
.admin-table td {
  padding: 14px 22px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid #F5F5F7;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(0,0,0,0.01); }
.admin-table .cell-id { font-family: monospace; font-size: 0.78rem; color: var(--text-muted); }
.admin-table .cell-name { font-weight: 600; }
.admin-table .cell-phone { color: var(--text-muted); }
.admin-table .cell-money { font-family: 'Syne', sans-serif; font-weight: 700; }
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.status-active { background: rgba(48,209,88,0.1); color: var(--green); }
.status-pending { background: rgba(255,200,0,0.12); color: var(--mtn-dark); }
.status-inactive { background: rgba(255,69,58,0.08); color: var(--red); }
.status-completed { background: rgba(109,66,245,0.08); color: var(--blue); }
.row-actions {
  display: flex;
  gap: 6px;
}
.btn-row-action {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-view { background: rgba(109,66,245,0.08); color: var(--blue); }
.btn-view:hover { background: var(--blue); color: #fff; }
.btn-edit { background: rgba(255,200,0,0.1); color: var(--mtn-dark); }
.btn-edit:hover { background: var(--mtn-dark); color: #fff; }
.btn-delete { background: rgba(255,69,58,0.08); color: var(--red); }
.btn-delete:hover { background: var(--red); color: #fff; }
.btn-approve { background: rgba(48,209,88,0.1); color: var(--green); }
.btn-approve:hover { background: var(--green); color: #fff; }

/* Empty state */
.admin-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}
.admin-empty i {
  font-size: 2.5rem;
  color: var(--text-faint);
  margin-bottom: 14px;
  display: block;
}
.admin-empty p {
  font-size: 0.9rem;
}

/* Admin forms */
.admin-form-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 28px;
  box-shadow: var(--shadow);
}
.admin-form-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.admin-form-card .form-label {
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.admin-form-card .form-control {
  border: 1.5px solid #E8E8EC !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  background: var(--bg) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.admin-form-card .form-control:focus {
  border-color: #6C5CE7 !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(108,92,231,0.1) !important;
}
.btn-admin-primary {
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #6C5CE7, #A29BFE);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(108,92,231,0.3);
}
.btn-admin-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,92,231,0.4);
}

/* Video upload */
.video-upload-zone {
  border: 2px dashed #E8E8EC;
  border-radius: var(--radius-sm);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  background: var(--bg);
}
.video-upload-zone:hover {
  border-color: #6C5CE7;
  background: rgba(108,92,231,0.03);
}
.video-upload-area i {
  font-size: 2.5rem;
  color: var(--text-faint);
  margin-bottom: 12px;
  display: block;
}
.video-upload-area p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.video-upload-area small {
  font-size: 0.75rem;
  color: var(--text-faint);
}
.video-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce);
}
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  position: relative;
  background: var(--bg-dark);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb .play-overlay {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #6C5CE7;
  transition: transform 0.2s;
}
.video-card:hover .play-overlay { transform: scale(1.1); }
.video-thumb .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}
.video-card-body {
  padding: 16px;
}
.video-card-body h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-card-body small {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.video-card-actions {
  padding: 10px 16px;
  border-top: 1px solid #F5F5F7;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* Modal */
.admin-modal .modal-content {
  border-radius: 20px !important;
  border: none !important;
}
.admin-modal .modal-header {
  border-bottom: 1px solid #EFEFEF !important;
  padding: 20px 24px !important;
}
.admin-modal .modal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
}
.admin-modal .modal-body {
  padding: 20px 24px !important;
}

/* Recent activity */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #F5F5F7;
}
.activity-item:last-child { border-bottom: none; }
.activity-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.activity-info { flex: 1; margin-right: 8px; }
.activity-info p {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 2px;
  color: var(--text);
}
.activity-info span {
  font-size: 0.75rem;
  color: var(--text-faint);
}
.activity-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  white-space: nowrap;
}

/* Pagination */
.admin-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px;
}
.page-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid #E8E8EC;
  background: #fff;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active {
  border-color: #6C5CE7;
  color: #6C5CE7;
  background: rgba(108,92,231,0.05);
}

/* Responsive admin */
@media (max-width: 1199px) {
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .sidebar-toggle { display: block; }
  .admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 99;
  }
  .admin-overlay.show { display: block; }
}
@media (max-width: 767px) {
  .admin-stats-row { grid-template-columns: 1fr; }
  .admin-content { padding: 16px; }
  .admin-topbar { padding: 12px 16px; }
  .admin-search input { width: 120px; }
  .topbar-title { font-size: 1rem; }
  .admin-table th, .admin-table td { padding: 10px 12px; font-size: 0.8rem; }
  .admin-login-card { padding: 28px 22px; }
}

/* ============================================
   OTHER SERVICES SECTION (Landing Page)
   ============================================ */
.other-services-landing {
  background: var(--bg);
}
.service-landing-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #EFEFEF;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  color: var(--text);
  height: 100%;
}
.service-landing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.slc-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 18px;
}
.slc-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.slc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.slc-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: block;
  margin-bottom: 14px;
}
.slc-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.slc-netflix:hover { border-color: #E50914; }
.slc-netflix .slc-price { color: #E50914; }
.slc-netflix .slc-tag { background: rgba(229,9,20,0.1); color: #E50914; }
.slc-spotify:hover { border-color: #1DB954; }
.slc-spotify .slc-price { color: #1DB954; }
.slc-spotify .slc-tag { background: rgba(29,185,84,0.1); color: #1DB954; }
.slc-apple:hover { border-color: #FC3C44; }
.slc-apple .slc-price { color: #FC3C44; }
.slc-apple .slc-tag { background: rgba(252,60,68,0.1); color: #FC3C44; }
.slc-waec:hover { border-color: #6C5CE7; }
.slc-waec .slc-price { color: #6C5CE7; }
.slc-waec .slc-tag { background: rgba(108,92,231,0.1); color: #6C5CE7; }
.slc-bece:hover { border-color: #00B894; }
.slc-bece .slc-price { color: #00B894; }
.slc-bece .slc-tag { background: rgba(0,184,148,0.1); color: #00B894; }

/* ============================================
   SERVICE PAGES (Netflix, Spotify, Apple, WAEC, BECE)
   ============================================ */

/* Page hero variants */
.page-netflix { background: linear-gradient(150deg, #0a0000 0%, #1a0505 60%, #200808 100%); }
.netflix-orb-1 { width: 500px; height: 500px; background: #E50914; opacity: 0.15; top: -150px; right: -100px; }
.netflix-orb-2 { width: 300px; height: 300px; background: #B20710; opacity: 0.08; bottom: -50px; left: 0; }

.page-spotify { background: linear-gradient(150deg, #050a05 0%, #0a1a0a 60%, #0d200d 100%); }
.spotify-orb-1 { width: 500px; height: 500px; background: #1DB954; opacity: 0.12; top: -150px; right: -100px; }
.spotify-orb-2 { width: 300px; height: 300px; background: #1ed760; opacity: 0.06; bottom: -50px; left: 0; }

.page-apple { background: linear-gradient(150deg, #0a0505 0%, #1a0a0a 60%, #200d0d 100%); }
.apple-orb-1 { width: 500px; height: 500px; background: #FC3C44; opacity: 0.12; top: -150px; right: -100px; }
.apple-orb-2 { width: 300px; height: 300px; background: #FA243C; opacity: 0.06; bottom: -50px; left: 0; }

.page-waec { background: linear-gradient(150deg, #080510 0%, #100d20 60%, #151028 100%); }
.waec-orb-1 { width: 500px; height: 500px; background: #6C5CE7; opacity: 0.15; top: -150px; right: -100px; }
.waec-orb-2 { width: 300px; height: 300px; background: #A29BFE; opacity: 0.08; bottom: -50px; left: 0; }

.page-bece { background: linear-gradient(150deg, #050a08 0%, #0a1a14 60%, #0d2018 100%); }
.bece-orb-1 { width: 500px; height: 500px; background: #00B894; opacity: 0.15; top: -150px; right: -100px; }
.bece-orb-2 { width: 300px; height: 300px; background: #00CEC9; opacity: 0.08; bottom: -50px; left: 0; }

/* Service page badges */
.netflix-net-badge { background: rgba(229,9,20,0.12); border-color: rgba(229,9,20,0.25); color: #E50914; }
.spotify-net-badge { background: rgba(29,185,84,0.12); border-color: rgba(29,185,84,0.25); color: #1DB954; }
.apple-net-badge { background: rgba(252,60,68,0.12); border-color: rgba(252,60,68,0.25); color: #FC3C44; }
.waec-net-badge { background: rgba(108,92,231,0.12); border-color: rgba(108,92,231,0.25); color: #A29BFE; }
.bece-net-badge { background: rgba(0,184,148,0.12); border-color: rgba(0,184,148,0.25); color: #00CEC9; }

/* ============================================
   SERVICE CAROUSEL
   ============================================ */
.service-carousel-section {
  background: #fff;
  padding: 64px 0;
}
.service-carousel-section .carousel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.carousel-slide-card {
  border-radius: 24px;
  padding: 48px 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.carousel-slide-content {
  flex: 1;
}
.carousel-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.carousel-slide-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.carousel-slide-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 480px;
}
.carousel-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.carousel-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.carousel-meta i {
  color: rgba(255,255,255,0.7);
}
.carousel-slide-visual {
  flex-shrink: 0;
}
.carousel-icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.9);
}
.service-carousel-section .carousel-indicators {
  bottom: -40px;
}
.service-carousel-section .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D1D6;
  border: none;
  margin: 0 4px;
  opacity: 1;
  transition: all 0.25s;
}
.service-carousel-section .carousel-indicators button.active {
  background: var(--blue);
  width: 28px;
  border-radius: 5px;
}
.service-carousel-section .carousel-control-prev,
.service-carousel-section .carousel-control-next {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}
.service-carousel-section .carousel-control-prev { left: 16px; }
.service-carousel-section .carousel-control-next { right: 16px; }
.service-carousel-section .carousel-control-prev-icon,
.service-carousel-section .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .carousel-slide-card {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
    min-height: 380px;
  }
  .carousel-slide-content h3 { font-size: 1.5rem; }
  .carousel-slide-content p { font-size: 0.85rem; }
  .carousel-meta { justify-content: center; }
  .carousel-icon-wrap { width: 80px; height: 80px; font-size: 32px; border-radius: 20px; }
  .service-carousel-section .carousel-control-prev,
  .service-carousel-section .carousel-control-next { display: none; }
}

/* ============================================
   SERVICE PRICING CARDS
   ============================================ */
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid #EFEFEF;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  overflow: hidden;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.service-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: var(--radius);
  transition: opacity var(--t) var(--ease);
}
.service-card-netflix:hover { border-color: #E50914; }
.service-card-netflix:hover .service-card-glow { background: radial-gradient(circle, rgba(229,9,20,0.06) 0%, transparent 70%); opacity: 1; }
.service-card-spotify:hover { border-color: #1DB954; }
.service-card-spotify:hover .service-card-glow { background: radial-gradient(circle, rgba(29,185,84,0.06) 0%, transparent 70%); opacity: 1; }
.service-card-apple:hover { border-color: #FC3C44; }
.service-card-apple:hover .service-card-glow { background: radial-gradient(circle, rgba(252,60,68,0.06) 0%, transparent 70%); opacity: 1; }
.service-card-waec:hover { border-color: #6C5CE7; }
.service-card-waec:hover .service-card-glow { background: radial-gradient(circle, rgba(108,92,231,0.06) 0%, transparent 70%); opacity: 1; }
.service-card-bece:hover { border-color: #00B894; }
.service-card-bece:hover .service-card-glow { background: radial-gradient(circle, rgba(0,184,148,0.06) 0%, transparent 70%); opacity: 1; }

.service-card-popular {
  border-color: rgba(229,9,20,0.3);
  transform: scale(1.02);
}
.service-card-popular:hover {
  transform: scale(1.02) translateY(-10px);
}
.popular-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, #E50914, #FF6B6B);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}
.netflix-icon { background: linear-gradient(135deg, #E50914, #B20710); box-shadow: 0 8px 24px rgba(229,9,20,0.3); }
.spotify-icon { background: linear-gradient(135deg, #1DB954, #191414); box-shadow: 0 8px 24px rgba(29,185,84,0.3); }
.apple-icon { background: linear-gradient(135deg, #FC3C44, #FA243C); box-shadow: 0 8px 24px rgba(252,60,68,0.3); }
.waec-icon { background: linear-gradient(135deg, #6C5CE7, #A29BFE); box-shadow: 0 8px 24px rgba(108,92,231,0.3); }
.bece-icon { background: linear-gradient(135deg, #00B894, #00CEC9); box-shadow: 0 8px 24px rgba(0,184,148,0.3); }

.service-card-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.netflix-badge { background: rgba(229,9,20,0.1); color: #E50914; }
.spotify-badge { background: rgba(29,185,84,0.1); color: #1DB954; }
.apple-badge { background: rgba(252,60,68,0.1); color: #FC3C44; }
.waec-badge { background: rgba(108,92,231,0.1); color: #6C5CE7; }
.bece-badge { background: rgba(0,184,148,0.1); color: #00B894; }

.service-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card-price {
  margin-bottom: 20px;
}
.scp-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.scp-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.netflix-price { color: #E50914; }
.spotify-price { color: #1DB954; }
.apple-price { color: #FC3C44; }
.waec-price { color: #6C5CE7; }
.bece-price { color: #00B894; }

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.service-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid #F5F5F7;
}
.service-card-features li:last-child { border-bottom: none; }
.service-card-features li i {
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.service-card-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.22s var(--ease-bounce), box-shadow 0.22s var(--ease);
  color: #fff;
}
.service-card-btn:hover { transform: scale(1.03); }
.netflix-btn { background: linear-gradient(135deg, #E50914, #B20710); box-shadow: 0 4px 16px rgba(229,9,20,0.3); }
.spotify-btn { background: linear-gradient(135deg, #1DB954, #191414); box-shadow: 0 4px 16px rgba(29,185,84,0.25); }
.apple-btn { background: linear-gradient(135deg, #FC3C44, #FA243C); box-shadow: 0 4px 16px rgba(252,60,68,0.25); }
.waec-btn { background: linear-gradient(135deg, #6C5CE7, #A29BFE); box-shadow: 0 4px 16px rgba(108,92,231,0.25); }
.bece-btn { background: linear-gradient(135deg, #00B894, #00CEC9); box-shadow: 0 4px 16px rgba(0,184,148,0.25); }

/* ============================================
   OTHER SERVICES (on service pages)
   ============================================ */
.other-services-section {
  background: var(--bg);
}
.other-service-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-bounce), box-shadow var(--t) var(--ease);
  color: var(--text);
  height: 100%;
}
.other-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.osc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 14px;
}
.other-service-card h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.other-service-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 767px) {
  .service-carousel-section { padding: 40px 0; }
  .service-card { padding: 28px 20px; }
  .scp-amount { font-size: 1.8rem; }
  .service-card-features li { font-size: 0.82rem; }
  .popular-ribbon { font-size: 0.55rem; padding: 4px 36px; }
}
