:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-soft: rgba(22, 163, 74, 0.1);
  --secondary: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --white: #ffffff;
  --light: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.1);
  --transition: all 0.3s ease;
  --hero-blue: #2e22c9;
  --hero-blue-dark: #2b1fc0;
  --hero-accent: #d8ff4d;
}

/* =========================
   HERO
========================= */
.hero,
.hero-clean {
  position: relative;
  overflow: hidden;
  padding: 20px 0 50px;
  background: linear-gradient(180deg, var(--hero-blue) 0%, var(--hero-blue-dark) 100%);
  color: #fff;
  isolation: isolate;
}

.hero::before,
.hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(circle at bottom center, rgba(216, 255, 77, 0.08), transparent 28%);
  z-index: -2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-pill {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--hero-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hero-title,
.hero h1 {
  font-size: 4rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--hero-accent);
}

.hero-subtitle,
.hero p {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.hero-btn,
.hero-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 42px;
}

.hero-btn .btn,
.hero-btn-group .btn {
  flex: 1;
  min-width: 0;
  max-width: 240px;
  min-height: 58px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-register,
.hero-btn-register {
  background: #ffffff;
  color: #111111;
  border: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.btn-register:hover,
.hero-btn-register:hover {
  color: #111111;
  transform: translateY(-3px);
}

.btn-login,
.hero-btn-login {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.btn-login:hover,
.hero-btn-login:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.google-play {
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-play img {
  width: 170px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.hero-pattern {
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: 520px;
  height: 420px;
  transform: translateX(-50%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

.hero-pattern::before,
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 0 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: none;
}

.hero-pattern::after {
  inset: 35px;
  opacity: 0.7;
}

/* =========================
   ABOUT
========================= */
.card1 {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.card1::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.14), transparent 70%);
  pointer-events: none;
}

.card1::after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
  pointer-events: none;
}

.card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(34, 197, 94, 0.18);
}

.card1 h5 {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 14px;
}

.card1 p {
  position: relative;
  z-index: 2;
  color: #475569;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* =========================
   PRICING
========================= */
.pricing-card,
.data-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
}

.pricing-card:hover,
.data-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.border-mtn {
  border-top: 5px solid #facc15;
}

.border-airtel {
  border-top: 5px solid #ef4444;
}

.border-glo {
  border-top: 5px solid #22c55e;
}

.border-9mobile {
  border-top: 5px solid #111827;
}

.pricing-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 28px 20px 18px;
}

.pricing-brand img,
.data-logo {
  width: 54px;
  height: 54px;
  min-width: 54px;
  object-fit: contain;
  margin: 0;
}

.pricing-brand h4 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--secondary);
}

.pricing-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.pricing-table th,
.pricing-table td,
.data-table th,
.data-table td {
  padding: 14px 15px;
  text-align: center;
  border-top: 1px solid #edf2f7;
  font-size: 0.94rem;
}

.pricing-table th,
.data-table th {
  background: #f8fafc;
  color: var(--secondary);
  font-weight: 800;
}

.pricing-table td,
.data-table td {
  color: var(--text);
  font-weight: 600;
}

.pricing-table tr:hover td,
.data-table tr:hover td {
  background: #fcfcfd;
}

/* =========================
   PARTNERS
========================= */
.small-cards img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  background: #fff;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* =========================
   FAQ
========================= */
.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff;
  margin-bottom: 16px;
}

.custom-accordion .accordion-button {
  background: #fff;
  color: var(--secondary);
  font-weight: 700;
  padding: 20px 22px;
  box-shadow: none !important;
  border: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(22, 163, 74, 0.06);
  color: var(--primary-dark);
}

.custom-accordion .accordion-body {
  padding: 20px 22px 22px;
  color: var(--muted);
  line-height: 1.85;
  background: #fff;
}

.custom-accordion .accordion-body p:last-child,
.custom-accordion .accordion-body ol:last-child,
.custom-accordion .accordion-body ul:last-child {
  margin-bottom: 0;
}

.custom-accordion ol li,
.custom-accordion ul li {
  margin-bottom: 8px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.testimonial-modern-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
  transition: var(--transition);
}

.testimonial-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-profile img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(22, 163, 74, 0.12);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.testimonial-profile h5 {
  margin: 0 0 4px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--secondary);
}

.testimonial-profile span {
  display: inline-block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonial-text {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.95;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f59e0b;
  font-size: 0.95rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.66);
  background-size: 50% 50%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

/* =========================
   CTA
========================= */
.recharge {
  background: linear-gradient(135deg, #2e22c9 0%, #2e22c9 50%, #2b1fc0 100%);
  color: #fff;
}

.recharge h6,
.recharge p {
  color: #fff;
}

.btn-orange-600 {
  background: #f59e0b;
  color: #fff;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 700;
  border: none;
}

.btn-orange-600:hover {
  color: #fff;
  background: #d97706;
}

/* =========================
   CONTACT
========================= */
.contact-banner {
  background:
    linear-gradient(rgba(8, 17, 29, 0.82), rgba(8, 17, 29, 0.82)),
    radial-gradient(circle at top right, rgba(22, 163, 74, 0.2), transparent 25%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

.contact-banner {
  background: url("../images/lady-with-glitter.jpg") center/cover no-repeat;
  position: relative;
  color: white;
  padding: 100px 0px !important;
}

.contact-banner .overlay {
  display: none;
}

.contact-banner h6,
.contact-banner p {
  color: #fff;
}

/* =========================
   ANIMATIONS
========================= */
.hero-pill,
.hero-title,
.hero-subtitle,
.hero-btn-group,
.hero h1,
.hero p,
.hero-btn,
.google-play {
  animation: fadeUp 0.9s ease both;
}

.hero-title,
.hero h1 {
  animation-delay: 0.08s;
}

.hero-subtitle,
.hero p {
  animation-delay: 0.16s;
}

.hero-btn-group,
.hero-btn {
  animation-delay: 0.24s;
}

.google-play {
  animation-delay: 0.32s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {

  .hero-title,
  .hero h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 991.98px) {

  .hero,
  .hero-clean {
    padding: 35px 0 45px;
  }

  .hero-title,
  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-subtitle,
  .hero p {
    font-size: 1rem;
  }

  .hero-pattern {
    width: 420px;
    height: 330px;
  }

  .testimonial-modern-card {
    padding: 28px 24px;
  }
}

@media (max-width: 767.98px) {

  .hero,
  .hero-clean {
    padding: 30px 0 35px;
  }

  .hero-title,
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-subtitle,
  .hero p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .hero-btn,
  .hero-btn-group {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn .btn,
  .hero-btn-group .btn {
    max-width: none;
    font-size: 0.9rem;
    padding: 12px 10px;
  }

  .small-cards img {
    height: 78px;
  }

  .testimonial-modern-card {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .testimonial-profile {
    gap: 12px;
  }

  .testimonial-profile img {
    width: 62px;
    height: 62px;
  }

  .testimonial-text {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-pill {
    font-size: 0.75rem;
    padding: 9px 14px !important;
  }

  .hero-title,
  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-btn,
  .hero-btn-group {
    gap: 10px;
    max-width: 380px;
  }

  .hero-btn .btn,
  .hero-btn-group .btn {
    min-height: 54px;
    font-size: 0.88rem;
    padding: 12px 8px;
  }

  .pricing-table th,
  .pricing-table td,
  .data-table th,
  .data-table td {
    font-size: 0.85rem;
    padding: 12px 10px;
  }

  .pricing-brand img,
  .data-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .pricing-brand h4 {
    font-size: 1rem;
  }

  .testimonial-modern-card {
    padding: 22px 16px;
  }

  .testimonial-profile h5 {
    font-size: 1rem;
  }

  .testimonial-profile span {
    font-size: 0.86rem;
  }

  .testimonial-text {
    font-size: 0.93rem;
  }
}