/* ── Landing Page CSS ─────────────────────────────────── */
/* ── Landing Page CSS ─────────────────────────────────── */
/* ─── HERO ─── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.6), transparent 70%);
  top: -100px;
  left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 0, 26, 0.5), transparent 70%);
  top: 40%;
  right: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 61, 165, 0.5), transparent 70%);
  bottom: 0;
  left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(20px, -20px);
  }
  66% {
    transform: translate(-10px, 15px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.3);
  color: var(--mtn-yellow);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
  animation: fadeSlideUp 0.6s 0.1s ease both;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--mtn-yellow),
    #ff6b35,
    var(--telecel-red)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}

.hero-networks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s 0.4s ease both;
}

.net-logo-sm {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── PHONE MOCKUP ─── */
.hero-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  animation: fadeSlideUp 0.8s 0.5s ease both;
}

.phone-mockup {
  width: 260px;
  background: var(--brand-mid);
  border: 1.5px solid var(--brand-border);
  border-radius: 32px;
  padding: 16px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.phone-screen {
  background: var(--brand-dark);
  border-radius: 20px;
  padding: 20px 16px;
}

.phone-header {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--mtn-yellow);
  margin-bottom: 16px;
  text-align: center;
}

.phone-bundle {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.mtn-card-mini {
  background: rgba(255, 204, 0, 0.12);
  color: var(--mtn-yellow);
  border: 1px solid rgba(255, 204, 0, 0.3);
}
.telecel-card-mini {
  background: rgba(226, 0, 26, 0.12);
  color: #ff3347;
  border: 1px solid rgba(226, 0, 26, 0.3);
}
.at-card-mini {
  background: rgba(0, 61, 165, 0.2);
  color: #5b8ff9;
  border: 1px solid rgba(0, 61, 165, 0.4);
}

.phone-btn {
  background: var(--mtn-yellow);
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 0.9rem;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 24px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--mtn-yellow);
}
.stat span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--brand-border);
}

/* ─── BUNDLES SECTION ─── */
.bundles-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.network-block {
  margin-bottom: 64px;
}

.network-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--brand-border);
}

.network-title.mtn-title {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.06), transparent);
  border-color: rgba(255, 204, 0, 0.2);
}
.network-title.telecel-title {
  background: linear-gradient(135deg, rgba(226, 0, 26, 0.06), transparent);
  border-color: rgba(226, 0, 26, 0.2);
}
.network-title.at-title {
  background: linear-gradient(135deg, rgba(0, 61, 165, 0.08), transparent);
  border-color: rgba(0, 61, 165, 0.25);
}

.net-logo-md {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

.network-title h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.net-tag {
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 99px;
  font-weight: 600;
}
.mtn-tag {
  background: rgba(255, 204, 0, 0.15);
  color: var(--mtn-yellow);
}
.telecel-tag {
  background: rgba(226, 0, 26, 0.15);
  color: #ff3347;
}
.at-tag {
  background: rgba(0, 61, 165, 0.2);
  color: #5b8ff9;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 100px 24px;
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: var(--brand-mid);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 204, 0, 0.3);
}

.step-num {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 204, 0, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(255, 204, 0, 0.2);
  transform: translateY(-2px);
}

.testi-stars {
  color: var(--mtn-yellow);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mtn-avatar {
  background: rgba(255, 204, 0, 0.2);
  color: var(--mtn-yellow);
}
.telecel-avatar {
  background: rgba(226, 0, 26, 0.2);
  color: #ff3347;
}
.at-avatar {
  background: rgba(0, 61, 165, 0.25);
  color: #5b8ff9;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 204, 0, 0.08),
    rgba(226, 0, 26, 0.05),
    rgba(0, 61, 165, 0.08)
  );
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--brand-mid);
  border-top: 1px solid var(--brand-border);
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-networks {
  display: flex;
  gap: 12px;
  align-items: center;
}
.foot-net {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.7;
  transition: var(--transition);
}
.foot-net:hover {
  opacity: 1;
}

.footer-links h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links a,
.footer-links p {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--brand-border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-networks {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .step-connector {
    display: none;
  }
}
@media (max-width: 600px) {
  .stats-bar {
    gap: 16px;
  }
  .stat {
    padding: 0 16px;
  }
  .stat-divider {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
