/* ==========================================================================
   NORSK IPTV - FLAWLESS STYLESHEET (norskiptv.cc)
   Theme: Luxury Dark Cinema Â· Emerald #00C97A + Sky Cyan #00AEEF
   ========================================================================== */

:root {
  --primary: #00C97A;
  --primary-glow: rgba(0, 201, 122, 0.35);
  --primary-bright: #00FF9D;
  --secondary: #00AEEF;
  --secondary-glow: rgba(0, 174, 239, 0.3);
  --accent-gradient: linear-gradient(135deg, #00C97A 0%, #00AEEF 100%);
  --accent-gradient-hover: linear-gradient(135deg, #00db85 0%, #1ab8f5 100%);
  
  --bg-main: #0A0F1D;
  --bg-card: #121B2E;
  --bg-card-alt: #17233B;
  --bg-dark: #080C16;
  --bg-dark-card: #0F172A;
  --bg-footer: #070A12;
  
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-light: #F8FAFC;
  --text-dark: #FFFFFF;
  
  --border-light: rgba(0, 201, 122, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(255, 255, 255, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--primary-glow);
  
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 201, 122, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0, 174, 239, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 900px;
}

section {
  width: 100%;
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   TOP URGENCY BANNER
   ========================================================================== */
.urgency-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 9px 16px;
  background: linear-gradient(90deg, #F6C453, #F3B23A 45%, #E8A020);
  color: #1A1206;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  z-index: 100;
}

.urgency-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.45) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: sheen 4.5s ease-in-out infinite;
}

@keyframes sheen {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.ub-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1A1206;
  color: #F6C453;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ub-flag svg { width: 13px; height: 13px; }
.ub-text b { color: #000; }

/* ==========================================================================
   DARK GLASSMORPHIC HEADER & MOBILE DRAWER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 15, 29, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 201, 122, 0.25);
  z-index: 990;
  transition: all 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0, 201, 122, 0.4);
}

.header__brand-name {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header__brand-name span {
  color: var(--primary);
}

.header__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 201, 122, 0.12);
  border: 1px solid rgba(0, 201, 122, 0.4);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: #00FF9D;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.header__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #00FF9D;
  box-shadow: 0 0 8px #00FF9D;
  animation: pulse-dot 1.8s infinite ease-in-out;
}

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

.header__nav {
  display: flex;
  align-items: center;
}

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

.header__nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #94A3B8;
  padding: 6px 2px;
  transition: color 0.2s ease;
  position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: #00FF9D;
}

.header__nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.header__cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 201, 122, 0.45);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #FFFFFF;
  transition: all 0.2s ease;
  padding: 0;
}

.header__toggle:hover,
.header__toggle:active {
  background: rgba(0, 201, 122, 0.25);
  border-color: var(--primary);
  color: #00FF9D;
}

.header__toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.2;
  display: block;
}

/* Mobile Menu Drawer */
.header__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__mobile-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: #0A0F1D;
  border-left: 1px solid rgba(0, 201, 122, 0.3);
  z-index: 99999;
  padding: 24px 20px 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.85);
}

.header__mobile-menu.active {
  transform: translateX(0) !important;
}

.header__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__mobile-top .header__brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.header__mobile-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  color: #CBD5E1;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.header__mobile-close:hover,
.header__mobile-close:active {
  color: #FFFFFF;
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
}

.header__mobile-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 122, 0.1);
  border: 1px solid rgba(0, 201, 122, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: #00FF9D;
  margin-bottom: 18px;
  width: fit-content;
}

.header__mobile-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #00FF9D;
  box-shadow: 0 0 6px #00FF9D;
}

.header__mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.header__mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.header__mobile-nav-link:hover,
.header__mobile-nav-link:active {
  color: #00FF9D;
  background: rgba(0, 201, 122, 0.08);
}

.header__mobile-nav-link.active {
  color: #00FF9D;
  background: rgba(0, 201, 122, 0.12);
  border-left: 3px solid #00C97A;
  font-weight: 700;
}

.header__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
  .header__nav { display: none !important; }
  .header__status-pill { display: none !important; }
  .header__toggle { display: inline-flex !important; }
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 44px;
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 201, 122, 0.45);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 201, 122, 0.15);
  color: #00FF9D;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  border: 1px solid rgba(0, 201, 122, 0.3);
}

.hex-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 201, 122, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: #FFFFFF;
}

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

.section-title {
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.section-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--bg-dark);
  color: #FFFFFF;
  padding: 20px 0 60px;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-video-wrap iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.28;
  filter: saturate(1.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.65) 0%, rgba(10, 15, 29, 0.95) 100%);
  z-index: 1;
}

.hero-content-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 2;
}

.hero-quote-box {
  background: rgba(0, 201, 122, 0.08);
  border-left: 3px solid var(--primary);
  padding: 8px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: #E2E8F0;
  font-style: italic;
}

.hero-title {
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.hero-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-floating-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  backdrop-filter: blur(8px);
}

.hero-stat-pill {
  font-size: 0.82rem;
  color: #CBD5E1;
}

.hero-stat-pill b {
  color: var(--primary);
}

/* Flash Sale Card UI */
.flash-card {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(160deg, #182235 0%, #0d1522 100%);
  border: 1px solid rgba(0, 201, 122, 0.4);
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 201, 122, 0.18), 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.flash-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  animation: flash-pulse 1.8s ease-in-out infinite;
}

@keyframes flash-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 201, 122, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(0, 201, 122, 0); }
}

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

.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: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px 0;
  width: 64px;
}

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

.cd-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.btn-claim {
  display: block;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px var(--primary-glow);
  transition: transform 0.15s ease;
}

.btn-claim:hover {
  transform: scale(1.02);
  color: #FFFFFF;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: #CBD5E1;
  font-weight: 600;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   CAROUSELS (CONTINUOUS INFINITE MARQUEE)
   ========================================================================== */
.carousel-container,
.hero-carousel-wrap,
.reviews-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 16px;
  -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);
}

.hero-carousel-wrap {
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-carousel-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  text-align: center;
  margin-bottom: 14px;
}

.carousel-track,
.reviews-track,
.carousel--logos {
  display: flex !important;
  gap: 16px !important;
  width: max-content !important;
  will-change: transform !important;
  animation: carouselSlideLeft 35s linear infinite !important;
}

.carousel-container:hover .carousel-track,
.hero-carousel-wrap:hover .carousel--logos,
.reviews-track-wrap:hover .reviews-track,
.carousel-track:hover,
.reviews-track:hover {
  animation-play-state: paused !important;
}

@keyframes carouselSlideLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes reviewsSlideLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.reviews-track {
  animation: reviewsSlideLeft 40s linear infinite !important;
}

.carousel-item {
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.carousel-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 22px rgba(0, 201, 122, 0.25);
  border-color: var(--primary);
}

.carousel--logos { animation-duration: 25s !important; }
.carousel--logos .carousel-item {
  width: 130px;
  height: 68px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.carousel--logos img { max-width: 90%; max-height: 90%; object-fit: contain; }

.carousel--movies { animation-duration: 32s !important; }
.carousel--movies .carousel-item { width: 170px; border-radius: 12px; }
.carousel--movies img { width: 100%; aspect-ratio: 1 / 1.48; object-fit: cover; }

.section--dark { background: var(--bg-dark); color: #FFFFFF; }
.section--dark .section-title { color: #FFFFFF; }
.section--dark .section-desc { color: #94A3B8; }

.carousel--sport { animation-duration: 38s !important; }
.carousel--sport .carousel-item { width: 200px; background: #0E1626; border-color: rgba(255, 255, 255, 0.1); }
.carousel--sport img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }

.carousel--preview { animation-duration: 45s !important; }
.carousel--preview .carousel-item { width: 380px; max-width: 85vw; }
.carousel--preview img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.carousel--trustpilot { animation-duration: 30s !important; }
.carousel--trustpilot .carousel-item { width: 360px; max-width: 85vw; }
.carousel--trustpilot img { width: 100%; aspect-ratio: 2.45 / 1; object-fit: cover; }

.carousel--devices { animation-duration: 28s !important; }
.carousel--devices .carousel-item {
  width: 170px;
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.carousel--devices img { width: 70px; height: 70px; object-fit: contain; }
.carousel--devices .device-name { font-weight: 700; font-size: 0.9rem; color: #FFFFFF; }

.carousel--wtsp { animation-duration: 35s !important; }
.carousel--wtsp .carousel-item { width: 200px; border-radius: 14px; }
.carousel--wtsp img { width: 100%; aspect-ratio: 9 / 19.5; object-fit: cover; }

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.compare-table-wrap, .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-card);
  border: 1px solid rgba(0, 201, 122, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 24px;
}

.compare-table, .comp-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

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

.compare-table th, .comp-table th {
  background: var(--bg-card-alt);
  font-weight: 800;
  color: #FFFFFF;
}

.compare-table td, .comp-table td {
  color: var(--text-main);
}

.compare-table th.highlight, .compare-table td.highlight, .comp-table .col-brand, .comp-table .brand-val {
  background: rgba(0, 201, 122, 0.12);
  color: #00FF9D;
  font-weight: 800;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.check-green { color: #00FF9D; font-weight: 700; }
.cross-red { color: #EF4444; }

/* ==========================================================================
   INTERACTIVE PRICING SECTION & MULTI-SCREEN SELECTOR
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 201, 122, 0.03) 50%, transparent 100%);
}

.screens-selector-wrap, .screen-selector-wrap {
  text-align: center;
  margin-bottom: 35px;
}

.screens-selector-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.screens-selector-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 24px;
}

.screens-grid, .screen-selector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.screen-card {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 10px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.screen-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  background: var(--bg-card-alt);
}

.screen-card.active {
  border-color: var(--primary);
  background: rgba(0, 201, 122, 0.12);
  box-shadow: 0 0 20px var(--primary-glow);
}

.screen-card .num, .screen-card .screen-count {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
}

.screen-card.active .num, .screen-card.active .screen-count {
  color: #00FF9D;
}

.screen-card .label, .screen-card .screen-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.screen-card .badge, .screen-card .screen-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
}

.screen-card.active .badge, .screen-card.active .screen-badge {
  background: var(--primary);
  color: #FFFFFF;
}

/* Plans Grid */
.plans-grid, .pricing-grid-3, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.plan-card, .pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.plan-card:hover, .pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-card.featured, .pricing-card.featured, .pricing-card.popular {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 10px 35px var(--primary-glow);
  background: linear-gradient(180deg, rgba(0, 201, 122, 0.1) 0%, var(--bg-card) 100%);
}

.plan-ribbon, .pricing-badge-popular, .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 10px var(--primary-glow);
}

.plan-dur, .plan-name, .plan-duration {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 6px;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.plan-price, .plan-price-current {
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.plan-card.featured .plan-price, .pricing-card.featured .plan-price {
  color: #00FF9D;
}

.plan-per-month, .plan-price-period, .per-month {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan-features, .pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  flex-grow: 1;
}

.plan-feature-item, .pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.plan-feature-item.strike, .pricing-features-list li.excluded {
  color: var(--text-muted);
  text-decoration: line-through;
}

.plan-cta-wrap, .pricing-cta-wrap {
  margin-top: auto;
}

/* Horizontal 1-Month Card */
.plan-card-horizontal, .pricing-card-horizontal {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.plan-card-horizontal .left, .pch-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.plan-breakdown-bar, .price-breakdown-bar {
  background: rgba(0, 201, 122, 0.1);
  border: 1px solid rgba(0, 201, 122, 0.35);
  border-radius: var(--radius-md);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.plan-breakdown-text, .pbb-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.plan-breakdown-savings, .pbb-savings {
  font-size: 0.88rem;
  font-weight: 700;
  color: #00FF9D;
  margin-top: 2px;
}

.payment-icons-wrap, .payment-icons-container {
  text-align: center;
  margin-top: 25px;
}

.payment-icons-img {
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: brightness(0.95);
}

/* ==========================================================================
   3-STEP ACTIVATION & FEATURES
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.feature-icon-box {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

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

.faq-item:hover {
  border-color: rgba(0, 201, 122, 0.35);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  background: none;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   REVIEWS & RATINGS
   ========================================================================== */
.reviews-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 35px;
}

.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

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

.tp-star-icon { font-size: 1.2rem; }
.tp-right { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.tp-stars-row { color: #00FF9D; font-size: 1rem; letter-spacing: 2px; }
.tp-score { font-weight: 700; color: #FFFFFF; }

.rev-card {
  flex: 0 0 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rev-card-top { display: flex; align-items: center; justify-content: space-between; }
.rev-stars-row { color: #00FF9D; font-size: 1rem; letter-spacing: 2px; }
.rev-date { font-size: 0.78rem; color: var(--text-muted); }
.rev-title { font-weight: 700; font-size: 0.98rem; color: #FFFFFF; }
.rev-text { font-size: 0.88rem; color: #CBD5E1; line-height: 1.5; flex: 1; }
.rev-author { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); }

.customer-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.customer-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crc-header { display: flex; align-items: center; justify-content: space-between; }
.crc-author { font-weight: 700; color: #FFFFFF; font-size: 0.95rem; }
.crc-location { font-size: 0.78rem; color: var(--text-muted); }
.crc-verified {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00FF9D;
  background: rgba(0, 201, 122, 0.15);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.crc-stars { color: #F59E0B; letter-spacing: 2px; }
.crc-body { font-size: 0.88rem; color: #CBD5E1; line-height: 1.5; }
.crc-img { border-radius: var(--radius-sm); overflow: hidden; margin-top: 4px; }
.crc-img img { width: 100%; height: 160px; object-fit: cover; }

.reviews-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
}
.reviews-summary-badge .stars { color: #F59E0B; letter-spacing: 2px; }

/* ==========================================================================
   SEO PILLAR TEXT
   ========================================================================== */
.seo-text-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.seo-text-card h2 { font-size: 1.6rem; font-weight: 800; color: #FFFFFF; margin: 24px 0 12px; }
.seo-text-card h2:first-child { margin-top: 0; }
.seo-text-card p { font-size: 0.95rem; color: #CBD5E1; line-height: 1.7; margin-bottom: 16px; }
.seo-text-card ul { margin: 12px 0 20px 20px; color: #CBD5E1; line-height: 1.7; }
.seo-text-card li { margin-bottom: 6px; }

/* ==========================================================================
   FLOATING ELEMENTS (WHATSAPP & SOCIAL PROOF)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 20px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 995;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-proof-popup {
  position: fixed;
  bottom: 82px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 980;
  max-width: 330px;
  animation: slide-up-fade 0.4s ease;
}

@keyframes slide-up-fade {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.sp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.sp-content { font-size: 0.82rem; }
.sp-title { font-weight: 700; color: #FFFFFF; line-height: 1.3; }
.sp-meta { color: var(--text-muted); font-size: 0.72rem; margin-top: 2px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GENERIC CONTENT PAGES (Subpages, Blog, Legal)
   ========================================================================== */
.page-hero {
  background: var(--bg-card-alt);
  padding: 45px 0 35px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--primary); font-weight: 600; }

.content-article {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 35px auto;
  box-shadow: var(--shadow-sm);
}

.content-article h1 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; margin-bottom: 18px; color: #FFFFFF; }
.content-article h2 { font-size: 1.4rem; font-weight: 800; margin: 28px 0 14px; color: #FFFFFF; }
.content-article h3 { font-size: 1.15rem; font-weight: 700; margin: 20px 0 10px; color: #FFFFFF; }
.content-article p { font-size: 0.96rem; line-height: 1.75; color: #CBD5E1; margin-bottom: 18px; }
.content-article strong, .content-article b { color: #FFFFFF; font-weight: 700; }
.content-article ul, .content-article ol { margin: 16px 0 20px 20px; color: #CBD5E1; line-height: 1.75; }
.content-article li { margin-bottom: 6px; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
  .header__nav { display: none !important; }
  .header__status-pill { display: none !important; }
  .header__toggle { display: inline-flex !important; }
  .header__inner { height: 64px; padding: 0 16px; }
  
  .hero-content-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-btn-row { justify-content: center; }
  .hero-quote-box { text-align: left; }
  .hero-floating-stats { justify-content: center; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }
  .container { padding: 0 16px; }

  .header__inner { padding: 0 14px; }
  .header__brand-name { font-size: 1.15rem; }
  .header__logo { width: 32px; height: 32px; }
  .header__status-pill { display: none !important; }
  .header__cta-wrap .btn { padding: 8px 14px; font-size: 0.82rem; }

  .hero-section { padding: 15px 0 45px; }
  .hero-btn-row { flex-direction: column; width: 100%; }
  .hero-btn-row .btn { width: 100%; }

  .screen-selector-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .screen-card { padding: 10px 4px; min-height: 58px; }
  .screen-count { font-size: 1.15rem; }

  .pricing-card-horizontal { flex-direction: column; text-align: center; padding: 18px 16px; gap: 14px; }
  .pch-left { flex-direction: column; }
  .pch-right { width: 100%; flex-direction: column; gap: 10px; }
  .pch-right .btn { width: 100%; }

  .price-breakdown-bar { flex-direction: column; text-align: center; padding: 16px; gap: 12px; }
  .price-breakdown-bar .btn { width: 100%; }

  .carousel--movies .carousel-item { width: 140px; }
  .carousel--sport .carousel-item { width: 160px; }
  .carousel--preview .carousel-item { width: 280px; }
  .carousel--trustpilot .carousel-item { width: 280px; }
  .carousel--devices .carousel-item { width: 140px; }
  .carousel--wtsp .carousel-item { width: 170px; }

  .rev-card { flex: 0 0 280px; padding: 18px; }
  .content-article { padding: 22px 16px; margin: 20px auto; }
  .seo-text-card { padding: 24px 18px; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; bottom: 18px; right: 16px; border-radius: 50%; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  .social-proof-popup { bottom: 84px; left: 12px; right: 12px; max-width: calc(100vw - 24px); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .header__inner { height: 60px; padding: 0 12px; }
  .header__brand-name { font-size: 1.1rem; }
  .header__cta-wrap .btn-primary { display: none !important; }
  .flash-card { padding: 20px 14px; }
  .cd-block { width: 52px; }
  .cd-num { font-size: 1.35rem; }
  .tp-badge { flex-direction: column; gap: 6px; padding: 10px 16px; }
}
