/* =====================================================================
   BLOCK 1 – HERO CAROUSEL
   ===================================================================== */
.hp-hero-section {
  background: #f0f2f5;
  padding: 9rem 0 0;
}

.hp-hero-outer {
  position: relative;
  overflow: hidden;
  padding: 0 5.5%;
  
  max-width: 1220px;   /* same as your header's container */
  margin: 0 auto;
  padding: 0 10px;      /* same horizontal padding your header container uses */
}

/* Swiper overflow visible so peeking cards show inside the padded area */
.hp-hero-swiper {
  /* overflow: visible !important; */
  overflow: hidden;
}

/* Each slide card */
.hp-slide {
  border-radius: 22px;
 /*  min-height: 380px; */
  /* min-height: 550px;  */
  padding: 0rem 1rem;
  display: flex;
  align-items: center;
  /* background: linear-gradient(135deg, #cc0022 0%, #e53000 55%, #ff6700 100%); */
  position: relative;
  overflow: hidden;
}

/* Subtle inner highlight */
.hp-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hp-slide-body {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Left: text content */
.hp-slide-left {
  flex: 1;
  min-width: 0;
}

.hp-slide-title {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}

.hp-slide-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.hp-slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hp-btn-solid {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  background: #fff;
  color: #111 !important;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  transition: background 0.25s, color 0.25s;
}
.hp-btn-solid:hover {
  background: transparent;
  color: #fff !important;
}

.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: transparent;
  color: #fff !important;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: background 0.25s, border-color 0.25s;
}
.hp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Right: price + icons */
.hp-slide-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.4rem;
  flex-shrink: 0;
}

/* Price badge */
.hp-price-wrap {
  position: relative;
  display: inline-block;
}

.hp-price-circle {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.hp-price-from {
  font-size: 12px;
  color: #555;
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}

.hp-price-num {
  font-size: 34px;
  font-weight: 900;
  color: #111;
  line-height: 1;
  display: block;
}

.hp-price-unit {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.hp-promo-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.35;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Icons row */
.hp-icons-row {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
}

.hp-icon-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 3.2rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hp-icon-tv-box {
  border: 2.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 2rem;
}

.hp-icon-label {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/* Arrow controls */
.hp-hero-prev,
.hp-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  font-size: 14px;
  color: #333;
  transition: background 0.2s, box-shadow 0.2s;
}

.hp-hero-prev { /* left: 150px; */ left: 0.5%; }
.hp-hero-next { /* right: 150px; */  right: 0.5%;}

.hp-hero-prev:hover,
.hp-hero-next:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Tab navigation */
.hp-hero-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 1.4rem 2rem 0.8rem;
  /* max-width: 860px; */
  max-width: 1220px;
  margin: 0 auto;
}

.hp-hero-tab {
  flex: 1;
  text-align: center;
  cursor: pointer;
  padding: 0 6px;
  /* font-size: 12px; */
  font-size: 16px;
 /*  color: #888; */
  color: #000;
  line-height: 1.35;
  transition: color 0.2s;
  user-select: none;
}

.hp-hero-tab .hp-tab-bar {
  /* height: 3px;
  border-radius: 2px;
  background: #ccc;
  margin-bottom: 9px;
  transition: background 0.25s; */
  height: 8px;
  background: #e0e0e0;       /* grey track */
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
}

.hp-hero-tab.active {
  color: #111;
  font-weight: 700;
}

.hp-hero-tab.active .hp-tab-bar {
  /* background: #cc0022; */
  background:#e0e0e0;
}

.hp-hero-tab:hover:not(.active) .hp-tab-bar {
  background: #aaa;
}

/* .hp-tab-bar {
  height: 3px;
  background: #e0e0e0;       /* grey track */
/*  border-radius: 2px;
  overflow: hidden;
  position: relative;
} */

.hp-hero-tab .hp-tab-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: #f60;  */         /* your orange */
  background:#029ED7;
  width: 0%;
  border-radius: 2px;
  transition: none;
}

/* The fill animation — duration should match autoplay delay */
.hp-hero-tab.active .hp-tab-bar::after {
  animation: tabFill 4s linear forwards;
}

@keyframes tabFill {
  from { width: 0%; }
  to   { width: 100%; }
}

.hp-banner{
	border-radius: 22px;
	/* height:550px; */
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 991px) {
  .hp-hero-outer {
    /* padding: 0 4%; */
	padding: 0;
  }
  .hp-slide {
    min-height: 320px;
    padding: 2.2rem 2rem;
  }
  .hp-price-circle {
    width: 120px;
    height: 120px;
  }
  .hp-price-num {
    font-size: 28px;
  }
  .hp-promo-badge {
    width: 60px;
    height: 60px;
    font-size: 8.5px;
    top: -12px;
    right: -12px;
  }
  .hp-icon-item {
    font-size: 2.4rem;
  }
  .hp-block {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .hp-hero-outer {
    padding: 0 3%;
  }
  .hp-slide {
    min-height: 260px;
    padding: 1.8rem 1.5rem;
  }
  .hp-slide-right {
    display: none;
  }
  .hp-hero-tabs {
    padding: 1rem 1rem 0.5rem;
    gap: 2px;
  }
  .hp-hero-tab {
    font-size: 10.5px;
  }
  .hp-hero-tab span br {
    display: none;
  }
  .hp-offer-card {
    min-width: 100%;
    max-width: 100%;
  }
  .hp-plan-card {
    padding: 22px 18px;
  }
  .hp-plan-amount {
    font-size: 2.5rem;
  }
  .hp-steps-row {
    gap: 1rem;
  }
  .hp-block-title {
    font-size: 1.4rem;
  }
  .hp-hero-prev,
  .hp-hero-next {
    display: none !important;
  }

  .hp-hero-tabs .hp-hero-tab span {
    display: none;
  }

  .hp-hero-tabs .hp-hero-tab {
    flex: 0 0 auto;
    width: 32px;        /* just enough for the bar */
  }
}

/*quick access*/

.icon-offers {
  width: 70px;
  height: 65px;
}

.categories-style-01 .icon-box a::after {
    display: none;
    content: none;
}

.quickaccesslogo {
  color: #000;
  width: 65px;
  height: 65px;
}


/**/

body {
  overflow-x: clip;
}

/**/

 
/* ======================================================
   DEVICES
   ====================================================== */
.devices-section {
  background: #fff;
  overflow-x: hidden;
}

.devices-swiper-wrap {
  overflow: visible !important;
}

.devices-swiper {
  overflow: visible !important;
}

.devices-swiper .swiper-wrapper {
  overflow: visible !important;
}

.device-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #ebebeb;
  padding: 20px 16px 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.device-card:hover {
  border-color: var(--base-color);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.device-img-wrap {
  background: #f6f9fc;
 /*  border-radius: 14px; */
  border-radius: 26px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.device-img-wrap img {
  max-height: 155px;
  max-width: 130px;
  object-fit: contain;
}

.device-brand-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--base-color);
  margin-bottom: 5px;
}

.device-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-slate-blue);
  margin-bottom: 6px;
  line-height: 1.3;
}

.device-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--base-color);
  margin-bottom: 12px;
}

.device-price small {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  margin-left: 4px;
}

.device-main-cta {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  /* border: 1.5px solid var(--base-color);
  color: var(--base-color); */
  border: 1.5px solid #000;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.device-main-cta:hover {
  background: var(--base-color);
  border: 1.5px solid var(--base-color);
  color: #fff;
}

.device-cta {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  /* border: 1.5px solid var(--base-color);
  color: var(--base-color); */
  border: 1.5px solid #000;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.device-cta:hover {
  background: var(--base-color);
  border: 1.5px solid var(--base-color);
  color: #fff;
}

.slider-nav-btns {
  display: flex;
  gap: 8px;
}

.snav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: #555;
  transition: all 0.3s;
}

.snav-btn:hover {
  border-color: var(--base-color);
  color: var(--base-color);
  background: #f0f8ff;
}

/* ======================================================
   DEVICES — MOBILE
   ====================================================== */
@media (max-width: 767px) {

  .devices-swiper-wrap {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 12px;
  }

  .devices-swiper-wrap::-webkit-scrollbar {
    display: none;
  }

  .devices-swiper {
    overflow: visible !important;
  }

  .devices-swiper .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    overflow: visible !important;
  }

  .devices-swiper .swiper-slide {
    width: 75vw !important;
    max-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .devices-swiper .swiper-slide:first-child {
    margin-left: 16px !important;
  }

  .devices-swiper .swiper-slide:last-child {
    margin-right: 16px !important;
  }

  .slider-nav-btns {
    display: none;
  }

  .device-card:hover {
    transform: none;
  }

}

/* ---- Shared buttons ---------------------------------------------------- */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--base-color);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  cursor: pointer;
}
.btn-brand:hover {
  background: var(--dark-slate-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,145,211,0.3);
}
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--base-color) !important;
  border: 2px solid var(--base-color);
  border-radius: 50px;
  padding: 11px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline-brand:hover {
  background: var(--base-color);
  color: #fff !important;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--base-color) !important;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-white:hover {
  background: #e8f4fb;
  color: var(--dark-slate-blue) !important;
  transform: translateY(-2px);
}
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 50px;
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ---- Shared section labels -------------------------------------------- */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--base-color);
  margin-bottom: 10px;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--dark-slate-blue);
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 15px;
  color: var(--extra-medium-gray);
  line-height: 1.65;
  margin-bottom: 28px;
}
.divider-bar {
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: var(--base-color);
  margin-bottom: 18px;
}

/*dstv*/
.bg-dstv {
   background-image: url('../images/bg-dstv02.jpg');
}

/* useful infos section */

/* ── Section heading ── */
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #111114;
  letter-spacing: -0.02em;
}

.section-title span {
  background: linear-gradient(90deg, #6c63ff 0%, #38b6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Card ── */
.service-card {
  background: #ffffff;
  border: 1px solid #e4e4ea;
  border-radius: 14px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-4px);
  background: #fafafc;
  border-color: #c8c8d8;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* ── Icon wrapper ── */
.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
}

/* Per-card icon colours */
.card-obituary  .icon-wrap { background: rgba(108, 99, 255, 0.12); }
.card-obituary  .icon-wrap svg { stroke: #6c63ff; }

.card-forex     .icon-wrap { background: rgba(32, 201, 172, 0.12); }
.card-forex     .icon-wrap svg { stroke: #20c9ac; }

.card-weather   .icon-wrap { background: rgba(56, 182, 255, 0.12); }
.card-weather   .icon-wrap svg { stroke: #38b6ff; }

.card-sports    .icon-wrap { background: rgba(255, 186, 0, 0.12); }
.card-sports    .icon-wrap svg { stroke: #ffba00; }

.card-loto      .icon-wrap { background: rgba(232, 64, 87, 0.12); }
.card-loto      .icon-wrap svg { stroke: #e84057; }

.card-traffic   .icon-wrap { background: rgba(108, 99, 255, 0.12); }
.card-traffic   .icon-wrap svg { stroke: #8b80ff; }

/* ── Label ── */
.service-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #444455;
  text-align: center;
  letter-spacing: 0.01em;
}

/* adjustments */
.custom-overlay{
  background: linear-gradient(180deg,rgba(2, 0, 36, 0.54) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}	

/* media queries */

@media (min-width: 1200px){
}
@media (min-width:992px) and (max-width:1199px){
}
@media (min-width:768px) and (max-width:991px){
}
@media (max-width: 767px){
	.bg-dstv {
	   background-image: url('../images/bg-dstv-mobile.jpg');
	}
}

/* end - media queries */

/* ── internet SECTION ── */
/* .internethero-section {
  background: #ffffff;
  /* padding: 72px 48px 80px; */
 /* max-width: 1280px;
  margin: 0 auto;
} */

.internethero-section{
  background: linear-gradient(135deg, var(--dark-slate-blue) 0%, #0072a3 55%, var(--base-color) 100%);
  position: relative;
  overflow: hidden;
 /*  max-width: 1280px;
  margin: 0 auto; */
}

/* ── HEADER ── */
.internethero-header {
  text-align: center;
  margin-bottom: 64px;
}

.internetbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9fb;
  color: #5b3fcf;
  /* font-family: 'Sora', sans-serif; */
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  /* padding: 6px 16px; */
  padding: 0px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.internetbadge svg { width: 13px; height: 13px; }

.internethero-title {
  /* font-family: 'Sora', sans-serif; */
  font-family:inherit;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0d0f1a;
  margin-bottom: 20px;
}

.internetheadline {
	/* font-family: 'Montserrat', sans-serif; */
	font-family:inherit;
	/* font-weight: 900; */
	font-weight: 600;
	font-size: clamp(38px, 4.2vw, 60px);
	line-height: 1.06;
	letter-spacing: -1px;
	/* color: #111111; */
	color:#fff;
	margin-bottom:20px;
}

.internethero-title .highlight {
  background: linear-gradient(90deg, #4f8ef7, #7c5af0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.internethero-subtitle {
  font-size: 1.05rem;
  /* color: #6b7280; */
  color: #fff;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── BODY GRID ── */
.internethero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── LEFT: IMAGE BLOCK ── */
.internetimage-block {
  position: relative;
}

.internetimage-wrap {
  position: relative;
 /*  border-radius: 20px; */
  border-radius:26px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d2e 0%, #0d1020 100%);
  aspect-ratio: 4/3;
  box-shadow:
	0 8px 32px rgba(79, 142, 247, 0.12),
	0 2px 8px rgba(0,0,0,0.06);
}

/* ── RIGHT: FEATURE BLOCK ── */
.internetfeature-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.internetfeature-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  /* color: #0d0f1a; */
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}

.internetfeature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.internetfeature-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background:#f0f2f9;
  border: 1px solid #e4e7f2;
  /* border-radius: 14px; */
  border-radius: 26px;
  padding: 18px 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.internetfeature-card:hover {
  box-shadow: 0 6px 24px rgba(79, 142, 247, 0.10);
  transform: translateY(-2px);
}

.internetfeature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e4e7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.internetfeature-icon svg {
  width: 20px;
  height: 20px;
  color: #7c5af0;
}

.internetfeature-info .name {
  /* font-family: 'Sora', sans-serif; */
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  /* margin-bottom: 4px; */
}

.internetfeature-info .desc {
  font-size: 0.85rem;
  color: #6b7280;
  /* line-height: 1.5; */
  line-height: 1.1;
}

/* ── CTA BUTTON ── */
.internetcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: linear-gradient(90deg, #4f8ef7 0%, #7c5af0 100%);
  color: #fff; */
  background: #fff;
  color: #000;
  /* font-family: 'Sora', sans-serif; */
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(124, 90, 240, 0.25);
}

.internetcta-btn:hover {
  background: var(--base-color);
  color: #fff !important;
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 90, 240, 0.35);
}

.internetcta-btn svg { width: 17px; height: 17px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .internethero-section { padding: 48px 24px 64px; }
  .internethero-body { grid-template-columns: 1fr; gap: 48px; }
  .internetimage-wrap { aspect-ratio: 16/9; }
}

/*mobile section*/
.hero {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 32px;
}

/* ── LEFT ── */
.left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Brand pill */
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d2e2e;
  border-radius: 999px;
  padding: 7px 18px 7px 14px;
  width: fit-content;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 13px;
}
.bars span {
  display: block;
  width: 3px;
  background: #00c6c6;
  border-radius: 2px;
}
.bars span:nth-child(1) { height: 5px; }
.bars span:nth-child(2) { height: 8px; }
.bars span:nth-child(3) { height: 12px; }
.bars span:nth-child(4) { height: 9px; }
.pill-label {
  /* font-family: 'Inter', sans-serif; */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #00c6c6;
  text-transform: uppercase;
}

.mobilebadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9fb;
  color: #5b3fcf;
  /* font-family: 'Sora', sans-serif; */
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  /* padding: 6px 16px; */
  padding: 0px 16px;
  border-radius: 999px;
  /* margin-bottom: 24px; */
  width:135px;
}

.mobilebadge svg { width: 13px; height: 13px; }

.mobile-headline {
	/* font-family: 'Montserrat', sans-serif; */
	font-family:inherit;
	/* font-weight: 900; */
	font-weight: 600;
	font-size: clamp(38px, 4.2vw, 60px);
	line-height: 1.06;
	letter-spacing: -1px;
	color: #111111;
	margin-bottom:20px;
}

.mobile-headline .blue {
  /* "Network" — vivid blue */
  background: linear-gradient(90deg, #1a8fff, #0070e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Headline — matches original exactly */
/* .headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: #0d1117;
} */

.headline .cyan {
  /* "Mobile" — bright cyan */
  background: linear-gradient(90deg, #00d4d4, #00b8e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.headline .blue {
  /* "Network" — vivid blue */
  background: linear-gradient(90deg, #1a8fff, #0070e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub-copy */
.mobile-body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6478;
  max-width: 520px;
  margin-bottom: 0px;
}

/* Feature list */
.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

/*.mobile-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0d2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #00c6c6;
  
} */

.mobile-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #FFF3D6;
    border: 1px solid rgba(245, 166, 35, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 17px;
	color: #00c6c6;
}

.mobile-feat-icon svg { width: 20px; height: 20px; }
.mobile-feat-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.0;
  margin-bottom: 0;
}
.mobile-feat-text span {
  font-size: .85rem;
  color: #6b7280;
}

/* CTA row */
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  /* color: var(--base-color) !important; */
  color: #fff !important;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.mobile-cta:hover {
  background: var(--base-color);
  color: #fff !important;
}

.mobile-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /*  background: #000; */
  /* color: var(--base-color) !important; */
  color: #000 !important;
  border: 1.5px solid #000;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.mobile-cta-secondary:hover {
  background: var(--base-color);
  border: 1.5px solid var(--base-color);
  color: #fff !important;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00c6c6, #1a8fff);
  color: #fff;
  background: linear-gradient(90deg, #00c6c6, #1a8fff);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,198,198,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,198,198,.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  background: transparent;
  color: #00c6c6;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  border: 1.5px solid #00c6c6;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-secondary:hover {
  background: rgba(0,198,198,.06);
  transform: translateY(-2px);
}

/* ── RIGHT — phone visual ── */
.right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  overflow: hidden;
  border-radius: 26px;
}

/* Large soft glow behind phone */
.right::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,198,198,.12) 0%, rgba(26,143,255,.08) 50%, transparent 75%);
  pointer-events: none;
}

.phoneimage{
	border-radius:26px;	
}	

/* 5G badge */
.badge-5g {
  position: absolute;
  top: 40px;
  right: 30px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  z-index: 10;
}
.badge-5g .num {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00c6c6, #1a8fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.badge-5g .ready {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #6b7280;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Phone frame */
.phone {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 460px;
  border-radius: 40px;
  background: linear-gradient(160deg, #101828 0%, #0a2240 60%, #0d1f35 100%);
  border: 2px solid rgba(255,255,255,.15);
  box-shadow:
	0 32px 80px rgba(0,0,0,.18),
	0 8px 24px rgba(0,198,198,.12),
	inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Notch */
.notch {
  width: 88px;
  height: 26px;
  background: #000;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 12px;
}

/* Screen content */
.screen {
  flex: 1;
  padding: 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

/* Wave chart */
.chart {
  border-radius: 14px;
  background: rgba(0,0,0,.3);
  height: 120px;
  overflow: hidden;
  position: relative;
}
.chart svg { width: 100%; height: 100%; display: block; }

/* Stat cards */
.stats {
  display: flex;
  gap: 8px;
}
.s-card {
  flex: 1;
  background: rgba(0,198,198,.1);
  border: 1px solid rgba(0,198,198,.2);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}
.s-card .v {
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  color: #00c6c6;
}
.s-card .l {
  font-size: .58rem;
  color: rgba(255,255,255,.4);
  margin-top: 1px;
}

/* Bottom app icons row */
.app-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
}
.app-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .right { display: none; }
}


/*tv section*/

/* ======================================================
   tv
   ====================================================== */
.tv-section { background: #fff; }
.tv-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.tv-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.tv-card:hover img { transform: scale(1.04); }
.tv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(0,20,40,0.90) 0%,
    rgba(0,40,70,0.45) 45%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}
.tv-content {
  position: relative;
  z-index: 2;
  padding: 32px 30px;
  width: 100%;
}
.tv-tag {
  display: inline-block;
  background: var(--base-color);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.tv-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.tv-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin-bottom: 18px;
}
.tv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  /* color: var(--base-color) !important; */
  color: #000000 !important;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.tv-cta:hover {
  background: var(--base-color);
  color: #fff !important;
}

/* ======================================================
   TOURIST
   ====================================================== */
.tourist-section { background: #fff; }
.tourist-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.tourist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.tourist-card:hover img { transform: scale(1.04); }
.tourist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(0,20,40,0.90) 0%,
    rgba(0,40,70,0.45) 45%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}
.tourist-content {
  position: relative;
  z-index: 2;
  padding: 32px 30px;
  width: 100%;
}
.tourist-tag {
  display: inline-block;
  background: var(--base-color);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.tourist-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.tourist-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin-bottom: 18px;
}
.tourist-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  /* color: var(--base-color) !important; */
  color: #000 !important;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.tourist-cta:hover {
  background: var(--base-color);
  color: #fff !important;
}

/* ======================================================
   MY.T MONEY V1
   ====================================================== */
.money-section {
  background: linear-gradient(135deg, #001e35 0%, var(--dark-slate-blue) 55%, #003c6b 100%);
  position: relative;
  overflow: hidden;
}
.money-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,216,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.money-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,145,211,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.money-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.money-feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(20,216,255,0.1);
  border: 1px solid rgba(20,216,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #14d8ff;
  flex-shrink: 0;
}
.money-feat-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.money-feat-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.money-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.money-phone-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,216,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.money-phone-col img {
  max-height: 520px;
  object-fit: contain;
  border-radius: 26px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.45));
  position: relative;
  z-index: 1;
}

.money-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  /* color: var(--base-color) !important; */
  color: #fff !important;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.money-cta:hover {
  background: var(--base-color);
  color: #fff !important;
}

.money-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /*  background: #000; */
  /* color: var(--base-color) !important; */
  color: #fff!important;
  border: 1.5px solid #fff;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.money-cta-secondary:hover {
  background: var(--base-color);
  border: 1.5px solid var(--base-color);
  color: #fff !important;
}


/* ======================================================
   MY.T MONEY V2
   ====================================================== */
.mytmoney-bg {  
  background: linear-gradient(135deg, #001e35 0%, var(--dark-slate-blue) 55%, #003c6b 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}   

.mytmoney-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9fb;
  color: #5b3fcf;
  /* font-family: 'Sora', sans-serif; */
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  /* padding: 6px 16px; */
  padding: 0px 16px;
  border-radius: 999px;
  margin-bottom: 0px; 
  width:110px;
}
  
/* ── SECTION WRAPPER ── */
.mytmoney-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  /*  max-width: 1200px; */
  margin: 0 auto;
  padding: 0px;
}

/* ── LEFT COLUMN ── */
.mytmoney-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mytmoney-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8005a;
}

.mytmoney-text-block {
  display: flex;
  flex-direction: column;
  gap: 10px; /* control spacing between headline and subtext here */
}

.mytmoney-headline {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff; 
  margin-bottom: 0px;
}

.mytmoney-subtext {
  font-size: 15px;
  line-height: 1.65;
  color:  #ffffff;
  max-width: 545px;
  margin-bottom: 0px;
}

/* ── FEATURE GRID ── */
.mytmoney-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mytmoney-feature-card {
  background: #ffffff;
  border: 1.5px solid #ebebeb;
  border-radius: 18px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.mytmoney-feature-card:hover {
  box-shadow: 0 8px 32px rgba(232, 0, 90, 0.10);
  transform: translateY(-2px);
}

.mytmoney-feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fdf0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mytmoney-feature-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #e8005a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mytmoney-feature-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3; /* fix from 10px */
  margin-bottom: 0px !important;
}

.mytmoney-feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #666666;
}

.mytmoney-cta-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mytmoney-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  /* color: var(--base-color) !important; */
  color: #000 !important;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.mytmoney-cta:hover {
  background: var(--base-color);
  color: #fff !important;
}

.mytmoney-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /*  background: #000; */
  /* color: var(--base-color) !important; */
  color: #fff!important;
  border: 1.5px solid #fff;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.mytmoney-cta-secondary:hover {
  background: var(--base-color);
  border: 1.5px solid var(--base-color);
  color: #fff !important;
}   

.mytmoney-phone-image{
	border-radius:26px;
}	

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

  /* Stack the two columns vertically */
  .mytmoney-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Fix the broken line-height on headline */
  .mytmoney-headline {
    line-height: 1.2;
  }

  /* Reduce left column gap */
  .mytmoney-left {
    gap: 20px;
  }

  /* Single column feature cards on small screens */
  .mytmoney-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Move image above text, or keep below — remove if you want image first */
  .mytmoney-right {
    /* order: -1; */
  }

  /* Constrain the phone image */
  .mytmoney-phone-image {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
  }

  /* Stack the CTA buttons */
  .mytmoney-cta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mytmoney-cta,
  .mytmoney-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── EXTRA SMALL (phones < 480px) ── */
@media (max-width: 480px) {
  .mytmoney-features {
    grid-template-columns: 1fr;
  }

  .mytmoney-headline {
    font-size: 26px;
  }

  .mytmoney-subtext {
    font-size: 14px;
  }
}

/* ======================================================
   INFO SECTION
   ====================================================== */
.info-section { background: #f6f9fc; }
.info-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 26px;
  padding: 18px 20px;
  border: 1.5px solid #edf1f6;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.info-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
  transform: translateY(-4px);
  border-color: transparent;
  color: inherit;
}
.info-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.info-title {
  font-size: 18px;
  font-weight: 700;
  /* color: var(--dark-slate-blue); */
  color: #000;
  margin-bottom: 4px;
}
.info-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  flex-grow: 1;
}
.info-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--base-color);
  margin-top: 10px;
  transition: gap 0.3s;
}
.info-card:hover .info-arrow { gap: 9px; }

.info-section .row {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}

.info-section .row > [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}

/* ======================================================
   MY.T CARE APP
   ====================================================== */
.care-section {
  background: linear-gradient(135deg, var(--dark-slate-blue) 0%, #0072a3 55%, var(--base-color) 100%);
  position: relative;
  overflow: hidden;
}
.care-section::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.care-phone-img {
  max-height: 460px;
  object-fit: contain;
  border-radius: 26px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
}
.app-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 14px;
  padding: 12px 22px;
  text-decoration: none;
  transition: all 0.3s;
  margin-right: 10px;
  margin-bottom: 10px;
}
.app-dl-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); color: #fff; }
.app-dl-btn i { font-size: 1.9rem; }
.app-dl-text { display: flex; flex-direction: column; }
.app-dl-text small { font-size: 10.5px; opacity: 0.75; }
.app-dl-text strong { font-size: 15px; font-weight: 700; }
.app-stars { color: #FFD700; letter-spacing: 2px; }
.care-feat-pill {
  background: rgba(20,216,255,0.12);
  border: 1px solid rgba(20,216,255,0.25);
  color: #14d8ff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin: 0 6px 8px 0;
}


/* ======================================================
   HELP SECTION
   ====================================================== */
.help-section { background: #f6f9fc; }

.help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 22px;
  padding: 38px 28px 30px;
  border: 1.5px solid #e8eef4;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: all 0.3s ease;
}
.help-card:hover {
  border-color: transparent;
  box-shadow: 0 14px 44px rgba(0,0,0,0.1);
  transform: translateY(-6px);
  color: inherit;
}
.help-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.help-card:hover .help-icon-wrap { transform: scale(1.08); }
.help-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-slate-blue);
  margin-bottom: 10px;
}
.help-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 22px;
}
.help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 24px;
  border: 2px solid var(--base-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--base-color) !important;
  text-decoration: none;
  transition: all 0.3s;
}
.help-card:hover .help-link { background: var(--base-color); color: #fff !important; }

/*myt everywhere v1*/

.hp-block {
  padding: 4.5rem 0;
}

.hp-block-wifi {
  background: #fff;
}

.hp-block-myt {
  background: #f7f9fb;
}

.hp-block-wireless {
  background: #fff;
}

.hp-block-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.hp-block-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: .05rem;
  line-height: 1.8;
}

.hp-block-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Feature list (Block A) */
.hp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.hp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.hp-feat-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hp-feature-list li div {
  padding-top: 3px;
}

.hp-feature-list li strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.hp-feature-list li p {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

.hp-block-link {
  font-size: 13px;
  color: #999;
  margin-bottom: 0;
}

.hp-block-link a {
  color: var(--base-color, #0091d3);
  text-decoration: underline;
}

/* Steps row (Block B) */
.hp-steps-row {
  display: flex;
  gap: 1.4rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.hp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.hp-step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e3f2fd;
  color: var(--base-color, #0091d3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.hp-step-label {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.hp-step-label small {
  font-size: 11.5px;
  color: #999;
}

/* Subscribe info box (Block B) */
.hp-subscribe-box {
  background: #f2f6fa;
  border: 1.5px solid #d8e6f0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin-bottom: 30px;
}

.hp-subscribe-box .fa-circle-info {
  color: var(--base-color, #0091d3);
}

.hp-subscribe-box a {
  color: var(--base-color, #0091d3);
  text-decoration: underline;
}

.myteverywhere-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  /* color: var(--base-color) !important; */
  color: #fff !important;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;  /* ← prevents text wrapping */
  width: fit-content;   /* ← shrinks to content, stops it stretching */
}

.myteverywhere-cta:hover {
  background: var(--base-color);
  color: #fff !important;
}

/*end myt everywhere v1*/

/*myt everywhere v2*/

/* ── Card ── */
.myteverywhere-card {
  background: #0b1426;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  /* max-width: 900px; */
  width: 100%;
  padding: 52px 52px 52px 52px;
  gap: 40px;
  align-items: center;
}

/* ── Left column ── */
.content { display: flex; flex-direction: column; gap: 24px; }

.eyebrow {
  /* font-family: 'Sora', sans-serif; */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #19b6ce;
}

.myteverywhere-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9fb;
  color: #5b3fcf;
  /* font-family: 'Sora', sans-serif; */
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  /* padding: 6px 16px; */
  padding: 0px 16px;
  border-radius: 999px;
  margin-bottom: 15px; 
  width:120px;
}


.myteverywhere-headline {
  /* font-family: 'Sora', sans-serif; */
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  line-height: 0.15;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.body-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #9bb3cc;
  max-width: 460px;
}

/* ── Step pills ── */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #152236;
  border-radius: 50px;
  padding: 9px 18px 9px 9px;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}

.step:hover {
  background: #1c2e47;
  transform: translateY(-2px);
}

.step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #19b6ce;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-label {
  /* font-family: 'Sora', sans-serif; */
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
}

/* ── CTA button ── */
.myteverywhere-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color:#000!important;
  /* color: #0b1426; */
  /* font-family: 'Sora', sans-serif; */
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.myteverywhere-cta:hover {
  /* background: #e8f4f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,182,206,0.18); */
  background: var(--base-color);
  color: #fff !important;
}

/* ── Right column – image ── */
.image-wrap {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placeholder when no real image is provided */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, #1a3050 0%, #0f2035 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9bb3cc;
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .myteverywhere-card {
	grid-template-columns: 1fr;
	padding: 36px 28px;
	gap: 32px;
  }
  .image-wrap { order: -1; aspect-ratio: 16/9; }
}

/*end myt everywhere v2*/

/* start new layout 2026 */

.bento-card-minheight {
    min-height: 360px!important;
}
.bento-illu02 {
    max-width: 100%;
    max-height: 330px !important;
    object-fit: contain;
}

.bento-overlay--media::after {
    background: linear-gradient(to top, rgba(8, 12, 30, .80), rgba(8, 12, 30, .10) 58%, transparent !important);
}

/*mobile section */
/* ---- bento card visuals (layout is Bootstrap; these are just the tile styles) ---- */
.bento-card{position:relative;border-radius:var(--r-lg);overflow:hidden;min-height:220px;display:flex;flex-direction:column;padding:36px;isolation:isolate}
.bento-body h3{font-size:var(--fs-h4);font-weight:var(--fw-medium);letter-spacing:-.4px;line-height:1.12;margin:0 0 10px}
.bento-body p{margin:0;font-size:var(--fs-body);line-height:1.45;max-width:calc(100% - 56px)}
.bento-body .accent{color:var(--myt-blue)}

/* full-bleed photo tile with overlaid white text */
.bento-card--media{color:#fff;justify-content:flex-end;min-height:360px}
.bento-card--media .bento-body h3{font-size:var(--fs-h3)}
.bento-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-1}
.bento-card--media::after{content:"";position:absolute;inset:0;z-index:0;background:linear-gradient(to top,rgba(8,12,30,.80),rgba(8,12,30,.10) 58%,transparent)}
.bento-card--media .bento-body{position:relative;z-index:1;max-width:80%}

/* pale-blue panel tile with icon / illustration on top */
.bento-card--panel{background:var(--od-paleblue);color:#14151b}
.bento-illu-wrap{display:flex;align-items:center;justify-content:center;min-height:150px;margin-bottom:10px}
.bento-illu{max-width:100%;max-height:160px;object-fit:contain}
.bento-card--panel .bento-body{margin-top:auto}
.bento-card--panel .bento-body p{color:var(--od-grey-700,#4a4f5e)}

/* pill arrow button */
.bento-go{position:absolute;right:28px;bottom:28px;z-index:2;width:58px!important;height:44px!important;border:none;border-radius:var(--r-pill);display:grid;place-items:center;cursor:pointer;text-decoration:none;transition:transform .15s,box-shadow .15s}
.bento-go svg{width:22px;height:22px}
.bento-go:hover{transform:translateX(3px);box-shadow:var(--sh-md)}
.bento-go--light{background:#fff;color:#14151b}
.bento-go--dark{background:var(--od-black);color:#fff}

/* phones: tighten padding, heights, illustration & arrow button */
@media(max-width:575.98px){
  .bento-card{min-height:240px;padding:24px}
  .bento-card--media{min-height:300px}
  .bento-card--media .bento-body{max-width:100%}
  .bento-card--media .bento-body h3{font-size:var(--fs-h4)}
  .bento-illu-wrap{min-height:100px;margin-bottom:6px}
  .bento-illu{max-height:110px}
  .bento-body p{max-width:calc(100% - 46px)}
  .bento-go{width:46px;height:46px;right:20px;bottom:20px}
  .bento-go svg{width:20px;height:20px}
}

/* more info */
#dailyessentials .opt-card{gap:14px;padding:30px 22px;text-align:center;min-height:250px;}
#dailyessentials .dse-ic{height:80px;width:auto;object-fit:contain}
#dailyessentials .dse-title{font-size:18px;font-weight:var(--fw-semibold,600);color:#14151b;line-height:1.25;padding-bottom:10px;}
#dailyessentials .dse-desc{font-size:14px;color:#000;line-height:1.4;margin:0}

.dse-ic {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
}

.pc-btn-custom {
    width: 58px;
    height: 44px;
    border: 1.5px solid #14151b;
    border-radius: var(--r-pill);
    background: transparent;
    color: #14151b;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform .15s, opacity .15s, border-color .15s, color .15s, background .15s;
}

.pc-btn-custom:hover:not(:disabled) {
    transform: translateY(-2px);
    background: #14151b;
    color: #fff
}

/* tiles positioned so the button can anchor bottom-right */
#dailyessentials .tile{position:relative;min-height:260px;}

/* pin the button link to the bottom-right of each tile */
#dailyessentials .tile > .pc-btn-link{position:absolute;right:20px;bottom:20px;line-height:0;}

