/* ==========================================================================
   NORDIC IPTV BOX - Master Stylesheet
   Electric Emerald (#00FF87) + Cyber Cyan (#00D2FF) · Rich Nordic Navy (#0C1427)
   Attractive, secure, high-conversion glassmorphism UI
   ========================================================================== */

:root {
  --bg-main: #0C1427;
  --bg-card: #14213D;
  --bg-card-alt: #192A4D;
  --bg-glass: rgba(20, 33, 61, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(0, 255, 135, 0.3);
  --border-cyan: rgba(0, 210, 255, 0.35);
  
  --emerald: #00FF87;
  --cyan: #00D2FF;
  --grad-primary: linear-gradient(135deg, #00FF87 0%, #00D2FF 100%);
  --grad-glow: linear-gradient(135deg, rgba(0, 255, 135, 0.2) 0%, rgba(0, 210, 255, 0.2) 100%);
  --grad-dark: linear-gradient(180deg, #101D38 0%, #0C1427 100%);
  
  --text-main: #F4F8FC;
  --text-muted: #9BB0C7;
  --text-dark: #0A1124;
  
  --radius-sm: 8px;
  --radius-btn: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  
  --shadow-glow: 0 0 25px rgba(0, 255, 135, 0.35);
  --shadow-cyan: 0 0 25px rgba(0, 210, 255, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  background: radial-gradient(circle at 50% 0%, #15254A 0%, #0C1427 100%);
  background-color: var(--bg-main);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Section Box Model */
section, header, footer, main, nav, article {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

img, picture, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  color: var(--emerald);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); margin-bottom: 8px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }

p {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.98rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid var(--border-accent);
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Common Section Padding (Clean & Compact) */
section {
  padding: 50px 0;
}

/* Breadcrumbs Navigation */
.breadcrumbs {
  padding: 16px 0 0;
  margin-bottom: 24px;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.breadcrumbs li + li::before {
  content: "›";
  color: var(--emerald);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.breadcrumbs span {
  color: #FFFFFF;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0, 255, 135, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 255, 135, 0.45);
  color: var(--text-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-accent);
  color: #FFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   LUXURY TOP OFFER BANNER (High-converting Gold Sheen)
   ========================================================================== */
.urgency-banner {
  --gold: #F6C453;
  --gold2: #E8A020;
  --ink: #0E172C;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: linear-gradient(90deg, #F6C453 0%, #F3B23A 45%, #E8A020 100%);
  color: var(--ink);
  font: 700 13.5px/1.3 var(--font-main);
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: 0 2px 16px rgba(232, 160, 32, 0.25);
  border-bottom: 1px solid rgba(246, 196, 83, 0.4);
  z-index: 910;
}

/* moving reflective sheen */
.urgency-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: sheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.ub-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.ub-flag svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
}
.ub-text {
  z-index: 1;
  color: var(--ink);
  font-weight: 600;
}
.ub-text b {
  font-weight: 800;
}

/* ==========================================================================
   FLOATING NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 8, 14, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 900;
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.header__brand img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.header__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid var(--border-accent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
}

.header__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.header__nav-item a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.header__nav-item a:hover,
.header__nav-item a.active {
  color: #FFF;
  background: rgba(255, 255, 255, 0.06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-cyan);
  color: #FFF;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.header__toggle:hover {
  background: rgba(0, 255, 135, 0.15);
  border-color: var(--emerald);
  color: var(--emerald);
}

/* Mobile Menu */
.header__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 17, 36, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: #101D38;
  border-left: 1px solid var(--border-accent);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  padding: 24px 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.header__mobile-overlay.is-active,
.header__mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.header__mobile-menu.is-active,
.header__mobile-menu.is-open {
  right: 0;
}

.header__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.header__mobile-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  transition: all 0.2s ease;
}
.header__mobile-close:hover {
  background: rgba(255, 82, 82, 0.2);
  border-color: #FF5252;
  color: #FF5252;
}

.header__mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__mobile-list a {
  display: block;
  padding: 12px 16px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.header__mobile-list a.active,
.header__mobile-list a:hover {
  color: #FFF;
  background: rgba(0, 255, 135, 0.12);
  border-color: var(--border-accent);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 44px 0 34px;
  background: radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.15) 0%, transparent 70%), #0C1427;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 177.77vh;
  height: 56.25vw;
  min-height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  filter: brightness(0.8) contrast(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 20, 39, 0.6) 0%, rgba(12, 20, 39, 0.95) 100%);
  z-index: 1;
}

.hero__content-wrap {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero__urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 82, 82, 0.12);
  border: 1px solid rgba(255, 82, 82, 0.35);
  color: #FF5252;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid var(--border-accent);
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero__quote-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--emerald);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 14px 0 20px;
  color: #D1D9E0;
  font-size: 0.92rem;
  font-style: italic;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero__stats-row {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.hero__stat-item strong {
  display: block;
  font-size: 1.25rem;
  color: #FFF;
  font-weight: 800;
}

.hero__stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Flash Sale Card */
.flash-card {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(160deg, #111A29 0%, #080D15 100%);
  border: 1px solid rgba(0, 255, 135, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0, 255, 135, 0.12), 0 15px 30px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}

.flash-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-primary);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.flash-sub {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  width: 62px;
}

.cd-num {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.cd-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 700;
}

.cd-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: 12px;
}

.btn-claim {
  display: block;
  background: var(--grad-primary);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 20px rgba(0, 255, 135, 0.3);
}
.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 135, 0.45);
  color: var(--text-dark);
}

.hero__icons-section {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
  width: 100%;
}

.hero__icons-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ==========================================================================
   CAROUSEL MARQUEE ENGINE & PRECISE HEIGHTS (Compact & Proportional)
   ========================================================================== */
.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-track-reverse {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll-rev 45s linear infinite;
  will-change: transform;
}

.marquee-track-reverse:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* EXACT FIXED HEIGHTS FOR CAROUSELS (ENLARGED & CINEMATIC) */
.carousel--logos img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
}

.carousel--movies img {
  height: 320px;
  width: auto;
  aspect-ratio: 1 / 1.482;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.carousel--sport img {
  height: 300px;
  width: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.carousel--preview img {
  height: 240px;
  width: auto;
  aspect-ratio: 2.22 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.carousel--devices img {
  height: 110px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 10px;
}

.carousel--wtsp img {
  height: 420px;
  width: auto;
  aspect-ratio: 473 / 1024;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 255, 135, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  background: #0B1220;
}

.carousel--trustpilot img {
  height: 170px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: #0A101D;
  padding: 8px;
}

/* ==========================================================================
   COUNTRY PACKAGES GRID
   ========================================================================== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.country-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.country-card__flag-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  border: 2px solid rgba(0, 255, 135, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.country-card__flag-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #FFF;
}

.country-card__count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 8px;
  background: rgba(0, 255, 135, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.country-card p {
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.comparison-section {
  background: linear-gradient(180deg, #101D38 0%, #0C1427 100%);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.04);
  font-size: 1rem;
  font-weight: 800;
  color: #FFF;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(0, 255, 135, 0.06);
  border-left: 2px solid var(--emerald);
  border-right: 2px solid var(--emerald);
  color: #FFF;
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald);
  font-weight: 800;
}

/* ==========================================================================
   PRICING SECTION & SCREEN SELECTOR
   ========================================================================== */

.screen-selector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}

.screen-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.screen-card:hover,
.screen-card.active {
  border-color: var(--emerald);
  background: rgba(0, 255, 135, 0.05);
  box-shadow: 0 4px 15px rgba(0, 255, 135, 0.15);
}

.screen-card__count {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFF;
}

.screen-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.screen-card__badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
}

.plan-card.featured {
  border: 2px solid var(--emerald);
  background: linear-gradient(180deg, #0D1626 0%, #080E1A 100%);
  box-shadow: 0 0 30px rgba(0, 255, 135, 0.15);
}

.plan-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.plan-card__header {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.plan-card__duration {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 6px;
}

.plan-card__price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.plan-card__currency {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--emerald);
}

.plan-card__price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1;
}

.plan-card__breakdown {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.4;
}

.plan-card__features li svg {
  width: 15px;
  height: 15px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card-horizontal {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.price-breakdown-bar {
  background: #0A111E;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.price-breakdown-bar__text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
}

.price-breakdown-bar__savings {
  font-size: 0.78rem;
  color: var(--emerald);
  font-weight: 600;
}

.payment-icons-container {
  display: flex;
  justify-content: center;
  padding: 16px 0 0;
}
.payment-icons-container img {
  max-width: 440px;
  height: auto;
}

/* ==========================================================================
   TRUSTPILOT CAROUSEL & REVIEWS
   ========================================================================== */
.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #0d1522;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  margin-bottom: 20px;
}

.tp-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: #FFF;
  font-size: 0.9rem;
}

.tp-star-icon {
  color: #00b67a;
  font-size: 1.1rem;
}

.tp-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  border-left: 1px solid var(--border-subtle);
  padding-left: 12px;
}

.tp-stars-row {
  display: flex;
  gap: 2px;
}

.tp-stars-row span {
  width: 15px;
  height: 15px;
  background: #00b67a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  border-radius: 2px;
}

.tp-score {
  color: #FFF;
  font-weight: 700;
}

.rev-card {
  flex: 0 0 auto;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
}

.rev-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rev-stars-row {
  display: flex;
  gap: 2px;
}

.rev-stars-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #00b67a;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
}

.rev-date {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.rev-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.rev-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  flex: 1;
}

.rev-author {
  color: #fff;
  font-weight: 700;
  margin-top: 12px;
  font-size: 0.85rem;
}

/* ==========================================================================
   3-STEP ACTIVATION
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all 0.2s ease;
}

.step-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.step-card__num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.step-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 0;
}

/* ==========================================================================
   CUSTOMER REVIEWS (PHOTO CARDS)
   ========================================================================== */
.cust-rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.cust-rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
}

.cust-rev-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.cust-rev-card__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--emerald);
}

.cust-rev-card__user strong {
  display: block;
  color: #FFF;
  font-size: 0.92rem;
}

.cust-rev-card__user span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cust-rev-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 700;
}

.cust-rev-card p {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 0;
}

/* ==========================================================================
   HEX BADGES & 14 FEATURES
   ========================================================================== */
.hex-badge {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid var(--emerald);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--emerald);
  margin-bottom: 12px;
  transition: all 0.25s ease;
}

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

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: all 0.2s ease;
}

.feature-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.feature-item:hover .hex-badge {
  background: var(--grad-primary);
  color: var(--text-dark);
}

.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 0;
}

/* ==========================================================================
   FAQS ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 20px 16px 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #030509;
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 24px;
  color: var(--text-muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 36px;
}

.footer__brand-col p {
  font-size: 0.88rem;
  margin-top: 10px;
}

.footer__col h3 {
  font-size: 0.95rem;
  color: #FFF;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer__links a:hover {
  color: var(--emerald);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  line-height: 1.4;
  margin-bottom: 0;
}

/* ==========================================================================
   ENTERPRISE FLOATING WHATSAPP SUPPORT CONCIERGE
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(16, 29, 56, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 255, 135, 0.35);
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 135, 0.2);
  z-index: 950;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--emerald);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 135, 0.35);
  color: #FFFFFF;
}

.wf-avatar-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.wf-icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.wf-icon-circle svg {
  width: 21px;
  height: 21px;
  fill: #FFFFFF;
}

.wf-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background: #00FF87;
  border: 2px solid #101D38;
  border-radius: 50%;
  box-shadow: 0 0 8px #00FF87;
  animation: pulse-dot 1.8s infinite;
}

.wf-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.wf-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.wf-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 16, 29, 0.95);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 940;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.social-proof-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 255, 135, 0.15);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFF;
}

.sp-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sp-verified {
  font-size: 0.68rem;
  color: var(--emerald);
  font-weight: 700;
}

.sp-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 0 4px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__info {
    align-items: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats-row {
    justify-content: center;
  }
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-cards-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 20px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .screen-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__toggle {
    display: block;
  }
  .plan-card-horizontal {
    flex-direction: column;
    text-align: center;
  }
  .price-breakdown-bar {
    flex-direction: column;
    text-align: center;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .social-proof-popup {
    left: 10px;
    right: 10px;
    bottom: 75px;
  }
  .carousel--movies img {
    height: 240px;
  }
  .carousel--sport img {
    height: 230px;
  }
  .carousel--preview img {
    height: 170px;
  }
  .carousel--devices img {
    height: 85px;
  }
  .carousel--wtsp img {
    height: 320px;
  }
  .carousel--trustpilot img {
    height: 130px;
  }
}

@media (max-width: 480px) {
  .country-grid {
    grid-template-columns: 1fr;
  }
  .screen-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__stats-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero__stat-item {
    width: calc(50% - 6px);
  }
}

