﻿/* ==========================================================================
   iptv kopen — Official Design System (Electric Emerald + Cyber Cyan)
   Domain: iptvkopen.online | Theme: Electric Dark
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --emerald: #00FF87;
  --cyan: #00D2FF;
  --bg-main: #05080E;
  --bg-surface: #0B111D;
  --bg-card: #0F1726;
  --bg-card-hover: #141F33;
  --border: rgba(0, 255, 135, 0.15);
  --border-cyan: rgba(0, 210, 255, 0.25);
  --border-active: #00FF87;
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --grad-primary: linear-gradient(135deg, #00FF87 0%, #00D2FF 100%);
  --grad-hover: linear-gradient(135deg, #15ff93 0%, #29d8ff 100%);
  --glow-emerald: 0 0 25px rgba(0, 255, 135, 0.35);
  --glow-cyan: 0 0 25px rgba(0, 210, 255, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --tp-green: #00B67A;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 255, 135, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 40%, rgba(0, 210, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(0, 255, 135, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font: inherit;
}

section {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

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

/* Typography */
h1, h2, h3, h4, .font-heading {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #05080E;
  box-shadow: 0 4px 20px rgba(0, 255, 135, 0.28);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: var(--glow-emerald);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid var(--border-cyan);
}

.btn-secondary:hover {
  background: rgba(0, 210, 255, 0.1);
  border-color: var(--cyan);
  transform: scale(1.03);
  box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   Urgency Top Banner
   ========================================================================== */
.urgency-banner {
  --gold: #F6C453;
  --gold2: #E8A020;
  --ink: #1A1206;
  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, #F3B23A 45%, #E8A020);
  color: var(--ink);
  font: 600 13.5px/1.3 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .01em;
  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: var(--ink);
  color: var(--gold);
  font: 800 11px 'Space Grotesk', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}

.ub-flag svg { width: 13px; height: 13px; }
.ub-text { z-index: 1; }
.ub-text b { font-weight: 800; }

/* ==========================================================================
   Header & Floating Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  background: rgba(5, 8, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.3s ease;
}

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

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.header__brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

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

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

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

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

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

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

.header__nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.header__nav-link:hover, .header__nav-link.active {
  color: var(--emerald);
}

.header__cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.header__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer */
.header__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: #090E18;
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

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

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

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

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

.header__mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
}

.header__mobile-nav-link:hover, .header__mobile-nav-link.active {
  color: var(--emerald);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 70px 0 60px;
  box-sizing: border-box;
}

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

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

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 14, 0.8) 0%, rgba(5, 8, 14, 0.95) 80%, #05080E 100%);
  z-index: 1;
}

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

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.25);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 20px;
}

.hero__h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero__desc {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero__server-capacity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 77, 0.12);
  border: 1px solid rgba(255, 77, 77, 0.35);
  color: #FF5A5A;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__quote-box {
  background: rgba(15, 23, 38, 0.6);
  border-left: 3px solid var(--emerald);
  padding: 12px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: #CBD5E1;
  margin-bottom: 30px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Flash Sale Card Component */
.flash-card {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(160deg, #141B28 0%, #0B101A 100%);
  border: 1.5px solid rgba(0, 255, 135, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 50px rgba(0, 255, 135, 0.12), 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.flash-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.22), transparent 70%);
  pointer-events: none;
}

.flash-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #00FF87, #00D2FF);
  color: #05080E;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  animation: flash-pulse 1.6s ease-in-out infinite;
}

@keyframes flash-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(0, 255, 135, 0); }
}

.flash-sub {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

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

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

.cd-num {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: 'Space Grotesk', sans-serif;
}

.cd-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

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

.btn-claim {
  display: block;
  background: var(--grad-primary);
  color: #05080E;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(0, 255, 135, 0.35);
}

.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-emerald);
}

/* ==========================================================================
   Pure CSS Scroll-Snap Carousels & Galleries
   ========================================================================== */
.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.carousel:active {
  cursor: grabbing;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.carousel-item:hover {
  border-color: var(--emerald);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 255, 135, 0.15);
}

/* Aspect Ratios strictly according to prompt */
.carousel--logos .carousel-item {
  width: 180px;
}
.carousel--logos img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 12px;
}

.carousel--movies .carousel-item {
  width: 190px;
}
.carousel--movies img {
  aspect-ratio: 1 / 1.482;
  object-fit: cover;
}

.carousel--sport .carousel-item {
  width: 220px;
}
.carousel--sport img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.carousel--devices .carousel-item {
  width: 220px;
  text-align: center;
  padding: 16px;
}
.carousel--devices img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.carousel--preview .carousel-item {
  width: min(480px, 85vw);
}
.carousel--preview img {
  aspect-ratio: 2.22 / 1;
  object-fit: cover;
}

.carousel--wtsp .carousel-item {
  width: 260px;
}
.carousel--wtsp img {
  aspect-ratio: 473 / 1024;
  object-fit: cover;
}

.carousel--reviews .carousel-item {
  width: 320px;
}
.carousel--reviews img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ==========================================================================
   Comparison Table Section
   ========================================================================== */
.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

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

.compare-table th, .compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
}

.compare-table th.highlight, .compare-table td.highlight {
  background: rgba(0, 255, 135, 0.05);
  color: #FFFFFF;
  font-weight: 700;
  border-left: 1px solid rgba(0, 255, 135, 0.2);
  border-right: 1px solid rgba(0, 255, 135, 0.2);
}

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

.check-green {
  color: var(--emerald);
  font-weight: 700;
}

.cross-red {
  color: #FF5A5A;
}

/* ==========================================================================
   Pricing Section & Screen Selector
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 38, 0.4) 50%, transparent 100%);
}

.screens-selector-wrap {
  margin-bottom: 40px;
}

.screens-selector-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

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

.screens-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.screen-card {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  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(--cyan);
  transform: translateY(-2px);
}

.screen-card.active {
  border-color: var(--emerald);
  background: linear-gradient(180deg, rgba(0, 255, 135, 0.12) 0%, rgba(15, 23, 38, 0.9) 100%);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.3);
}

.screen-card .num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #FFFFFF;
}

.screen-card.active .num {
  color: var(--emerald);
}

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

.screen-card .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: #1A2436;
  color: var(--text-muted);
}

.screen-card.active .badge {
  background: var(--emerald);
  color: #05080E;
}

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

.plan-card {
  position: relative;
  background: linear-gradient(180deg, #101827 0%, #0B111D 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

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

.plan-card.featured {
  border-color: var(--emerald);
  box-shadow: 0 0 35px rgba(0, 255, 135, 0.2);
}

.plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #05080E;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-dur {
  font-size: 1.25rem;
  font-weight: 700;
  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: 700;
  color: var(--emerald);
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #FFFFFF;
  line-height: 1;
}

.plan-card.featured .plan-price {
  color: var(--emerald);
}

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

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

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}

.plan-feature-item.strike {
  color: var(--text-dim);
  text-decoration: line-through;
}

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

/* Horizontal 1-Month Plan Card */
.plan-card-horizontal {
  background: linear-gradient(180deg, #101827 0%, #0B111D 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

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

.plan-breakdown-bar {
  background: rgba(0, 255, 135, 0.06);
  border: 1px solid rgba(0, 255, 135, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.plan-breakdown-text {
  font-size: 1.05rem;
}

.plan-breakdown-savings {
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.95rem;
}

.payment-icons-wrap {
  max-width: 580px;
  margin: 20px auto 0;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icons-img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Trustpilot Marquee & HTML Section
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
  overflow: hidden;
  background: #070B12;
}

.tp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tp-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.tp-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  flex-shrink: 0;
}

@media (max-width: 580px) {
  .tp-badge {
    display: inline-flex !important;
    max-width: calc(100% - 16px) !important;
    padding: 5px 8px !important;
    gap: 5px !important;
    border-radius: var(--radius-full) !important;
  }

  .tp-left {
    padding: 3px 7px 3px 3px !important;
    gap: 4px !important;
    font-size: 0.82rem !important;
  }

  .tp-left .tp-star-icon {
    font-size: 1rem !important;
  }

  .tp-right {
    padding: 3px 5px !important;
    gap: 6px !important;
    font-size: 0.8rem !important;
  }

  .tp-stars-row {
    gap: 2px !important;
  }

  .tp-stars-row span {
    width: 16px !important;
    height: 16px !important;
    font-size: 10px !important;
    border-radius: 3px !important;
  }
}

@media (max-width: 340px) {
  .tp-badge {
    flex-direction: column !important;
    border-radius: 12px !important;
    padding: 8px 10px !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .tp-left {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0 0 4px 0 !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .tp-right {
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

.tp-star-icon {
  color: var(--tp-green);
  font-size: 1.25rem;
}

.tp-stars-row, .rev-stars-row {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  flex-wrap: nowrap !important;
}

.tp-stars-row span, .rev-stars-row span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  background: var(--tp-green) !important;
  border-radius: 4px !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.rev-stars-row span.g {
  background: #3A3A3A;
}

.reviews-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
  will-change: transform;
}

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

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

.rev-card {
  flex: 0 0 auto;
  width: 380px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.rev-card-top {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  width: 100% !important;
}

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

.rev-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

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

.rev-author {
  font-weight: 700;
  margin-top: 18px;
  font-size: 0.95rem;
  color: #FFFFFF;
}

/* 3-Step Activation Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.2s ease;
}

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

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 255, 135, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

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

/* FAQ Section */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item:hover {
  border-color: var(--border-cyan);
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--emerald);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  display: none;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #030509;
  border-top: 1px solid rgba(0, 255, 135, 0.2);
  padding: 70px 0 30px;
  width: 100%;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--grad-primary);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.6);
}

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

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 16px 0 24px;
  line-height: 1.6;
}

.footer__col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer__col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--emerald);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer__link:hover {
  color: var(--emerald);
  transform: translateX(4px);
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* ==========================================================================
   Social Proof Popup (Bottom Left)
   ========================================================================== */
.sp-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 330px;
  width: calc(100% - 40px);
  background: rgba(15, 23, 38, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 135, 0.15);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 95;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: auto;
}

.sp-popup.visible {
  transform: translateX(0);
  opacity: 1;
}

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

.sp-avatar svg {
  width: 20px;
  height: 20px;
}

.sp-content {
  flex: 1;
  min-width: 0;
}

.sp-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-time {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 2px;
}

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

.sp-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  align-self: flex-start;
  transition: color 0.2s ease;
}

.sp-close:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 98;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.floating-wa svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   Responsive Adaptations & Mobile Phone Optimization
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__cta-row, .hero__trust-badge, .hero__server-capacity {
    justify-content: center;
  }

  .hero__quote-box {
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stats-row {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 10px 0;
  }
  .header__status-pill {
    display: none;
  }
  .header__brand-name {
    font-size: 1.25rem;
  }
  .header__nav {
    display: none;
  }
  .header__toggle {
    display: block;
  }

  .hero {
    padding: 36px 0 30px;
  }
  .hero__h1 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero__cta-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero__cta-row .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 1rem;
  }
  .hero__quote-box {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
  .hero__stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 18px;
  }
  .hero__stat-num {
    font-size: 1.35rem;
  }
  .hero__stat-label {
    font-size: 0.72rem;
  }

  .section-title {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }
  .section-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
  }
  .section-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  /* Carousels on Mobile Devices */
  .carousel {
    gap: 12px;
    padding: 6px 0 14px;
  }
  .carousel--logos .carousel-item { width: 130px; }
  .carousel--movies .carousel-item { width: 135px; }
  .carousel--sport .carousel-item { width: 160px; }
  .carousel--preview .carousel-item { width: min(300px, 82vw); }
  .carousel--devices .carousel-item { width: 145px; padding: 10px; }
  .carousel--reviews .carousel-item { width: min(280px, 82vw); padding: 14px; }
  .carousel--wtsp .carousel-item { width: 190px; }

  /* Trustpilot Marquee Cards on Mobile */
  .rev-card {
    width: min(300px, 82vw) !important;
    padding: 18px 16px !important;
  }
  .rev-title { font-size: 1.02rem; }
  .rev-text { font-size: 0.88rem; line-height: 1.5; }
  .rev-stars-row span {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
  }

  /* Screens Selector */
  .screens-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .screen-btn {
    padding: 10px 6px;
  }
  .screen-btn .num { font-size: 1.1rem; }
  .screen-btn .lbl { font-size: 0.72rem; }

  /* Steps and Plans */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .plan-card-horizontal {
    flex-direction: column;
    text-align: center;
  }
  .plan-card-horizontal .left {
    justify-content: center;
  }

  .pricing-card {
    padding: 24px 18px;
  }
  .pricing-card .btn {
    width: 100%;
    padding: 14px 18px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Urgency Banner */
  .urgency-banner {
    padding: 8px 12px;
    font-size: 11.5px;
    gap: 6px;
  }
  .ub-flag {
    font-size: 9.5px;
    padding: 2px 7px;
  }

  /* Floating WhatsApp Button on Mobile */
  .floating-wa {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }
  .floating-wa svg {
    width: 26px;
    height: 26px;
  }

  /* Social proof popup: positioned so it never blocks the WhatsApp button */
  .sp-popup {
    bottom: 78px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    max-width: 360px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .hero__h1 {
    font-size: 1.6rem !important;
  }
  .screens-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .screen-btn {
    padding: 8px 3px;
  }
  .screen-btn .num { font-size: 1rem; }
  .screen-btn .lbl { font-size: 0.68rem; }
  .screen-btn .badge { font-size: 0.58rem; padding: 1px 3px; }

  .flash-card {
    padding: 18px 12px;
  }
  .flash-sub {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .countdown {
    gap: 4px;
    margin-bottom: 18px;
  }
  .cd-block {
    width: 54px;
    padding: 6px 0;
  }
  .cd-num {
    font-size: 1.35rem;
  }
  .cd-label {
    font-size: 0.6rem;
  }
  .cd-sep {
    font-size: 1.1rem;
    padding-bottom: 8px;
  }
  .btn-claim {
    padding: 12px 14px;
    font-size: 0.92rem;
  }
}