@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --black: #050505;
  --black2: #101010;
  --yellow: #ffd000;
  --gold: #ffb900;
  --red: #ed1c24;
  --white: #ffffff;
  --gray: #a8a8a8;
  --light: #f5f5f5;
  --border: #252525;
  --shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f3f3f3;
  color: #111;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  min-height: 86px;
  padding: 10px 4.5%;

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

  background: rgba(5, 5, 5, .98);

  border-bottom: 1px solid #202020;
}

.brand {
  display: block;
  width: 250px;
  height: 65px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;

  padding: 14px 0;

  transition: .2s;
}

.main-nav a:hover {
  color: var(--yellow);
}

.main-nav a.active {
  color: var(--yellow);
}

.main-nav a.active::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;

  height: 3px;

  background: var(--yellow);
}

.main-nav .red-link {
  color: var(--red);
}

.nav-cart {
  border: 0;

  background: var(--yellow);
  color: #111;

  padding: 13px 18px;

  border-radius: 8px;

  font-size: 11px;
  font-weight: 900;

  cursor: pointer;
}

.nav-cart span {
  display: inline-grid;
  place-items: center;

  min-width: 20px;
  height: 20px;

  margin-left: 4px;

  background: #111;
  color: #fff;

  border-radius: 50%;

  font-size: 10px;
}

.mobile-menu {
  display: none;

  border: 0;

  background: var(--yellow);
  color: #111;

  width: 42px;
  height: 42px;

  border-radius: 8px;

  font-size: 22px;

  cursor: pointer;
}

/* ================= HERO ================= */

.hero {
  position: relative;

  min-height: 555px;

  overflow: hidden;

  color: #fff;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(255, 190, 0, .15),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 30%,
      rgba(0, 110, 255, .08),
      transparent 25%
    ),
    linear-gradient(
      120deg,
      #030303,
      #111111 55%,
      #060606
    );
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: .18;

  background-image:
    radial-gradient(#ffd000 1px, transparent 1px);

  background-size: 28px 28px;

  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;

  max-width: 1400px;

  min-height: 555px;

  margin: auto;

  padding: 45px 5% 35px;

  display: grid;
  grid-template-columns: 1fr .95fr;

  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.welcome-badge {
  display: inline-block;

  padding: 8px 15px;

  margin-bottom: 14px;

  border: 1px solid var(--yellow);

  border-radius: 9px;

  color: #fff;

  font-size: 12px;
  font-weight: 800;
}

.welcome-badge strong {
  color: var(--yellow);
}

.hero h1 {
  font-size: clamp(42px, 4.7vw, 72px);

  line-height: .98;

  letter-spacing: -2px;

  font-weight: 900;
}

.hero h1 span {
  color: var(--red);
}

.hero-lead {
  margin-top: 20px;

  font-size: 17px;

  font-weight: 700;
}

.hero-text {
  max-width: 620px;

  margin-top: 8px;

  color: #d2d2d2;

  font-size: 14px;

  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;

  margin-top: 24px;
}

.btn {
  display: inline-flex;

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

  min-height: 48px;

  padding: 0 23px;

  border-radius: 8px;

  font-size: 12px;
  font-weight: 900;

  cursor: pointer;

  transition: .2s;
}

.btn-yellow {
  background: var(--yellow);
  color: #111;
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 208, 0, .25);
}

.btn-outline {
  border: 1px solid #fff;

  color: #fff;

  background: rgba(0, 0, 0, .3);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-features {
  display: flex;

  gap: 25px;

  margin-top: 28px;
}

.hero-feature {
  display: flex;

  align-items: center;

  gap: 9px;
}

.feature-icon {
  display: grid;

  place-items: center;

  width: 38px;
  height: 38px;

  border: 1px solid var(--yellow);

  border-radius: 50%;

  color: var(--yellow);

  font-size: 17px;
}

.hero-feature b {
  display: block;

  color: var(--yellow);

  font-size: 10px;
}

.hero-feature small {
  display: block;

  margin-top: 3px;

  color: #aaa;

  font-size: 9px;
}

/* ================= HERO VISUAL ================= */

.hero-visual {
  position: relative;

  height: 500px;

  display: flex;

  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background: rgba(255, 200, 0, .11);

  filter: blur(40px);
}

.platform {
  position: absolute;

  bottom: 35px;

  width: 390px;
  height: 75px;

  border-radius: 50%;

  background:
    linear-gradient(
      #1b1b1b,
      #050505
    );

  border: 3px solid var(--gold);

  box-shadow:
    0 0 20px rgba(255, 193, 0, .6),
    inset 0 0 25px rgba(255, 193, 0, .15);
}

.gold-orbit {
  position: absolute;

  width: 440px;
  height: 130px;

  border: 3px solid rgba(255, 200, 0, .75);

  border-radius: 50%;

  transform: rotate(-8deg);

  filter: drop-shadow(
    0 0 8px rgba(255, 190, 0, .6)
  );
}

.orbit-one {
  bottom: 80px;
}

.orbit-two {
  bottom: 100px;

  transform:
    rotate(15deg)
    scale(.86);

  opacity: .45;
}

.phone {
  position: relative;
  z-index: 5;

  width: 190px;
  height: 360px;

  padding: 8px;

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      #202020,
      #020202
    );

  border: 3px solid #444;

  transform: rotate(8deg);

  box-shadow:
    -20px 30px 50px rgba(0,0,0,.6),
    0 0 30px rgba(255, 200, 0, .2);
}

.phone-screen {
  position: relative;

  width: 100%;
  height: 100%;

  border-radius: 23px;

  background:
    radial-gradient(
      circle at 50% 70%,
      #ffe900,
      #ffc400 60%,
      #f5b800
    );

  overflow: hidden;

  display: flex;

  align-items: center;
  justify-content: center;
}

.phone-speaker {
  position: absolute;

  z-index: 10;

  top: 17px;
  left: 50%;

  width: 70px;
  height: 17px;

  transform: translateX(-50%);

  background: #050505;

  border-radius: 20px;
}

.phone-time {
  position: absolute;

  top: 12px;
  left: 15px;

  color: #111;

  font-size: 8px;
  font-weight: 900;
}

.phone-signal {
  position: absolute;

  top: 12px;
  right: 15px;

  color: #111;

  font-size: 8px;
}

.mtn-mark {
  width: 120px;
  height: 65px;

  display: grid;

  place-items: center;

  border: 6px solid #111;

  border-radius: 50%;

  color: #111;

  font-size: 29px;

  font-weight: 900;

  transform: rotate(-8deg);
}

.app-badge {
  position: absolute;

  z-index: 10;

  display: grid;

  place-items: center;

  width: 65px;
  height: 65px;

  border-radius: 14px;

  font-weight: 900;

  box-shadow: 0 15px 30px rgba(0,0,0,.4);

  border: 1px solid rgba(255,255,255,.15);
}

.netflix {
  left: 8%;
  top: 17%;

  background: #111;
  color: #e50914;

  font-size: 42px;
}

.youtube {
  left: 2%;
  top: 42%;

  background: #f00;
  color: #fff;

  font-size: 27px;
}

.spotify {
  right: 6%;
  top: 18%;

  background: #111;
  color: #1ed760;

  font-size: 45px;
}

.prime {
  right: 0;
  top: 39%;

  background: #1476c9;
  color: #fff;

  font-size: 11px;

  line-height: .9;

  text-align: center;
}

.dstv {
  right: 12%;
  bottom: 20%;

  background: #111;
  color: #36a9e1;

  font-size: 20px;
}

.gotv {
  right: 28%;
  bottom: 8%;

  background: #159448;
  color: #fff;

  font-size: 19px;
}

/* ================= BENEFITS ================= */

.quick-strip {
  position: relative;
  z-index: 20;

  max-width: 1360px;

  margin: 0 auto;

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

  background: #111;

  color: #fff;

  border-radius: 0 0 14px 14px;

  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.quick-strip > div {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 21px;

  border-right: 1px solid #333;
}

.quick-strip > div:last-child {
  border-right: 0;
}

.quick-strip span {
  color: var(--yellow);

  font-size: 25px;
}

.quick-strip b {
  display: block;

  font-size: 10px;
}

.quick-strip small {
  display: block;

  margin-top: 4px;

  color: #999;

  font-size: 9px;

  line-height: 1.4;
}

/* ================= GENERAL SECTIONS ================= */

.content-section {
  max-width: 1400px;

  margin: auto;

  padding: 60px 5%;
}

.light-section {
  background: #f5f5f5;
}

.section-topline {
  display: flex;

  align-items: end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 25px;
}

.eyebrow {
  margin-bottom: 4px;

  color: #c19b00;

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 1.5px;
}

.eyebrow.light {
  color: var(--yellow);
}

.eyebrow.yellow {
  color: #111;
}

.section-topline h2,
.section-heading-center h2 {
  font-size: 32px;

  font-weight: 900;

  letter-spacing: -1px;
}

.section-topline h2 span {
  color: #111;
}

.red {
  color: var(--red) !important;
}

.view-all {
  padding: 11px 15px;

  border-radius: 8px;

  font-size: 10px;

  font-weight: 900;

  white-space: nowrap;
}

.view-all.dark {
  background: #111;

  color: #fff;
}

.view-all.light-button {
  background: #fff;

  color: #111;
}

/* ================= DATA CARDS ================= */

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: 18px;
}

.product-card {
  background: #fff;

  padding: 20px 16px;

  border: 1px solid #e5e5e5;

  border-radius: 14px;

  box-shadow: 0 7px 24px rgba(0,0,0,.06);

  transition: .25s;
}

.product-card:hover {
  transform: translateY(-5px);

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

.mtn-label {
  display: inline-block;

  margin-bottom: 13px;

  padding: 6px 10px;

  background: var(--yellow);

  color: #111;

  border-radius: 7px;

  font-size: 11px;

  font-weight: 900;
}

.product-card h3 {
  margin-bottom: 6px;

  font-size: 24px;
}

.price {
  margin-bottom: 8px;

  font-size: 22px;

  font-weight: 900;
}

.product-card:after {
  content: "Valid for selected package";

  display: block;

  margin-bottom: 14px;

  color: #777;

  font-size: 10px;
}

.buy-button {
  width: 100%;

  padding: 11px 10px;

  border: 0;

  border-radius: 7px;

  background: var(--yellow);

  color: #111;

  font-size: 11px;

  font-weight: 900;

  cursor: pointer;

  transition: .2s;
}

.buy-button:hover {
  background: #111;

  color: #fff;
}

/* ================= SUBSCRIPTIONS ================= */

.subscription-section {
  max-width: none;

  padding: 60px 5%;

  background: #080808;

  color: #fff;
}

.subscription-section .section-topline {
  max-width: 1300px;

  margin-left: auto;
  margin-right: auto;
}

.subscription-grid {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 15px;
}

.subscription-card {
  min-height: 200px;

  display: flex;

  flex-direction: column;

  align-items: center;

  padding: 22px 13px;

  background:
    linear-gradient(
      145deg,
      #181818,
      #0b0b0b
    );

  border: 1px solid #292929;

  border-radius: 14px;

  text-align: center;

  transition: .25s;
}

.subscription-card:hover {
  transform: translateY(-5px);

  border-color: #555;
}

.service-logo {
  height: 55px;

  display: grid;

  place-items: center;

  margin-bottom: 8px;

  font-weight: 900;
}

.subscription-card h3 {
  margin-bottom: 4px;

  font-size: 14px;
}

.subscription-card p {
  margin-bottom: auto;

  color: #999;

  font-size: 10px;
}

.subscription-card button {
  width: 100%;

  margin-top: 14px;

  padding: 10px 7px;

  border: 0;

  border-radius: 7px;

  background: var(--red);

  color: #fff;

  font-size: 9px;

  font-weight: 900;

  cursor: pointer;

  transition: .2s;
}

.subscription-card button:hover {
  background: #ff3c43;
}

.netflix-logo {
  color: #e50914;

  font-size: 52px;
}

.youtube-logo {
  color: #ff0000;

  font-size: 35px;
}

.spotify-logo {
  color: #1ed760;

  font-size: 50px;
}

.dstv-logo {
  color: #36a9e1;

  font-size: 25px;
}

.gotv-logo {
  color: #1da55a;

  font-size: 24px;
}

.prime-logo {
  color: #3fa9f5;

  font-size: 15px;

  line-height: .9;
}

/* ================= HOW IT WORKS ================= */

.how-section {
  padding: 70px 5%;

  background: #fff;
}

.section-heading-center {
  margin-bottom: 35px;

  text-align: center;
}

.section-heading-center h2 span {
  color: var(--red);
}

.section-heading-center > p:last-child {
  margin-top: 8px;

  color: #777;

  font-size: 14px;
}

.steps {
  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.step {
  padding: 25px;

  background: #fafafa;

  border: 1px solid #e7e7e7;

  border-radius: 14px;
}

.step span {
  color: var(--red);

  font-size: 13px;

  font-weight: 900;
}

.step h3 {
  margin: 15px 0 8px;

  font-size: 16px;
}

.step p {
  color: #777;

  font-size: 12px;

  line-height: 1.5;
}

/* ================= SUPPORT ================= */

.support-section {
  padding: 45px 5%;

  background: #f4f4f4;
}

.support-card {
  max-width: 1300px;

  margin: auto;

  padding: 35px 45px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  background: var(--yellow);

  border-radius: 18px;
}

.support-card h2 {
  margin-bottom: 7px;

  font-size: 32px;
}

.support-card p:last-child {
  max-width: 650px;

  color: #332b00;

  line-height: 1.5;
}

.whatsapp {
  background: #111;

  color: #fff;

  white-space: nowrap;

  border: 0;
}

/* ================= MOMO ================= */

.momo-banner {
  max-width: 1300px;

  margin: 0 auto 50px;

  padding: 28px 42px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  background: #0c0c0c;

  color: #fff;

  border-radius: 18px;

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

.momo-banner p {
  font-size: 12px;

  font-weight: 700;
}

.momo-banner h2 {
  font-size: 34px;
}

.momo-banner h2 span {
  color: var(--yellow);
}

.momo-banner small {
  color: #aaa;
}

.momo-art {
  width: 110px;
  height: 75px;

  display: grid;

  place-items: center;

  border: 2px solid var(--yellow);

  border-radius: 13px;

  color: var(--yellow);

  font-weight: 900;

  transform: rotate(-5deg);
}

/* ================= FOOTER ================= */

footer {
  padding: 50px 5% 20px;

  background: #050505;

  color: #fff;
}

.footer-main {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr 1fr;

  gap: 45px;
}

.footer-brand img {
  width: 220px;
  height: 70px;

  object-fit: contain;

  object-position: left center;

  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 300px;

  color: #aaa;

  font-size: 11px;

  line-height: 1.5;
}

.footer-main h4 {
  margin-bottom: 16px;

  color: var(--yellow);

  font-size: 12px;
}

.footer-main a,
.footer-main p {
  display: block;

  margin-bottom: 9px;

  color: #aaa;

  font-size: 11px;
}

.footer-main a:hover {
  color: var(--yellow);
}

.footer-bottom {
  max-width: 1300px;

  margin: 35px auto 0;

  padding-top: 18px;

  border-top: 1px solid #222;

  color: #777;

  font-size: 10px;

  text-align: center;
}

/* ================= CART / CHECKOUT ================= */

.overlay {
  display: none;

  position: fixed;

  inset: 0;

  z-index: 2000;

  background: rgba(0,0,0,.72);

  justify-content: flex-end;
}

.cart-panel,
.checkout-panel {
  width: min(450px, 100%);

  height: 100%;

  padding: 28px;

  overflow-y: auto;

  background: #fff;
}

.checkout-panel {
  height: auto;

  max-height: 90vh;

  margin: auto;

  border-radius: 16px;
}

.cart-header {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.cart-header h2 {
  font-size: 22px;
}

.cart-header button {
  width: 35px;
  height: 35px;

  border: 0;

  border-radius: 50%;

  background: #eee;

  font-size: 25px;

  cursor: pointer;
}

.cart-item {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 14px 0;

  border-bottom: 1px solid #eee;

  font-size: 13px;
}

.remove-button {
  padding: 7px;

  border: 0;

  border-radius: 6px;

  background: #fee;

  color: #c00;

  cursor: pointer;
}

.cart-total {
  display: flex;

  justify-content: space-between;

  margin: 25px 0;

  font-size: 17px;
}

.checkout-button {
  width: 100%;

  padding: 14px;

  border: 0;

  border-radius: 8px;

  background: #111;

  color: #fff;

  font-weight: 900;

  cursor: pointer;

  transition: .2s;
}

.checkout-button:hover {
  background: var(--yellow);

  color: #111;
}

.whatsapp-button {
  padding: 14px 24px;

  border: 0;

  border-radius: 8px;

  background: #25d366;

  color: #fff;

  font-weight: 900;

  cursor: pointer;
}

.full {
  width: 100%;

  margin-top: 10px;
}

.checkout-panel input {
  width: 100%;

  margin-bottom: 12px;

  padding: 13px;

  border: 1px solid #ddd;

  border-radius: 8px;

  font: inherit;
}

.checkout-total {
  margin: 8px 0 18px;
}

.secure-text {
  margin-top: 12px;

  color: #777;

  font-size: 11px;

  text-align: center;
}

/* ================= TABLET ================= */

@media (max-width: 1100px) {

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .product-grid {
    grid-template-columns:
      repeat(4, 1fr);
  }

  .subscription-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

}

/* ================= MOBILE ================= */

@media (max-width: 800px) {

  .site-header {
    min-height: 72px;

    padding: 8px 18px;
  }

  .brand {
    width: 190px;
    height: 55px;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav {
    display: none;

    position: absolute;

    left: 0;
    right: 0;

    top: 72px;

    padding: 12px 20px 20px;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    background: #080808;
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px 5px;

    border-bottom: 1px solid #222;
  }

  .nav-cart {
    margin-top: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    padding: 48px 20px 25px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;

    flex-wrap: wrap;
  }

  .hero-features {
    justify-content: center;

    flex-wrap: wrap;
  }

  .hero-visual {
    height: 390px;

    transform: scale(.82);

    margin-top: -10px;
  }

  .quick-strip {
    grid-template-columns: 1fr 1fr;

    border-radius: 0;
  }

  .quick-strip > div {
    padding: 17px 13px;
  }

  .content-section,
  .subscription-section,
  .how-section,
  .support-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-topline {
    flex-direction: column;

    align-items: flex-start;
  }

  .view-all {
    width: 100%;

    text-align: center;
  }

  .product-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .subscription-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .steps {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .support-card {
    flex-direction: column;

    align-items: flex-start;

    padding: 28px 22px;
  }

  .momo-banner {
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-main {
    grid-template-columns:
      repeat(2, 1fr);
  }

}

/* ================= SMALL PHONES ================= */

@media (max-width: 500px) {

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-features {
    gap: 14px;
  }

  .hero-feature {
    flex: 1;

    min-width: 145px;

    text-align: left;
  }

  .hero-visual {
    height: 330px;

    transform: scale(.68);

    margin-top: -30px;
    margin-bottom: -40px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-strip > div {
    border-right: 0;

    border-bottom: 1px solid #333;
  }

  .product-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 10px;
  }

  .product-card {
    padding: 15px 11px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .price {
    font-size: 18px;
  }

  .subscription-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 10px;
  }

  .subscription-card {
    min-height: 185px;

    padding: 17px 9px;
  }

  .subscription-card h3 {
    font-size: 12px;
  }

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

  .momo-banner {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 190px;
  }

}
/* =========================================================
   WISETECH MTN DATA CARDS - NEW DESIGN
   Paste this at the VERY BOTTOM of style.css
   ========================================================= */

#dataProducts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 25px;
}

/* Individual data card */
#dataProducts .product-card {
    position: relative;
    overflow: hidden;

    background: linear-gradient(145deg, #ffffff, #f7f7f7);

    border: 2px solid #eeeeee;
    border-radius: 18px;

    padding: 24px 20px 20px;

    min-height: 220px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Yellow top decoration */
#dataProducts .product-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(
        90deg,
        #ffd000,
        #ffb900
    );
}

/* Hover effect */
#dataProducts .product-card:hover {
    transform: translateY(-7px);

    border-color: #ffd000;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.14);
}

/* MTN label */
#dataProducts .mtn-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    padding: 7px 12px;

    background: #ffd000;
    color: #111;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
}

/* Data amount */
#dataProducts .product-card h3 {
    margin: 5px 0 8px;

    color: #111;

    font-size: 32px;
    font-weight: 900;

    line-height: 1;
}

/* Price */
#dataProducts .product-card .price {
    margin: 0 0 10px;

    color: #111;

    font-size: 25px;
    font-weight: 900;
}

/* Make the price symbol stand out */
#dataProducts .product-card .price::first-letter {
    color: #ed1c24;
}

/* Description generated by existing CSS */
#dataProducts .product-card::after {
    margin-bottom: 18px;

    color: #777;

    font-size: 10px;
}

/* Buy button */
#dataProducts .buy-button {
    width: 100%;

    min-height: 44px;

    padding: 12px 15px;

    border: 0;
    border-radius: 9px;

    background: #ffd000;
    color: #111;

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

/* Button hover */
#dataProducts .buy-button:hover {
    background: #111;
    color: #ffd000;

    transform: scale(1.02);
}

/* Button press */
#dataProducts .buy-button:active {
    transform: scale(0.98);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    #dataProducts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    #dataProducts .product-card h3 {
        font-size: 28px;
    }

    #dataProducts .product-card .price {
        font-size: 22px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    #dataProducts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    #dataProducts .product-card {
        padding: 20px 14px 15px;

        min-height: 200px;

        border-radius: 14px;
    }

    #dataProducts .mtn-label {
        padding: 6px 9px;

        font-size: 8px;
    }

    #dataProducts .product-card h3 {
        font-size: 25px;
    }

    #dataProducts .product-card .price {
        font-size: 20px;
    }

    #dataProducts .buy-button {
        min-height: 40px;

        padding: 10px 8px;

        font-size: 9px;
    }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    #dataProducts {
        gap: 9px;
    }

    #dataProducts .product-card {
        padding: 18px 11px 13px;
    }

    #dataProducts .product-card h3 {
        font-size: 22px;
    }

    #dataProducts .product-card .price {
        font-size: 18px;
    }
}
/* =========================================================
   WISETECH PREMIUM SUBSCRIPTION CARDS
   Paste at the VERY BOTTOM of style.css
   ========================================================= */

#subscriptions .subscription-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 25px;
}

/* Subscription card */
#subscriptions .subscription-card {
    position: relative;
    overflow: hidden;

    background: linear-gradient(145deg, #151515, #080808);

    border: 1px solid #2b2b2b;
    border-radius: 18px;

    padding: 25px 20px 20px;

    min-height: 260px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* Gold top line */
#subscriptions .subscription-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #ffd000,
        #ffb000,
        #e60012
    );
}

/* Hover */
#subscriptions .subscription-card:hover {
    transform: translateY(-7px);

    border-color: #ffd000;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   APP NAME
   ========================================================= */

#subscriptions .subscription-card h3 {
    margin: 5px 0 10px;

    color: #ffffff;

    font-size: 23px;
    font-weight: 900;

    line-height: 1.2;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

#subscriptions .subscription-card p {
    margin: 0 0 15px;

    color: #bdbdbd;

    font-size: 12px;

    line-height: 1.6;
}

/* =========================================================
   PRICE
   ========================================================= */

#subscriptions .subscription-card .price {
    margin: 8px 0 18px;

    color: #ffd000;

    font-size: 24px;
    font-weight: 900;
}

/* =========================================================
   SUBSCRIBE BUTTON
   ========================================================= */

#subscriptions .subscription-card button,
#subscriptions .subscription-card .buy-button {
    width: 100%;

    min-height: 45px;

    padding: 12px 15px;

    border: none;
    border-radius: 9px;

    background: #ffd000;
    color: #111111;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

#subscriptions .subscription-card button:hover,
#subscriptions .subscription-card .buy-button:hover {
    background: #e60012;
    color: #ffffff;

    transform: scale(1.02);
}

#subscriptions .subscription-card button:active,
#subscriptions .subscription-card .buy-button:active {
    transform: scale(0.98);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    #subscriptions .subscription-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    #subscriptions .subscription-card h3 {
        font-size: 21px;
    }

    #subscriptions .subscription-card .price {
        font-size: 22px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    #subscriptions .subscription-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    #subscriptions .subscription-card {
        padding: 21px 14px 15px;

        min-height: 240px;

        border-radius: 14px;
    }

    #subscriptions .subscription-card h3 {
        font-size: 18px;
    }

    #subscriptions .subscription-card p {
        font-size: 10px;
    }

    #subscriptions .subscription-card .price {
        font-size: 19px;
    }

    #subscriptions .subscription-card button,
    #subscriptions .subscription-card .buy-button {
        min-height: 40px;

        padding: 10px 8px;

        font-size: 8px;
    }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    #subscriptions .subscription-grid {
        gap: 9px;
    }

    #subscriptions .subscription-card {
        padding: 18px 11px 13px;
    }

    #subscriptions .subscription-card h3 {
        font-size: 16px;
    }

    #subscriptions .subscription-card .price {
        font-size: 17px;
    }
}
/* =========================================================
   WISETECH SUBSCRIPTION CARDS - FINAL FIX
   ========================================================= */

/* Subscription section */
#subscriptions {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 25px;
    box-sizing: border-box;
}

/* Make the cards fill the available space */
.subscription-grid,
.subscriptions-grid,
.subscription-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    align-items: stretch;
}

/* Individual subscription card */
.subscription-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;

    background: linear-gradient(
        145deg,
        #071426,
        #0b1d35
    );

    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 18px;

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

    display: flex;
    flex-direction: column;

    min-height: 420px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition: transform 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

/* Hover effect */
.subscription-card:hover {
    transform: translateY(-7px);
    border-color: #ffd43b;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 212, 59, 0.12);
}

/* Service logo */
.subscription-card .service-logo {
    width: 75px;
    height: 75px;

    margin: 0 auto 18px;

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

    font-size: 42px;
    font-weight: 900;

    border-radius: 15px;
}

/* Card title */
.subscription-card h3 {
    margin: 5px 0 8px;

    font-size: 25px;
    line-height: 1.2;

    color: #ffffff;

    font-weight: 800;
}

/* "Subscriptions" text */
.subscription-card > p {
    margin: 0 0 20px;

    color: #aebbd0;

    font-size: 14px;
}

/* Text containing plan information */
.subscription-card .plan-details,
.subscription-card .plans,
.subscription-card .features {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
}

/* Make plan names stand out */
.subscription-card strong {
    color: #ffd43b;
}

/* Subscribe button */
.subscription-card button {
    width: 100%;

    margin-top: auto;
    padding: 14px 18px;

    border: none;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #ffd43b,
        #ffb300
    );

    color: #111111;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}

.subscription-card button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(255, 193, 7, 0.3);
}

/* =========================================================
   SERVICE LOGO COLORS
   ========================================================= */

.netflix-logo {
    color: #e50914;
}

.youtube-logo {
    color: #ff0033;
}

.spotify-logo {
    color: #1ed760;
}

.dstv-logo {
    color: #00b7ff;
}

.gotv-logo {
    color: #00d4aa;
}

.prime-logo {
    color: #00a8e1;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    #subscriptions {
        padding: 55px 18px;
    }

    .subscription-grid,
    .subscriptions-grid,
    .subscription-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .subscription-card {
        min-height: 400px;
        padding: 24px 20px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    #subscriptions {
        padding: 45px 14px;
    }

    .subscription-grid,
    .subscriptions-grid,
    .subscription-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .subscription-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .subscription-card h3 {
        font-size: 23px;
    }

    .subscription-card .service-logo {
        width: 70px;
        height: 70px;
    }

    .subscription-card .plan-details,
    .subscription-card .plans,
    .subscription-card .features {
        font-size: 15px;
    }
}
/* =====================================================
   WISETECH SUBSCRIPTIONS - FULL WIDTH FIX
   Paste this at the VERY BOTTOM of style.css
   ===================================================== */

.subscription-section {
  width: 100%;
  max-width: none !important;
  padding: 70px 4% !important;
  background: #080808;
  color: #fff;
}

.subscription-section .section-topline {
  width: 100%;
  max-width: 1500px !important;
  margin: 0 auto 35px !important;
}

/* FULL-WIDTH SUBSCRIPTION GRID */
.subscription-grid {
  width: 100% !important;
  max-width: 1500px !important;
  margin: 0 auto !important;

  display: grid !important;

  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

  gap: 24px !important;
}

/* BIGGER, WIDER CARDS */
.subscription-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 360px !important;

  padding: 30px 25px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;

  background:
    linear-gradient(145deg, #171717, #080808) !important;

  border: 1px solid #303030 !important;
  border-radius: 16px !important;

  text-align: center !important;

  box-sizing: border-box !important;
}

/* SERVICE LOGO */
.subscription-card .service-logo {
  width: 100%;
  height: 75px !important;

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

  margin-bottom: 15px !important;
}

/* PLAN/SERVICE NAME */
.subscription-card h3 {
  width: 100%;
  margin-bottom: 12px !important;

  font-size: 22px !important;
  line-height: 1.2 !important;
  color: #fff !important;
}

/* PLAN INFORMATION */
.subscription-card p {
  width: 100%;

  margin-bottom: 20px !important;

  color: #ddd !important;

  font-size: 15px !important;
  line-height: 1.7 !important;

  white-space: normal !important;
}

/* SUBSCRIBE BUTTON */
.subscription-card button {
  width: 100% !important;
  max-width: 260px !important;

  margin-top: auto !important;

  padding: 14px 20px !important;

  border: none !important;
  border-radius: 8px !important;

  background: #ffd000 !important;
  color: #111 !important;

  font-size: 12px !important;
  font-weight: 900 !important;

  cursor: pointer;
}

/* HOVER */
.subscription-card:hover {
  transform: translateY(-6px);
  border-color: #ffd000 !important;
  box-shadow: 0 15px 35px rgba(255, 208, 0, .12);
}

.subscription-card button:hover {
  background: #fff !important;
}

/* =====================================================
   LAPTOP / SMALL DESKTOP
   ===================================================== */

@media (max-width: 1100px) {
  .subscription-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* =====================================================
   PHONE
   ===================================================== */

@media (max-width: 650px) {
  .subscription-section {
    padding: 50px 16px !important;
  }

  .subscription-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .subscription-card {
    min-height: 320px !important;
    padding: 25px 20px !important;
  }

  .subscription-card h3 {
    font-size: 20px !important;
  }

  .subscription-card p {
    font-size: 14px !important;
  }
}
