/* ============================================================
   U TELE SERVICES — Clean Modern ISP Design
   ============================================================ */

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

:root {
  /* Accent & Brand */
  --accent:        #e94560;
  --accent-hover:  #c73550;
  --accent-light:  rgba(233,69,96,0.06);
  --navy:          #1a1a2e;
  --navy2:         #16213e;
  --blue:          #3b82f6;

  /* Backgrounds */
  --bg:            #ffffff;
  --bg2:           #f4f7fb;

  /* Text */
  --text:          #1e293b;
  --text-light:    #64748b;

  /* Borders & Shadows */
  --border:        #e2e8f0;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --radius:        12px;

  /* Fonts */
  --font:          'Inter', 'Poppins', sans-serif;
  --display:       'Inter', 'Poppins', sans-serif;
  --t:             all 0.3s ease;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy variable compatibility — old class names still work */
  --green:         #e94560;
  --cyan:          #3b82f6;
  --glass:         #ffffff;
  --glass-b:       #e2e8f0;
  --muted:         #64748b;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); font-family: var(--font); overflow-x: hidden; line-height: 1.6; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
.display { font-family: var(--display); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.muted { color: var(--text-light); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── CARD / GLASS → solid white card ── */
.glass {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.glass-strong {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* ── CURSOR: hidden in clean design ── */
.cursor-dot, .cursor-ring { display: none !important; }

/* ── CANVAS: hidden in clean design ── */
#hero-canvas { display: none !important; }
.hero-aurora { display: none !important; }

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 14px;
  font-weight: 700; font-family: var(--font); cursor: pointer;
  text-decoration: none; transition: var(--t); border: none;
  letter-spacing: 0.3px; position: relative; overflow: hidden;
}

/* Primary — red */
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(233,69,96,0.25);
}
.btn-primary::after { content: none; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(233,69,96,0.35); }
.btn-primary span { position: relative; z-index: 1; }

/* Glass — translucent white (used on dark hero) */
.btn-glass {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); }

/* When navbar is scrolled (white bg), btn-glass adapts */
.navbar.scrolled .btn-glass {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .btn-glass:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* Outline — on dark backgrounds */
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.38);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ── SECTION LABEL ── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 50px;
  background: rgba(233,69,96,0.07);
  border: 1px solid rgba(233,69,96,0.2);
  color: var(--accent); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.label .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ── SECTION HEADING ── */
.sec-title {
  font-family: var(--display); font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800; line-height: 1.12; margin-bottom: 16px; color: var(--text);
}
.sec-sub { color: var(--text-light); font-size: 17px; line-height: 1.7; max-width: 580px; }

/* ========================================================
   NAVBAR
   ======================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--t);
  background: transparent;
}
.navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 38px; width: 38px; object-fit: contain; border-radius: 8px; }
.logo-dark { display: none; }
.navbar.scrolled .logo-white { display: none; }
.navbar.scrolled .logo-dark  { display: block; }

.nav-logo-text {
  font-family: var(--display); font-weight: 700; font-size: 17px;
  color: #ffffff; text-decoration: none; transition: var(--t);
}
.navbar.scrolled .nav-logo-text { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: width .3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); }

.nav-right { display: flex; align-items: center; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: #ffffff;
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--navy); text-decoration: none; font-family: var(--display);
  font-size: 26px; font-weight: 700; transition: var(--t);
}
.mobile-menu a:hover { color: var(--accent); }
.mob-close {
  position: absolute; top: 24px; right: 24px;
  color: var(--text-light); font-size: 28px; cursor: pointer;
  background: none; border: none; transition: var(--t);
}
.mob-close:hover { color: var(--navy); }

/* ========================================================
   HERO  (dark navy — stays dark for impact)
   ======================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0f3460 100%);
}
/* Subtle light streaks */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 88% 18%, rgba(233,69,96,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 8% 80%,  rgba(59,130,246,0.08) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  background: rgba(233,69,96,0.10); border: 1px solid rgba(233,69,96,0.30);
  border-radius: 50px; color: #ffb3bf; font-size: 13px; font-weight: 600; margin-bottom: 32px;
}
.hero-badge .pulse {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

.hero-title {
  font-family: var(--display); font-size: clamp(38px, 6.5vw, 78px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 24px; color: #ffffff;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8fa3 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.72);
  line-height: 1.75; margin-bottom: 40px; max-width: 600px;
}

.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-chip {
  display: flex; align-items: center; gap: 8px; padding: 11px 18px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px; font-size: 13px; font-weight: 500;
  transition: var(--t); white-space: nowrap; color: rgba(255,255,255,0.88);
}
.stat-chip:hover { border-color: rgba(233,69,96,0.4); background: rgba(233,69,96,0.08); }

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  color: rgba(255,255,255,0.38); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  animation: float-up 2.5s ease-in-out infinite;
}
.scroll-hint .arrow { font-size: 20px; color: var(--accent); }
@keyframes float-up { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* ========================================================
   TRUST STATS  (white section with border)
   ======================================================== */
.trust-bar {
  background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 24px 16px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display); font-size: 46px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.stat-lbl { color: var(--text-light); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }

/* ========================================================
   SERVICES
   ======================================================== */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.svc-card {
  padding: 36px 32px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--t); position: relative; overflow: hidden; cursor: pointer;
}
.svc-card::before { content: none; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(233,69,96,0.2); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.svc-title { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.svc-desc { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.svc-arrow { position: absolute; top: 32px; right: 32px; color: var(--border); font-size: 16px; transition: var(--t); }
.svc-card:hover .svc-arrow { color: var(--accent); transform: translate(3px,-3px); }

/* ========================================================
   ENTERTAINMENT / MARQUEE
   ======================================================== */
.marquee-wrap { overflow: hidden; position: relative; padding: 20px 0; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 180px; z-index: 2;
}
.marquee-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--bg2), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }

.marquee-track { display: flex; gap: 12px; animation: marquee 35s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.ch-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; font-size: 13px; font-weight: 500; white-space: nowrap;
  transition: var(--t); cursor: default; color: var(--text); box-shadow: var(--shadow-sm);
}
.ch-chip:hover { border-color: var(--accent); color: var(--accent); }
.ch-chip .ch-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

/* ========================================================
   OTT / PLAYBOXTV
   ======================================================== */
.pbtv-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 24px; padding: 48px; margin-bottom: 36px; position: relative; overflow: hidden;
}
.pbtv-hero::before {
  content: ''; position: absolute; top: -80px; right: -60px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(233,69,96,0.12), transparent 70%); pointer-events: none;
}

/* Text inside the dark PBTV block */
.pbtv-hero h3 { color: #ffffff; }
.pbtv-hero .label {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.88);
}
.pbtv-hero .label .dot { background: #ffffff; }

.pbtv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pbtv-features { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.pbtv-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.82); }
.pbtv-feat i { color: var(--accent); font-size: 14px; width: 16px; }

.pbtv-visual { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.pbtv-stat-card {
  padding: 20px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; text-align: center;
}
.pbtv-stat-num { font-family: var(--display); font-size: 32px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.pbtv-stat-lbl { color: rgba(255,255,255,0.58); font-size: 12px; }

.ott-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ott-card {
  padding: 28px 20px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; text-align: center; transition: var(--t); cursor: pointer; box-shadow: var(--shadow-sm);
}
.ott-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 16px 40px rgba(233,69,96,0.10); }
.ott-card.featured-ott { grid-column: span 3; background: var(--accent-light); border-color: rgba(233,69,96,0.18); }
.ott-icon { font-size: 36px; margin-bottom: 12px; }
.ott-name { font-family: var(--display); font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--text); }
.ott-desc { color: var(--text-light); font-size: 12px; }

/* ========================================================
   SPEED EXPERIENCE
   ======================================================== */
.speed-section { background: var(--bg2); }
.speed-wrap { background: var(--bg); border: 1px solid var(--border); border-radius: 24px; padding: 48px; box-shadow: var(--shadow); }
.speed-display { text-align: center; margin-bottom: 36px; }
.speed-num {
  font-family: var(--display); font-size: 88px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.speed-unit { color: var(--text-light); font-size: 20px; font-weight: 600; }
.speed-desc { color: var(--text-light); font-size: 14px; margin-top: 4px; }

input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px; border-radius: 3px;
  background: var(--border); outline: none; cursor: pointer; margin-bottom: 10px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 0 12px rgba(233,69,96,0.4); transition: transform .2s ease;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.3); }
input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border: none; border-radius: 50%; background: var(--accent); cursor: pointer;
}

.speed-ticks { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-light); margin-bottom: 40px; }
.speed-ticks .active-tick { color: var(--accent); font-weight: 700; }

.speed-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.speed-feat-card {
  display: flex; align-items: center; gap: 14px; padding: 18px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; transition: var(--t);
}
.speed-feat-card:hover { border-color: var(--accent); background: var(--accent-light); }
.speed-feat-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.speed-feat-label { font-size: 12px; color: var(--text-light); margin-bottom: 3px; }
.speed-feat-val { font-weight: 700; font-size: 15px; color: var(--accent); transition: color .3s ease; }

/* ========================================================
   PLANS
   ======================================================== */
.plan-tabs-row { display: flex; justify-content: center; margin-bottom: 40px; }
.plan-tabs {
  display: flex; gap: 6px; padding: 5px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 50px; width: fit-content;
}
.ptab {
  padding: 10px 26px; border-radius: 50px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--t); color: var(--text-light);
  border: none; background: transparent; font-family: var(--font);
}
.ptab.active { background: var(--accent); color: #ffffff; box-shadow: 0 4px 12px rgba(233,69,96,0.25); }

.dur-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; }
.dtab {
  padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--t); color: var(--text-light);
  border: 1px solid var(--border); background: transparent; font-family: var(--font);
}
.dtab.active { color: var(--accent); border-color: rgba(233,69,96,0.3); background: rgba(233,69,96,0.06); }

.plan-panel { display: none; }
.plan-panel.active { display: block; }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }

.plan-card {
  padding: 32px 24px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 20px;
  box-shadow: var(--shadow-sm); transition: var(--t); position: relative; overflow: hidden;
}
.plan-card.hot {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.08), var(--shadow);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.hot:hover { box-shadow: 0 0 0 3px rgba(233,69,96,0.12), 0 20px 50px rgba(233,69,96,0.10); }

.plan-hot-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 12px; border-radius: 50px; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
  background: rgba(233,69,96,0.08); color: var(--accent); border: 1px solid rgba(233,69,96,0.2);
}

.plan-speed { font-family: var(--display); font-size: 34px; font-weight: 800; margin-bottom: 2px; line-height: 1; color: var(--text); }
.plan-type  { color: var(--text-light); font-size: 12px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }

.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.plan-cur   { font-size: 20px; font-weight: 700; color: var(--accent); }
.plan-amt   { font-family: var(--display); font-size: 44px; font-weight: 800; line-height: 1; color: var(--text); }
.plan-per   { color: var(--text-light); font-size: 13px; }
.plan-gst   { color: var(--text-light); font-size: 11px; margin-bottom: 22px; }

.plan-hr    { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-feats li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text); }
.plan-feats li i { color: var(--accent); font-size: 12px; }

/* ========================================================
   WHY CHOOSE US
   ======================================================== */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; align-items: stretch; }
.why-card {
  padding: 28px 22px 24px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; text-align: center; transition: var(--t); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--why-c, var(--accent));
}
.why-card:hover { transform: translateY(-7px); border-color: var(--why-c, var(--accent)); box-shadow: 0 20px 52px rgba(0,0,0,0.10); }
.why-ico-wrap {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.why-num {
  font-size: 28px; font-weight: 900; line-height: 1.15; margin-bottom: 6px;
  color: var(--why-c, var(--accent)); white-space: nowrap;
}
.why-num sub { font-size: 13px; font-weight: 600; vertical-align: baseline; }
.why-title { font-family: var(--display); font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--text); }
.why-desc  { color: var(--text-light); font-size: 12px; line-height: 1.65; flex: 1; }

/* ========================================================
   COVERAGE
   ======================================================== */
.coverage-section { background: var(--bg2); }
.cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.loc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 32px; }
.loc-chip {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  font-size: 13px; font-weight: 500; transition: var(--t); color: var(--text); box-shadow: var(--shadow-sm);
}
.loc-chip:hover { border-color: var(--accent); }
.loc-chip i { color: var(--accent); font-size: 14px; }

.avail-form {
  background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: var(--shadow);
}
.avail-form h3 { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 8px; color: var(--text); }
.avail-form p  { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }

.fgrp { margin-bottom: 14px; }
.flbl { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 7px; }
.finp {
  width: 100%; padding: 13px 16px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 14px; font-family: var(--font); outline: none; transition: var(--t);
}
.finp:focus { border-color: var(--accent); background: #fff8f9; box-shadow: 0 0 0 3px rgba(233,69,96,0.08); }
.finp::placeholder { color: var(--text-light); opacity: .6; }

/* ========================================================
   REFERRAL  (dark navy card on light section)
   ======================================================== */
.referral-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 24px; padding: 72px 48px; text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,26,46,0.22);
}
.referral-card::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(233,69,96,0.14), transparent 70%); pointer-events: none;
}
.ref-amount {
  font-family: var(--display); font-size: 88px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), #ff8fa3);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.ref-title { font-family: var(--display); font-size: 28px; font-weight: 700; margin-bottom: 12px; color: #ffffff; }
.ref-sub   { color: rgba(255,255,255,0.62); font-size: 16px; max-width: 480px; margin: 0 auto 32px; }

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testi-wrap { overflow: hidden; position: relative; padding: 12px 0; }
.testi-wrap::before, .testi-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 200px; z-index: 2;
}
.testi-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--bg), transparent); }
.testi-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.testi-track { display: flex; gap: 20px; animation: tscroll 28s linear infinite; width: max-content; }
.testi-track:hover { animation-play-state: paused; }
@keyframes tscroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.testi-card {
  min-width: 320px; padding: 28px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 16px; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testi-text { color: var(--text-light); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; font-family: var(--display);
}
.t-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; color: var(--text); }
.t-loc  { color: var(--text-light); font-size: 12px; }

/* ========================================================
   CONTACT
   ======================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.supp-cards { display: flex; flex-direction: column; gap: 12px; }
.supp-card {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none; transition: var(--t); color: var(--text); box-shadow: var(--shadow-sm);
}
.supp-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateX(4px); }
.supp-ico {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.supp-lbl { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.supp-val { font-size: 15px; font-weight: 600; color: var(--text); }

.contact-form { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--text); }

/* ========================================================
   FOOTER  (dark navy)
   ======================================================== */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }

.footer-brand img { height: 38px; width: 38px; object-fit: contain; border-radius: 8px; margin-bottom: 14px; }
.footer-brand-name {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: #ffffff; display: block; margin-bottom: 12px;
}
.footer-tag { color: rgba(255,255,255,0.52); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.socials { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.52); text-decoration: none; transition: var(--t); font-size: 15px;
}
.soc-btn:hover { background: rgba(233,69,96,0.12); border-color: rgba(233,69,96,0.3); color: var(--accent); transform: translateY(-2px); }

.footer-col-hd { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; color: rgba(255,255,255,0.9); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 13px; transition: var(--t); }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-cr { color: rgba(255,255,255,0.42); font-size: 12px; }
.footer-cr a { color: rgba(255,255,255,0.42); text-decoration: none; }
.footer-powered { color: rgba(255,255,255,0.42); font-size: 12px; display: flex; align-items: center; gap: 4px; }
.footer-powered span { color: var(--accent); font-weight: 600; }

/* ========================================================
   FLOATING ELEMENTS
   ======================================================== */
.wa-btn {
  position: fixed; bottom: 96px; right: 24px; z-index: 900;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--t);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }

.ai-orb {
  position: fixed; bottom: 24px; right: 24px; z-index: 901;
  width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #ffffff;
  box-shadow: 0 4px 20px rgba(233,69,96,0.4); transition: var(--t);
  animation: orb-pulse 3s ease-in-out infinite; border: none;
}
.ai-orb:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(233,69,96,0.6); }
@keyframes orb-pulse { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.ai-panel {
  position: fixed; bottom: 90px; right: 24px; width: 350px;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  z-index: 900; display: none; flex-direction: column; overflow: hidden;
}
.ai-panel.open { display: flex; }

.ai-header {
  padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy);
}
.ai-title { display: flex; align-items: center; gap: 10px; }
.ai-ava {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff;
}
.ai-name-wrap .ai-nm { font-weight: 700; font-size: 14px; font-family: var(--display); color: #fff; }
.ai-name-wrap .ai-st { color: rgba(255,255,255,0.58); font-size: 11px; }
.ai-x { cursor: pointer; color: rgba(255,255,255,0.58); font-size: 18px; background: none; border: none; transition: var(--t); }
.ai-x:hover { color: #fff; }

.ai-msgs {
  flex: 1; overflow-y: auto; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px; max-height: 200px;
}
.ai-msg { padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.6; max-width: 88%; color: var(--text); }
.ai-msg.bot { background: var(--bg2); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 3px; }
.ai-msg.user { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }

.ai-quick {
  padding: 12px 18px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px;
}
.ai-qa {
  padding: 7px 10px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-light); font-size: 11px; cursor: pointer;
  transition: var(--t); text-align: center; font-family: var(--font);
}
.ai-qa:hover { background: rgba(233,69,96,0.06); border-color: rgba(233,69,96,0.2); color: var(--accent); }

.ai-input-row { padding: 12px 18px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.ai-inp {
  flex: 1; padding: 9px 13px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 9px;
  color: var(--text); font-size: 13px; font-family: var(--font); outline: none; transition: var(--t);
}
.ai-inp:focus { border-color: var(--accent); }
.ai-inp::placeholder { color: var(--text-light); opacity: .6; }
.ai-send {
  width: 36px; height: 36px; background: var(--accent);
  border: none; border-radius: 9px; color: #fff; font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--t); flex-shrink: 0;
}
.ai-send:hover { transform: scale(1.07); background: var(--accent-hover); }

/* ========================================================
   ANIMATIONS / REVEAL
   ======================================================== */
.reveal { }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ott-grid { grid-template-columns: repeat(2,1fr); }
  .ott-card.featured-ott { grid-column: span 2; }
  .pbtv-grid { grid-template-columns: 1fr; }
  .pbtv-visual { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-right .btn-glass, .nav-right .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-title { letter-spacing: -0.5px; }
  .services-grid, .cov-grid, .contact-grid { grid-template-columns: 1fr; }
  .speed-cards { grid-template-columns: 1fr; }
  .ott-grid { grid-template-columns: 1fr; }
  .ott-card.featured-ott { grid-column: span 1; }
  .pbtv-hero { padding: 28px 24px; }
  .pbtv-visual { grid-template-columns: repeat(2,1fr); }
  .referral-card { padding: 48px 24px; }
  .ref-amount { font-size: 60px; }
  .ai-panel { width: calc(100vw - 48px); right: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}

/* ========================================================
   ACCORDION
   ======================================================== */
.acc-group { display: flex; flex-direction: column; gap: 10px; }
.accordion { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.acc-hd {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; transition: var(--t);
  font-weight: 600; font-size: 15px; background: none; border: none;
  width: 100%; text-align: left; color: var(--text); font-family: var(--font); gap: 12px;
}
.acc-hd:hover { color: var(--accent); background: rgba(233,69,96,0.02); }
.acc-hd.open  { color: var(--accent); background: rgba(233,69,96,0.03); }
.acc-icon { transition: transform 0.3s ease; color: var(--text-light); flex-shrink: 0; }
.acc-hd.open .acc-icon { transform: rotate(180deg); color: var(--accent); }
.acc-body {
  display: none; padding: 0 24px 22px; color: var(--text-light);
  font-size: 14px; line-height: 1.85; border-top: 1px solid var(--border);
}
.acc-body.open { display: block; }
.acc-body p { margin-bottom: 10px; }
.acc-body p:last-child { margin-bottom: 0; }
.acc-body ul { margin: 8px 0 0 18px; display: flex; flex-direction: column; gap: 6px; }
.acc-body li { color: var(--text-light); }
.acc-body strong { color: var(--text); }

/* ========================================================
   PAGE HERO  (subpages — dark navy)
   ======================================================== */
.page-hero {
  padding: 160px 0 72px; text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero h1 {
  font-family: var(--display); font-size: clamp(30px,5vw,54px);
  font-weight: 800; margin-bottom: 14px; line-height: 1.12; color: #ffffff;
}
.page-hero p { color: rgba(255,255,255,0.68); font-size: 17px; max-width: 560px; margin: 0 auto; }

.page-content { padding: 72px 0; }
.page-max { max-width: 820px; margin: 0 auto; }

/* ========================================================
   SUPPORT PAGE
   ======================================================== */
.supp-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.supp-tab {
  padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1px solid var(--border); background: var(--bg);
  color: var(--text-light); transition: var(--t); font-family: var(--font);
}
.supp-tab.active { background: rgba(233,69,96,0.06); border-color: rgba(233,69,96,0.3); color: var(--accent); }

/* ========================================================
   PLANS PAGE STRIP
   ======================================================== */
.plans-hero-strip {
  background: var(--navy); border-bottom: none;
  padding: 16px 0; text-align: center;
  color: rgba(255,255,255,0.72); font-size: 14px;
}
.plans-hero-strip span { color: var(--accent); font-weight: 700; }

/* ── TV / OTT chip styles ── */
.channel-chip {
  background: var(--bg); border: 1px solid var(--border); border-radius: 30px;
  padding: 5px 14px; font-size: 13px; font-weight: 500; color: var(--text); transition: var(--t);
}
.channel-chip:hover { border-color: var(--accent); color: var(--accent); }

.ott-chip {
  background: var(--bg); border: 1px solid var(--border); border-radius: 30px;
  padding: 10px 20px; font-size: 14px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 8px; transition: var(--t); box-shadow: var(--shadow-sm);
}
.ott-chip:hover { transform: translateY(-2px); border-color: var(--accent); }

@media (max-width: 480px) {
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-direction: column; }
  .stat-chip { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none !important; border-top: none !important; }
  .stat-item:not(:last-child) { border-bottom: 1px solid var(--border); }
  .why-grid { grid-template-columns: 1fr; }
  .speed-num { font-size: 64px; }
  .plan-tabs { overflow-x: auto; width: 100%; }
  .dur-tabs { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
