/* ============================================================
   NEW VTU HOMEPAGE — Premium Design System
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Primary Brand — vibrant tech-blue to indigo */
  --brand-start:  #0ea5e9;
  --brand-mid:    #6366f1;
  --brand-end:    #8b5cf6;
  --brand-grad: linear-gradient(135deg, var(--brand-start) 0%, var(--brand-mid) 55%, var(--brand-end) 100%);

  /* Accent — electric green */
  --accent:       #10d98a;
  --accent-dark:  #059669;
  --accent-grad:  linear-gradient(135deg, #10d98a 0%, #0ea5e9 100%);

  /* Dark Backgrounds */
  --bg-dark:      #070b14;
  --bg-card:      #0d1526;
  --bg-card-2:    #111827;
  --bg-glass:     rgba(13, 21, 38, 0.75);
  --bg-section:   #0a1020;

  /* Surface / borders */
  --border:       rgba(99, 102, 241, 0.25);
  --border-light: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-white:   #f1f5f9;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;

  /* Service Card Accents */
  --clr-data:      #0ea5e9;
  --clr-airtime:   #f59e0b;
  --clr-cable:     #8b5cf6;
  --clr-elec:      #10d98a;
  --clr-edu:       #ef4444;
  --clr-a2c:       #ec4899;

  /* Shadows */
  --shadow-glow:  0 0 40px rgba(99, 102, 241, 0.25);
  --shadow-card:  0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-btn:   0 4px 20px rgba(14, 165, 233, 0.4);

  /* Radius / timing */
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-pill:  999px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --dur:          0.35s;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  color: var(--text-white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-mid); border-radius: 99px; }

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

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-start);
  margin-bottom: 14px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider-line {
  width: 70px;
  height: 4px;
  background: var(--brand-grad);
  border-radius: 99px;
  margin: 16px auto 0;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur);
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.55);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--border);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--brand-start);
  color: var(--brand-start);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.btn-accent {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 217, 138, 0.35);
}
.btn-accent:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.1);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--dur), box-shadow var(--dur), padding var(--dur);
}

.navbar.scrolled {
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  padding: 10px 0;
}

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

/* Logo */
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.logo span {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.06);
}
.nav-links .btn { padding: 10px 24px; font-size: 0.9rem; margin-left: 10px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--text-white);
  padding: 6px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* Hero mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 10% 50%, rgba(99, 102, 241, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 90% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 60% 90%, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.hero-content { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 217, 138, 0.1);
  border: 1px solid rgba(16, 217, 138, 0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  animation: pulse-badge 3s ease-in-out infinite;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 217, 138, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(16, 217, 138, 0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text-white);
}

.hero h1 .gradient-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Hero visual — floating dashboard card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-glow), var(--shadow-card);
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-card-header h4 {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-balance {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 28px;
}
.hero-balance .currency { font-size: 1.4rem; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--accent); }

/* Quick action tiles inside hero card */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.hero-action-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  text-align: center;
  transition: background var(--dur), transform var(--dur);
  cursor: pointer;
}
.hero-action-tile:hover {
  background: rgba(99, 102, 241, 0.15);
  transform: translateY(-4px);
}
.hero-action-tile i {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
}
.hero-action-tile span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Recent transaction row */
.hero-txn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
}
.hero-txn:first-child { border-top: none; }
.hero-txn-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-txn-info { flex: 1; }
.hero-txn-title { font-size: 0.85rem; font-weight: 600; color: var(--text-white); }
.hero-txn-sub   { font-size: 0.75rem; color: var(--text-muted); }
.hero-txn-amt   { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; }
.txn-debit  { color: #ef4444; }
.txn-credit { color: var(--accent); }

/* Floating badges around hero card */
.float-badge {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.float-badge.top-right { top: -20px; right: -30px; animation: float-badge-1 4s ease-in-out infinite; }
.float-badge.bottom-left { bottom: 20px; left: -40px; animation: float-badge-2 5s ease-in-out infinite 1s; }

@keyframes float-badge-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float-badge-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.float-badge .badge-icon { font-size: 1.2rem; }
.float-badge .badge-text { color: var(--text-white); }
.float-badge .badge-sub { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; display: block; }

/* ── TICKER BAND ────────────────────────────────────────────── */
.ticker-band {
  background: var(--brand-grad);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.ticker-item i { font-size: 1rem; }
.ticker-sep { color: rgba(255,255,255,0.4); }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES SECTION ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--card-accent, var(--brand-start));
  border-color: var(--card-accent, var(--brand-start));
}
.service-card:hover::before { opacity: 1; }

/* Per-service color overrides */
.service-card.s-data   { --card-accent: var(--clr-data);   }
.service-card.s-air    { --card-accent: var(--clr-airtime); }
.service-card.s-cable  { --card-accent: var(--clr-cable);  }
.service-card.s-elec   { --card-accent: var(--clr-elec);   }
.service-card.s-edu    { --card-accent: var(--clr-edu);     }
.service-card.s-a2c    { --card-accent: var(--clr-a2c);    }

.service-card::before {
  background: radial-gradient(ellipse at top left, color-mix(in srgb, var(--card-accent, var(--brand-start)) 15%, transparent), transparent 70%);
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: transform var(--dur);
}
.service-card:hover .service-icon { transform: scale(1.15) rotate(-5deg); }

.service-card.s-data   .service-icon { background: rgba(14,165,233,0.15);  color: var(--clr-data);   }
.service-card.s-air    .service-icon { background: rgba(245,158,11,0.15);  color: var(--clr-airtime); }
.service-card.s-cable  .service-icon { background: rgba(139,92,246,0.15);  color: var(--clr-cable);  }
.service-card.s-elec   .service-icon { background: rgba(16,217,138,0.15);  color: var(--clr-elec);   }
.service-card.s-edu    .service-icon { background: rgba(239,68,68,0.15);   color: var(--clr-edu);    }
.service-card.s-a2c    .service-icon { background: rgba(236,72,153,0.15);  color: var(--clr-a2c);    }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--card-accent, var(--brand-start));
  transition: gap var(--dur);
}
.service-card:hover .service-arrow { gap: 12px; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
  opacity: 0.4;
  z-index: 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--dur) var(--ease), border-color var(--dur);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-mid);
}

.step-number {
  width: 56px; height: 56px;
  background: var(--brand-grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.12);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── WHY CHOOSE US ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-mid);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}
.feature-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--brand-start);
  transition: background var(--dur), transform var(--dur);
}
.feature-card:hover .feature-icon {
  background: rgba(99, 102, 241, 0.22);
  transform: scale(1.1);
}
.feature-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── PRICING SECTION ─────────────────────────────────────────── */
.pricing-section { }

.pricing-section .grid-network {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Override the plan card from the existing partial */
.plan-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) !important;
  box-shadow: none !important;
}
.plan-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--brand-mid) !important;
}
.plan-header {
  padding: 22px 20px !important;
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
}
.plan-header h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 !important;
}
.network-logo {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
.plan-body { padding: 16px 20px !important; }
.plan-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid var(--border-light) !important;
  font-size: 0.85rem;
  gap: 8px;
}
.plan-row:last-child { border-bottom: none !important; }
.plan-row span { color: var(--text-muted) !important; }
.plan-row .price {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: var(--accent) !important;
}
.plan-row .desc {
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
  flex-shrink: 0;
}

/* Network header colors */
.mtn-header   { background: linear-gradient(135deg, #FFCB05, #FF9500) !important; }
.airtel-header { background: linear-gradient(135deg, #E60000, #FF4444) !important; }
.glo-header   { background: linear-gradient(135deg, #009900, #00cc44) !important; }
.mobile-header { background: linear-gradient(135deg, #006633, #00a851) !important; }

/* ── PARTNERS (NETWORK LOGOS) ──────────────────────────────── */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.partner-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  min-width: 160px;
  justify-content: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.partner-pill:hover {
  transform: translateY(-6px);
  border-color: var(--brand-mid);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.18);
}
.partner-pill img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.partner-pill .p-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}
.partner-pill .p-logo-only img {
  height: 36px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  background: var(--brand-grad);
  box-shadow: var(--shadow-glow);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 36px;
  position: relative;
}
.cta-banner .cta-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
  position: relative;
  flex-wrap: wrap;
}
.cta-stat h4 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.cta-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.cta-banner .btn-white {
  background: #fff;
  color: var(--brand-mid);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  transition: transform var(--dur), box-shadow var(--dur);
  position: relative;
}
.cta-banner .btn-white:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.cta-banner .btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  transition: border-color var(--dur), background var(--dur), transform var(--dur);
}
.cta-banner .btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

/* ── CONTACT SECTION ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur);
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-mid);
}
.contact-icon {
  width: 56px; height: 56px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-start);
  margin: 0 auto 20px;
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.contact-card a:hover { color: var(--brand-start); }

/* Social icons */
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.social-row a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.social-row a:hover {
  background: var(--brand-mid);
  color: #fff;
  transform: translateY(-3px);
  border-color: transparent;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #050810;
  border-top: 1px solid var(--border-light);
  padding-top: 80px;
  padding-bottom: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 280px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  transition: color var(--dur), padding-left var(--dur);
}
.footer-col a:hover {
  color: var(--brand-start);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--brand-start); font-weight: 600; }
.footer-bottom a:hover { color: var(--brand-end); }

/* ── Legacy partial grid classes — compatibility ────────────── */
/* The sme-pricing-grid partial outputs .grid.grid-4.network-plans */
.pricing-section .grid.grid-4,
.pricing-section .network-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .pricing-section .grid.grid-4,
  .pricing-section .network-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-section .grid.grid-4,
  .pricing-section .network-plans {
    grid-template-columns: 1fr;
  }
}

/* ── AOS override — dark theme friendly ─────────────────────── */
[data-aos] { pointer-events: auto !important; }

/* ── Whatsapp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--dur), box-shadow var(--dur);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ── MOBILE RESPONSIVENESS ──────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing-section .grid-network { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; max-width: 440px; margin: 0 auto; }
  .hero-card { max-width: 100%; }
  .float-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .pricing-section .grid-network { grid-template-columns: 1fr; }
  .partners-row  { gap: 14px; }
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner    { padding: 50px 28px; }
  .cta-banner .cta-stats { gap: 28px; }
  .hero-stats    { gap: 20px; }
  .hero-actions  { grid-template-columns: repeat(3, 1fr); }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(7, 11, 20, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-links .btn { margin-left: 0; width: 100%; justify-content: center; }
  .nav-toggle     { display: block; }
  .hero-buttons   { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.7rem; }
  .hero h1       { font-size: 2.2rem; }
  .hero-balance  { font-size: 2rem; }
}
