/* ==========================================================================
   IPTV COTE NORD — MASTER STYLESHEET
   Colors: Neon Violet (#7928CA) + Electric Cyan (#00D2FF)
   Background: #08071A with deep atmospheric mesh gradient
   ========================================================================== */

:root {
  --bg-main: #08071a;
  --bg-card: rgba(18, 14, 40, 0.75);
  --bg-card-hover: rgba(26, 20, 58, 0.9);
  --bg-glass: rgba(14, 11, 32, 0.7);
  --accent-violet: #7928ca;
  --accent-cyan: #00d2ff;
  --accent-gradient: linear-gradient(135deg, #7928ca 0%, #00d2ff 100%);
  --accent-glow: rgba(121, 40, 202, 0.45);
  --cyan-glow: rgba(0, 210, 255, 0.35);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.48);
  --border-color: rgba(121, 40, 202, 0.3);
  --border-light: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Overflow Containment */
*, *::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(at 0% 0%, rgba(121, 40, 202, 0.2) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 210, 255, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(13, 11, 39, 1) 0px, var(--bg-main) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

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

/* Typography Helpers */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title-wrap {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(121, 40, 202, 0.18);
  border: 1px solid var(--border-color);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px var(--cyan-glow);
}

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

.btn-secondary:hover {
  background: rgba(121, 40, 202, 0.25);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* ==========================================================================
   URGENCY BANNER
   ========================================================================== */
.urgency-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: linear-gradient(90deg, #7928ca, #3b1464 45%, #00d2ff);
  color: #ffffff;
  font: 600 13px/1.3 var(--font-sans);
  letter-spacing: 0.02em;
  text-align: center;
  z-index: 101;
}

.urgency-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: sheen 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: #08071a;
  color: #00d2ff;
  border: 1px solid rgba(0, 210, 255, 0.4);
  font: 800 11px var(--font-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 1;
}

.ub-text {
  z-index: 1;
}

.ub-text b {
  font-weight: 800;
  color: #00d2ff;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 7, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(121, 40, 202, 0.25);
  transition: var(--transition);
}

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

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

.header__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 12px var(--accent-glow);
}

.header__brand-text {
  display: flex;
  flex-direction: column;
}

.header__brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.header__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.header__status-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: live-ping 1.8s infinite;
}

@keyframes live-ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* Unified Desktop Navigation */
.nav, .header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link, .header__nav-item a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}

.nav__link:hover, .nav__link.active,
.header__nav-item a:hover, .header__nav-item a.active {
  color: #ffffff;
}

.nav__link::after, .header__nav-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.25s ease;
}

.nav__link:hover::after, .nav__link.active::after,
.header__nav-item a:hover::after, .header__nav-item a.active::after {
  width: 100%;
}

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

/* Currency Select */
.currency-select-wrapper {
  position: relative;
}

.currency-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 8px 30px 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300d2ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.currency-select:hover, .currency-select:focus {
  border-color: var(--accent-cyan);
  background-color: rgba(121, 40, 202, 0.2);
}

.currency-select option {
  background: #0d0a24;
  color: #ffffff;
}

.header__cta {
  padding: 9px 18px;
  font-size: 0.90rem;
}

/* Hamburger Button */
.burger, .header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  z-index: 102;
  transition: var(--transition);
}

.burger:hover, .header__toggle:hover {
  background: rgba(121, 40, 202, 0.3);
  border-color: var(--accent-cyan);
}

.burger__bar {
  width: 22px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background-color 0.2s ease;
  transform-origin: center;
}

/* When burger is open */
.burger.is-active .burger__bar:nth-child(1),
.header__toggle.is-active .burger__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--accent-cyan);
}

.burger.is-active .burger__bar:nth-child(2),
.header__toggle.is-active .burger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.is-active .burger__bar:nth-child(3),
.header__toggle.is-active .burger__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--accent-cyan);
}

/* Mobile Drawer Overlay */
.drawer-overlay, .header__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.drawer-overlay.is-active, .header__mobile-overlay.is-active {
  display: block;
  opacity: 1;
}

.drawer, .header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  background: linear-gradient(180deg, #110d2f 0%, #080619 100%);
  border-left: 1px solid rgba(121, 40, 202, 0.4);
  padding: 20px 18px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85);
}

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

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

.drawer__close, .header__mobile-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

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

.drawer__nav, .header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.drawer__link, .header__mobile-nav-list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.drawer__link:hover, .drawer__link.active,
.header__mobile-nav-list a:hover, .header__mobile-nav-list a.active {
  background: rgba(121, 40, 202, 0.25);
  border-color: var(--accent-cyan);
  color: #ffffff;
  transform: translateX(3px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 70px 0 50px;
}

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

.hero__video-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 7, 26, 0.5) 0%, rgba(8, 7, 26, 0.95) 80%);
  z-index: 1;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(121, 40, 202, 0.15);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  width: fit-content;
}

.hero__title {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__quote {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--accent-cyan);
  padding: 12px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
}

.hero__stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.hero__stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.hero__stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

/* Flash Sale Card */
.flash-card {
  background: linear-gradient(160deg, #161230 0%, #0d0a20 100%);
  border: 1px solid rgba(121, 40, 202, 0.45);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 50px rgba(121, 40, 202, 0.25), 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
}

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

.flash-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  animation: flash-pulse 1.6s ease-in-out infinite;
}

@keyframes flash-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(121, 40, 202, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(121, 40, 202, 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 var(--border-color);
  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;
}

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

.cd-sep {
  color: var(--accent-cyan);
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 18px;
}

.btn-claim {
  display: block;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--cyan-glow);
}

/* ==========================================================================
   CAROUSELS & INFINITE MARQUEE GALLERIES
   ========================================================================== */
.carousel-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.marquee-track.track-reverse {
  animation: scroll-right 40s linear infinite;
}

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

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

.carousel-card {
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

/* Specific Card Aspect Ratios */
.carousel-card--logos {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}
.carousel-card--logos img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.carousel-card--movies {
  width: 170px;
  height: 252px;
}
.carousel-card--movies img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card--sport {
  width: 200px;
  height: 355px;
}
.carousel-card--sport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card--devices {
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-card--devices img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card--preview {
  width: 360px;
  height: 162px;
}
.carousel-card--preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card--wtsp {
  width: 230px;
  height: 498px;
}
.carousel-card--wtsp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card--reviews {
  width: 320px;
  height: 240px;
}
.carousel-card--reviews img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   TRUSTPILOT & REVIEW CARDS
   ========================================================================== */
.rev-card {
  flex: 0 0 340px;
  background: rgba(18, 14, 40, 0.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

.rev-stars-row {
  color: #00b67a;
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
}

.rev-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rev-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.rev-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex-grow: 1;
}

.rev-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(18, 14, 40, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

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

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
}

.review-card__name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.review-card__country {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   COMPARISON TABLE SECTION
   ========================================================================== */
.compare-section {
  padding: 80px 0;
  background: rgba(14, 11, 32, 0.4);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

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

.compare-table th {
  background: rgba(121, 40, 202, 0.15);
  font-size: 1.05rem;
  font-weight: 700;
}

.compare-table th.brand-col, .compare-table td.brand-col {
  background: rgba(121, 40, 202, 0.1);
  color: var(--accent-cyan);
  font-weight: 700;
  border-inline: 1px solid var(--border-color);
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   INTERACTIVE PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  position: relative;
}

.screens-selector-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.screens-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.screens-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.screen-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.screen-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.screen-btn.active {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 35px rgba(0, 210, 255, 0.15);
}

.pricing-card--featured {
  background: linear-gradient(165deg, rgba(30, 20, 70, 0.95) 0%, rgba(13, 10, 36, 0.95) 100%);
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 30px var(--cyan-glow);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px var(--cyan-glow);
  white-space: nowrap;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.pricing-card__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.pricing-card__currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

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

.pricing-card__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-top: 12px;
}

.pricing-card__badge--free {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #10b981;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.90rem;
  color: var(--text-secondary);
}

.feature-check {
  color: #10b981;
  font-weight: bold;
}

.feature-cross {
  color: var(--text-muted);
}

.feature-disabled {
  opacity: 0.45;
}

.feature-highlight {
  color: #10b981 !important;
  font-weight: 700;
}

.pricing-card__btn {
  width: 100%;
  padding: 14px;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
  padding: 80px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(121, 40, 202, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   STEPS SECTION
   ========================================================================== */
.steps-section {
  padding: 80px 0;
  background: rgba(14, 11, 32, 0.3);
}

.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-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.step-card__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px var(--accent-glow);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

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

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  transition: transform 0.25s ease;
}

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

/* ==========================================================================
   BREADCRUMBS (FOR SUBPAGES)
   ========================================================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #04030d;
  border-top: 1px solid rgba(121, 40, 202, 0.25);
  padding: 70px 0 30px;
  position: relative;
}

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

.footer__desc {
  color: var(--text-secondary);
  font-size: 0.90rem;
  line-height: 1.7;
  margin: 16px 0;
}

.footer__contact-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer__contact-info a {
  color: var(--accent-cyan);
}

.footer__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gradient);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer__list a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

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

.footer__bottom-links a:hover {
  color: #fff;
}

/* ==========================================================================
   FLOATING ACTION BUTTON & SOCIAL PROOF
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 997;
  transition: var(--transition);
  animation: whatsapp-pulse 2.5s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 8px 24px rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.45);
  }
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7);
}

.whatsapp-fab svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.social-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(18, 14, 40, 0.95);
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 99;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  max-width: 380px;
  pointer-events: none;
}

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

.social-proof__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.social-proof__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.social-proof__desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.social-proof__time {
  font-size: 0.7rem;
  color: var(--accent-cyan);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .nav, .header__nav {
    display: none;
  }
  .burger, .header__toggle {
    display: flex;
  }
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    align-items: center;
  }
  .hero__stats-row, .hero__cta-group {
    justify-content: center;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    background: rgba(8, 7, 26, 0.96);
  }
  .header__container {
    height: 64px;
    gap: 10px;
    padding-inline: 14px;
  }
  .header__logo {
    width: 36px;
    height: 36px;
  }
  .header__brand-name {
    font-size: 1.05rem;
  }
  .header__status-pill {
    font-size: 0.62rem;
  }
  .header__cta {
    display: none; /* Hide top bar button on mobile, it's prominently in the drawer */
  }
  .currency-select {
    padding: 6px 24px 6px 8px;
    font-size: 0.78rem;
  }
  .burger, .header__toggle {
    width: 38px;
    height: 38px;
    padding: 7px;
  }
  .container {
    padding-inline: 16px;
  }
  .hero {
    padding: 35px 0 25px;
  }
  .hero__title {
    font-size: 1.95rem;
  }
  .hero__quote {
    font-size: 0.88rem;
    padding: 10px 14px;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-fab svg {
    width: 30px;
    height: 30px;
  }
  .social-proof {
    display: none;
  }
}

@media (max-width: 480px) {
  .urgency-banner {
    font-size: 11px;
    padding: 8px 12px;
  }
  .header__brand-name {
    font-size: 0.95rem;
  }
  .header__status-pill {
    display: none;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .pricing-card {
    padding: 24px 18px;
  }
  .pricing-card__amount {
    font-size: 2.5rem;
  }
  .flash-card {
    padding: 24px 18px;
  }
  .cd-block {
    width: 60px;
    padding: 8px 0;
  }
  .cd-num {
    font-size: 1.6rem;
  }
}
