/* ============================================================
   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: 36px; 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; }

/* ========================================================
   TOPBAR
   ======================================================== */
:root { --topbar-h: 36px; }

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--navy); color: rgba(255,255,255,0.72);
  font-size: 11.5px; font-weight: 500; height: var(--topbar-h);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.topbar.hide { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-item { display: flex; align-items: center; gap: 5px; }
.topbar-item i { color: var(--accent); font-size: 10px; }
.topbar-link { color: rgba(255,255,255,0.62); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.2s ease; }
.topbar-link:hover { color: #fff; }
.topbar-link i { font-size: 11px; }
.topbar-sep { color: rgba(255,255,255,0.2); user-select: none; }

/* ========================================================
   NAVBAR
   ======================================================== */
.navbar {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 1000;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  background: rgba(15,15,40,0.45);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.navbar.scrolled {
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}

/* ── LOGO ── */
.nav-logo {
  display: flex; align-items: center; gap: 2px;
  text-decoration: none; flex-shrink: 0; transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.85; }

.logo-mark {
  width: 54px; height: 54px; flex-shrink: 0; display: flex;
  align-items: center; justify-content: center;
  margin-right: -4px;
}
.logo-mark img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 8px rgba(56,189,248,0.35));
}

.logo-wordmark { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-brand-name {
  font-size: 17px; font-weight: 800; color: #fff;
  font-family: var(--display); letter-spacing: -0.4px; transition: color 0.3s ease;
}
.logo-accent { color:white; font-weight: 400; transition: color 0.3s ease; }
.navbar.scrolled .logo-brand-name { color: var(--navy); }
.navbar.scrolled .logo-accent { color: var(--accent); font-weight: 600; }

/* ── NAV LINKS ── */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 7px 12px; border-radius: 8px;
  color: rgba(255,255,255,0.78); text-decoration: none; font-size: 13.5px;
  font-weight: 500; transition: all 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); background: var(--bg2); }
.navbar.scrolled .nav-links a.active { color: var(--accent); background: rgba(233,69,96,0.07); }

/* ── RIGHT SIDE ── */
.nav-right { display: flex; align-items: center; gap: 8px; }

.nav-call-btn {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.72); text-decoration: none; font-size: 12.5px; font-weight: 600;
  padding: 7px 13px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18); transition: all 0.2s ease;
}
.nav-call-btn i { color: var(--accent); font-size: 11px; }
.nav-call-btn:hover { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.09); }
.navbar.scrolled .nav-call-btn { color: var(--text); border-color: var(--border); }
.navbar.scrolled .nav-call-btn:hover { border-color: rgba(233,69,96,0.3); background: var(--accent-light); color: var(--accent); }

.btn-nav-login {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 50px;
  background: rgba(255,255,255,0.1); color: #fff;
  font-size: 13px; font-weight: 600; font-family: var(--font);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer; white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-nav-login:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
.btn-nav-login i { font-size: 12px; }
.navbar.scrolled .btn-nav-login { background: transparent; color: var(--navy); border-color: var(--border); }
.navbar.scrolled .btn-nav-login:hover { background: var(--bg2); border-color: var(--navy); }

.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 50px;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 700; font-family: var(--font);
  text-decoration: none; border: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(233,69,96,0.32); transition: all 0.2s ease;
}
.btn-nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(233,69,96,0.42); }
.btn-nav-cta i { font-size: 11px; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; width: 42px; height: 42px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 10px; transition: all 0.2s ease; flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,0.18); }
.hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar.scrolled .hamburger { background: var(--bg2); border-color: var(--border); }
.navbar.scrolled .hamburger span { background: var(--navy); }
.navbar.scrolled .hamburger:hover { border-color: rgba(233,69,96,0.3); background: rgba(233,69,96,0.05); }

/* ── MOB OVERLAY ── */
.mob-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.52);
  z-index: 1050; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; backdrop-filter: blur(3px);
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

/* ── MOBILE SIDEBAR ── */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(340px, 88vw); background: #fff;
  z-index: 1060; display: flex; flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.16);
  transition: right 0.36s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { right: 0; }

.mob-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mob-header .nav-logo { pointer-events: none; }
.mob-header .logo-brand-name { color: var(--navy); }
.mob-header .logo-accent { color: var(--accent); font-weight: 600; }
.mob-header .logo-tagline { color: var(--text-light); }

.mob-close {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s ease;
}
.mob-close:hover { background: rgba(233,69,96,0.06); border-color: rgba(233,69,96,0.25); color: var(--accent); }

.mob-nav { display: flex; flex-direction: column; padding: 14px 14px 0; flex: 1; overflow-y: auto; }
.mob-nav a {
  display: flex; align-items: center; padding: 12px 14px; border-radius: 10px;
  color: var(--text); text-decoration: none; font-size: 15px; font-weight: 600;
  transition: all 0.18s ease; font-family: var(--display);
}
.mob-nav a:hover { background: var(--bg2); color: var(--accent); }
.mob-nav a.active { background: rgba(233,69,96,0.06); color: var(--accent); }

.mob-actions {
  padding: 16px 16px; border-top: 1px solid var(--border); flex-shrink: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.mob-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mob-contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px; border-radius: 10px; font-size: 13px; font-weight: 600;
  text-decoration: none; background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); transition: all 0.18s ease; font-family: var(--font);
}
.mob-contact-btn:hover { border-color: var(--accent); color: var(--accent); }
.mob-wa { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.mob-wa:hover { background: #dcfce7; border-color: #86efac; color: #166534; }
.mob-login-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--text-light); font-size: 12px; font-weight: 500; text-decoration: none;
  padding: 6px; transition: color 0.18s ease;
}
.mob-login-link:hover { color: var(--accent); }

/* ========================================================
   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; top: 0; right: 0; bottom: 0; left: 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: 52px; 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: 16px; 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; }
.ch-chip img { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; flex-shrink: 0; display: block; }

/* ========================================================
   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 Platform Logo Grid */
.ott-brands-section { margin-top: 44px; }
.ott-brands-label {
  text-align: center; color: var(--text-light); font-size: 11px;
  text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700; margin-bottom: 28px;
}
.ott-logos-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.ott-logo-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 18px;
  padding: 22px 12px; display: flex; flex-direction: column;
  align-items: center; gap: 12px; transition: var(--t);
}
.ott-logo-card:hover {
  transform: translateY(-5px); border-color: rgba(233,69,96,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}
.ott-logo-img-wrap {
  width: 68px; height: 68px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.ott-logo-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.ott-logo-name {
  font-size: 12px; font-weight: 700; color: var(--text);
  text-align: center; line-height: 1.3; font-family: var(--display);
}

/* ========================================================
   TV CHANNEL TABS
   ======================================================== */
.ch-stats-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px;
}
.ch-stat-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 30px;
  background: var(--bg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 700; color: var(--text); font-family: var(--display);
}
.ch-stat-pill i { font-size: 14px; }

.ch-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px;
}
.ch-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text-light);
  font-size: 13px; font-weight: 600; font-family: var(--display);
  cursor: pointer; transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.ch-tab:hover { border-color: var(--accent); color: var(--accent); background: rgba(233,69,96,0.05); }
.ch-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(233,69,96,0.3); }
.ch-tab i { font-size: 13px; }

.ch-panel { display: none; animation: chFadeIn 0.25s ease; }
.ch-panel.active { display: block; }
@keyframes chFadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

.ch-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 14px;
}
.ch-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 10px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 18px; transition: all 0.22s ease; cursor: default;
  box-shadow: var(--shadow-sm);
}
.ch-card:hover {
  background: #f8faff; transform: translateY(-5px);
  border-color: rgba(233,69,96,0.3); box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.ch-card-logo {
  width: 72px; height: 72px; border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ch-card-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ch-badge {
  width: 72px; height: 72px; border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  flex-shrink: 0;
}
.ch-badge span {
  font-size: 11px; font-weight: 900; color: #fff; font-family: var(--display);
  text-align: center; line-height: 1.2; letter-spacing: 0.5px;
}
.ch-card-name {
  font-size: 11px; font-weight: 600; color: var(--text-light);
  text-align: center; line-height: 1.3; font-family: var(--display);
}

/* ========================================================
   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: auto; max-width: 160px; object-fit: contain; border-radius: 6px; 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-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .pbtv-grid { grid-template-columns: 1fr; }
  .pbtv-visual { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 1100px) {
  .nav-call-btn .nav-call-num { display: none; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { top: 0; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
  .section { padding: 72px 0; }
  .nav-links, .nav-call-btn, .btn-nav-login { display: none; }
  .hamburger { display: flex; }
  .hero-title { letter-spacing: -0.5px; }
  .services-grid, .svc-grid, .cov-grid, .contact-grid { grid-template-columns: 1fr; }
  .speed-cards { grid-template-columns: 1fr; }
  .ott-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .ch-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .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: 36px; 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; }

/* ── ABOUT PAGE two-column splits ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .about-split .about-col-img { order: -1; }
}

/* ========================================================
   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) {
  .ch-grid { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); }
  .ch-tabs { gap: 6px; }
  .ch-tab { padding: 8px 14px; font-size: 12px; }
  .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; }
}

/* ============================================================
   PRO MAX UPGRADE — Glassmorphism · Orbs · Shimmer · Glow
   ============================================================ */

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, #ff8fa3 50%, var(--blue) 100%);
  z-index: 10000; transition: width 0.06s linear;
  box-shadow: 0 0 10px rgba(233,69,96,0.55);
  pointer-events: none;
}

/* glassmorphism navbar handled in NAVBAR section above */

/* ── BUTTON SHIMMER ── */
.btn-primary { overflow: hidden; }
.btn-primary::after {
  content: '' !important; position: absolute;
  top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg); border-radius: 0;
  transition: none;
}
.btn-primary:hover::after { animation: btn-shimmer 0.65s ease forwards; }
@keyframes btn-shimmer { from { left: -100%; } to { left: 165%; } }

/* ── ANIMATED GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(270deg, var(--accent) 0%, #ff8fa3 28%, var(--blue) 62%, var(--accent) 100%) !important;
  background-size: 300% 100% !important;
  animation: gradient-move 6s ease-in-out infinite !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
@keyframes gradient-move {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── HOT PLAN GLOW PULSE ── */
@keyframes card-glow {
  0%, 100% { box-shadow: 0 0 0 2px rgba(233,69,96,0.12), 0 8px 32px rgba(233,69,96,0.10); }
  50%       { box-shadow: 0 0 0 3px rgba(233,69,96,0.30), 0 20px 60px rgba(233,69,96,0.22); }
}
.plan-card.hot { animation: card-glow 2.8s ease-in-out infinite; }

/* ── HERO GRID PATTERN ── */
.hero-grid-pattern {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ── ANIMATED ORB BLOBS ── */
.orb-blob {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.orb-blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(233,69,96,0.20) 0%, transparent 68%);
  top: -180px; right: -130px;
  animation: blob-float-1 14s ease-in-out infinite;
}
.orb-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(59,130,246,0.13) 0%, transparent 68%);
  bottom: -90px; left: -90px;
  animation: blob-float-2 11s ease-in-out infinite;
}
.orb-blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 68%);
  top: 38%; left: 42%;
  animation: blob-float-1 9s ease-in-out infinite reverse;
  animation-delay: -4s;
}
@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(42px, -32px) scale(1.06); }
  66%       { transform: translate(-22px, 18px) scale(0.94); }
}
@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-36px, 26px) scale(1.04); }
  66%       { transform: translate(22px, -16px) scale(0.96); }
}

/* ── SECTION ORB BLOBS (dark sections) ── */
.s-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.s-orb-r {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(233,69,96,0.16) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation: blob-float-1 12s ease-in-out infinite;
}
.s-orb-l {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 70%);
  bottom: -60px; left: -40px;
  animation: blob-float-2 10s ease-in-out infinite;
}

/* ── MOBILE MENU SLIDE ANIMATION ── */
.mobile-menu {
  transform: translateX(100%) !important;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
}
.mobile-menu.open { transform: translateX(0) !important; }

/* ── MOBILE BLUR OVERLAY ── */
.mob-overlay {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(10,10,30,0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 998; opacity: 0; visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}
.mob-overlay.open { opacity: 1; visibility: visible; }

/* ── LABEL DOT ANIMATION ── */
.label .dot { position: relative; animation: dot-pulse 2.8s ease-in-out infinite; }
.label .dot::after {
  content: ''; position: absolute; top: -4px; right: -4px; bottom: -4px; left: -4px;
  border-radius: 50%; border: 1.5px solid var(--accent);
  opacity: 0; animation: dot-ring 2.8s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(.65);opacity:.45} }
@keyframes dot-ring  { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(2.4);opacity:0} }

/* ── PAGE HERO ORBS ── */
.page-hero { position: relative; overflow: hidden; }
.page-hero-orb-r {
  position: absolute; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(233,69,96,0.12) 0%, transparent 65%);
  top: -120px; right: -80px; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.page-hero-orb-l {
  position: absolute; width: 290px; height: 290px;
  background: radial-gradient(circle, rgba(59,130,246,0.09) 0%, transparent 65%);
  bottom: -70px; left: -50px; border-radius: 50%; filter: blur(70px); pointer-events: none;
}

/* ── BTN-GLASS ON LIGHT BACKGROUNDS ── */
.cat-cta-row .btn-glass,
.speedtest-section .btn-glass,
.section .btn-glass:not(.hero-slide .btn-glass):not(.refined-section .btn-glass) {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.cat-cta-row .btn-glass:hover,
.speedtest-section .btn-glass:hover,
.section .btn-glass:not(.hero-slide .btn-glass):not(.refined-section .btn-glass):hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-light); transform: translateY(-2px);
}

/* ── FEAT HCARD ICON ALIGNMENT ── */
.feat-hcard-ico { display: flex; align-items: center; justify-content: center; }
.feat-hcard-ico i { font-size: 20px; }


/* ── CAT FEAT ICON ALIGNMENT ── */
.cat-feat-ico { display: flex; align-items: center; justify-content: center; font-size: 20px; }

/* ── DAY ROW ICON ALIGNMENT ── */
.day-ico { display: flex; align-items: center; justify-content: center; }
.day-ico i { font-size: 15px; }

/* ── CARD HOVER GLOW ── */
.svc-card:hover {
  box-shadow: 0 24px 64px rgba(233,69,96,0.09), 0 8px 32px rgba(0,0,0,0.07);
}
.why-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.11), 0 0 0 1px rgba(233,69,96,0.14);
}

/* ── TRUST STAT HOVER ── */
.stat-item { transition: background var(--t); }
.stat-item:hover { background: rgba(233,69,96,0.025); }

/* ── FOOTER LINK HOVER INDENT ── */
.footer-links a { transition: var(--t), padding-left 0.22s ease; }
.footer-links a:hover { padding-left: 7px; }

/* ── PLAN HOT BADGE ── */
.plan-hot-badge { display: inline-flex; align-items: center; gap: 5px; }

/* ── BETTER FOCUS STATES ── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; border-radius: 50px; }

/* ── SCROLL REVEAL UTILITY ── */
.s-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.s-reveal.in  { opacity: 1; transform: translateY(0); }
.s-reveal.d1  { transition-delay: 0.1s; }
.s-reveal.d2  { transition-delay: 0.2s; }
.s-reveal.d3  { transition-delay: 0.3s; }

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .orb-blob, .orb-blob-1, .orb-blob-2, .orb-blob-3,
  .s-orb, .s-orb-r, .s-orb-l { display: none !important; }
  .gradient-text { animation: none !important; }
  .plan-card.hot { animation: none !important; }
  .hero-grid-pattern { display: none !important; }
}

/* ── PAGE LOADER ── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #06060f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}
#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Diagonal fiber cable lines in background */
#page-loader::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0px,
      transparent 120px,
      rgba(233,69,96,0.04) 120px,
      rgba(233,69,96,0.04) 121px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 200px,
      rgba(100,150,255,0.03) 200px,
      rgba(100,150,255,0.03) 201px
    );
  animation: loaderBgDrift 8s linear infinite;
  pointer-events: none;
}

/* Horizontal scan sweep */
#page-loader::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(233,69,96,0.25) 50%, transparent 100%);
  animation: scanSweep 2.8s linear infinite;
  pointer-events: none;
}

@keyframes loaderBgDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(121px); }
}
@keyframes scanSweep {
  0%   { top: -2px; }
  100% { top: 100%; }
}

.loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Logo + brand name */
.loader-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.loader-logo-wrap img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(233,69,96,0.5));
  animation: loaderLogoPulse 2s ease-in-out infinite;
}
.loader-brand {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.loader-brand span { color: #e94560; }

/* Fiber optic cable track */
.fiber-cable {
  position: relative;
  width: 300px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
}

/* Endpoint glow nodes */
.fiber-cable::before,
.fiber-cable::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(233,69,96,0.4);
  box-shadow: 0 0 6px 2px rgba(233,69,96,0.3);
}
.fiber-cable::before { left: -3px; }
.fiber-cable::after  { right: -3px; }

/* The racing light beam */
.fiber-beam {
  position: absolute;
  top: 50%;
  left: -55%;
  transform: translateY(-50%);
  width: 55%;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent                  0%,
    rgba(233,69,96,0.1)         15%,
    rgba(233,69,96,0.6)         40%,
    #e94560                     60%,
    #ff7a9a                     72%,
    #ffffff                     78%,
    #ff7a9a                     84%,
    rgba(233,69,96,0.6)         92%,
    transparent                100%
  );
  box-shadow: 0 0 10px 3px rgba(233,69,96,0.7), 0 0 30px 8px rgba(233,69,96,0.25);
  animation: fiberBeam 1.3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Bright leading photon particle */
.fiber-photon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 3px rgba(255,255,255,0.9), 0 0 16px 6px rgba(233,69,96,0.8);
  animation: fiberPhoton 1.3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes fiberBeam {
  0%   { left: -55%; }
  100% { left: 105%; }
}
@keyframes fiberPhoton {
  0%   { left: 0%; }
  100% { left: 100%; }
}
@keyframes loaderLogoPulse {
  0%, 100% { opacity: 0.85; transform: scale(1);    filter: drop-shadow(0 0 10px rgba(233,69,96,0.4)); }
  50%       { opacity: 1;    transform: scale(1.05); filter: drop-shadow(0 0 18px rgba(233,69,96,0.7)); }
}

/* Status text */
.loader-text {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.loader-dots::after {
  content: '';
  animation: loaderDots 1.5s steps(4, end) infinite;
}
@keyframes loaderDots {
  0%  { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE ADDITIONS
   ============================================================ */

/* ── GLOBAL OVERFLOW GUARD ── */
img, video, iframe { max-width: 100%; }

/* ── UTILITY: Two-column grid used across pages ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── MEDIUM SCREENS: slim the navbar ── */
@media (max-width: 960px) {
  .btn-nav-login { display: none; }
}

/* ── TABLET (≤ 768px) ── */
@media (max-width: 768px) {
  /* Grids that aren't yet single-column */
  .svc-grid { grid-template-columns: 1fr; }
  .grid-2col { grid-template-columns: 1fr; }

  /* Speed section inner box */
  .speed-wrap { padding: 32px 24px; }

  /* Last speed card has inline grid-column:span 2; override so it doesn't
     create a phantom 2nd implicit column in a 1-col grid */
  .speed-feat-card:last-child { grid-column: span 1 !important; }

  /* Plans sticky type-bar — navbar is now 66 px tall, no topbar */
  .plan-type-bar { top: 66px; }

  /* Coverage chip grid stays 2-col on tablet */
  .loc-grid { grid-template-columns: 1fr 1fr; }

  /* OTT logo grid: already 3-col at 1024px; stay 2-col at 768 */
  .ott-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SMALL TABLET / LARGE PHONE (≤ 640px) ── */
@media (max-width: 640px) {
  .speedtest-box { padding: 28px 18px; }
  .speedtest-btn { padding: 14px 24px; font-size: 15px; }

  /* Speed Explorer: start reducing num size and tick labels */
  .speed-num { font-size: 72px; }
  .speed-ticks { font-size: 11px; }

  .plans-hero { padding: 90px 0 52px; }

  /* Slide price badge: allow wrapping on narrow phones */
  .slide-price-badge { flex-wrap: wrap; gap: 8px; padding: 10px 14px; }
  .spb-price {
    border-left: none; padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.15); padding-top: 8px;
    width: 100%; font-size: 18px;
  }
}

/* ── MOBILE (≤ 480px) ── */
@media (max-width: 480px) {
  /* Container & section breathing room */
  .container { padding: 0 16px; }
  .section    { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  /* Sub-page hero */
  .page-hero { padding: 110px 0 48px; }
  .page-hero p { font-size: 14px; }

  /* Referral card */
  .ref-amount { font-size: 52px; }
  .ref-title  { font-size: 22px; }
  .referral-card { padding: 40px 18px; }

  /* Accordion */
  .acc-hd  { padding: 16px 16px; font-size: 14px; }
  .acc-body { padding: 0 16px 18px; }

  /* Loader fiber cable */
  .fiber-cable { width: min(280px, calc(100vw - 80px)); }

  /* PBTV dark hero card */
  .pbtv-hero { padding: 22px 16px; border-radius: 14px; }
  .pbtv-stat-num { font-size: 22px; }

  /* Speed Explorer section */
  .speed-wrap { padding: 24px 16px; }
  .speed-num { font-size: 48px; }
  .speed-unit { font-size: 16px; }
  .speed-ticks { font-size: 10px; }
  .speed-feat-card { padding: 14px; gap: 10px; }
  .speed-feat-icon { width: 36px; height: 36px; font-size: 15px; }
  .speed-feat-val { font-size: 13px; }

  /* Footer */
  .footer { padding: 52px 0 24px; }
  .footer-grid { gap: 24px; }

  /* Float buttons */
  .wa-btn  { right: 16px; }
  .ai-orb  { right: 16px; }
  .ai-panel { width: calc(100vw - 32px); right: 16px; }

  /* Plans tab bar */
  .plan-type-bar .ptab { padding: 12px 16px; font-size: 13px; }
  .dtab { padding: 7px 14px; font-size: 12px; }

  /* OTT logos stay 2-col */
  .ott-logos-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why cards: stay 2-col until they truly need 1 */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── VERY SMALL PHONES (≤ 360px) ── */
@media (max-width: 360px) {
  .why-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .mob-contact-row { grid-template-columns: 1fr; }
  .slide-ctas .btn { width: 100%; justify-content: center; }
  .plan-hot-badge { font-size: 9px; }

  /* Speed Explorer: maximum compression for tiny screens */
  .speed-num { font-size: 40px; }
  .speed-wrap { padding: 18px 12px; }
  .speed-ticks { font-size: 9px; }
  .speed-feat-card { padding: 10px; gap: 8px; }
  .speed-feat-icon { width: 30px; height: 30px; font-size: 13px; }
}
