/* ==========================================================================
   iptv leverantorer - Sweden (Sverige) Design System
   Neon Violet #7928CA + Electric Cyan #00D2FF · BG #08071A
   ========================================================================== */

:root {
  --bg-dark: #08071A;
  --bg-cinema: #040714;
  --bg-card: rgba(14, 13, 36, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(121, 40, 202, 0.25);
  --border-glass-cyan: rgba(0, 210, 255, 0.3);
  --primary-violet: #7928CA;
  --electric-cyan: #00D2FF;
  --accent-gold: #F6C453;
  --accent-gold2: #E8A020;
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.5);
  --gradient-btn: linear-gradient(135deg, #7928CA 0%, #00D2FF 100%);
  --gradient-card: linear-gradient(165deg, rgba(26, 20, 60, 0.7) 0%, rgba(8, 7, 26, 0.95) 100%);
  --gradient-mesh: radial-gradient(circle at 20% 15%, rgba(121, 40, 202, 0.18) 0%, transparent 50%),
                   radial-gradient(circle at 80% 85%, rgba(0, 210, 255, 0.12) 0%, transparent 50%),
                   #08071A;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-glow: 0 0 25px rgba(121, 40, 202, 0.35);
  --shadow-cyan: 0 0 25px rgba(0, 210, 255, 0.3);
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  background-color: var(--bg-dark);
  background-image: var(--gradient-mesh);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: #fff;
}

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

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;
}

/* ===== 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, #F6C453, #F3B23A 45%, #E8A020);
  color: #1A1206;
  font: 600 13px/1.3 var(--font-main);
  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: #1A1206;
  color: #F6C453;
  font: 800 11px var(--font-main);
  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 & NAVIGATION ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 7, 26, 0.88);
  border-bottom: 1px solid rgba(121, 40, 202, 0.25);
  transition: all 0.3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__brand span {
  white-space: nowrap;
}
.header__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-glass);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.header__nav-link:hover,
.header__nav-link.active {
  color: #fff;
  background: rgba(121, 40, 202, 0.15);
}

.header__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00FF88;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__status-dot {
  width: 8px;
  height: 8px;
  background: #00FF88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00FF88;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.header__cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4);
  color: #fff;
}

.header__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  width: 40px;
  height: 40px;
}
.header__toggle svg {
  width: 26px;
  height: 26px;
}
  width: 26px;
  height: 26px;
}

/* Mobile Drawer Menu */
.header__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100%;
  background: #0D0A24;
  border-left: 1px solid var(--border-glass);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  z-index: 1001;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.header__mobile-menu.is-active {
  transform: translateX(-320px);
}
.header__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__mobile-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.header__mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header__mobile-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.header__mobile-link:hover {
  background: rgba(121, 40, 202, 0.2);
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 0 40px;
  width: 100%;
}
.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 177.77vh;
  height: 56.25vw;
  min-height: 100%;
  width: 100%;
  border: none;
  pointer-events: none;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 7, 26, 0.4) 0%, rgba(8, 7, 26, 0.92) 80%),
              linear-gradient(180deg, rgba(8, 7, 26, 0.3) 0%, #08071A 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-text {
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(121, 40, 202, 0.2);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--electric-cyan);
  margin-bottom: 18px;
  box-shadow: 0 0 15px rgba(121, 40, 202, 0.3);
}
.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
}
.hero-title span.cyan {
  background: linear-gradient(135deg, #00D2FF 0%, #7928CA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-punchline {
  background: rgba(14, 13, 36, 0.7);
  border-left: 3px solid var(--electric-cyan);
  padding: 12px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 25px rgba(121, 40, 202, 0.4);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.5);
  color: #fff;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, border 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(121, 40, 202, 0.2);
  border-color: var(--electric-cyan);
  transform: translateY(-2px);
  color: #fff;
}

.hero-stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 13, 36, 0.8);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.hero-stat-icon {
  color: var(--electric-cyan);
  font-size: 1.2rem;
}
.hero-stat-text b {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}
.hero-stat-text span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Flash Sale Card */
.flash-card {
  max-width: 420px;
  width: 100%;
  background: linear-gradient(160deg, #1A1230 0%, #0D0A1C 100%);
  border: 1px solid rgba(0, 210, 255, 0.4);
  border-radius: 20px;
  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;
  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: linear-gradient(90deg, #7928CA, #00D2FF);
  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.8s ease-in-out infinite;
}
@keyframes flash-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(0, 210, 255, 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;
}
.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: linear-gradient(90deg, #7928CA, #00D2FF);
  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 rgba(0, 210, 255, 0.35);
}
.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 210, 255, 0.5);
  color: #fff;
}

/* Hero Bottom Icon Carousel */
.hero-bottom-carousel {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(121, 40, 202, 0.2);
  border-bottom: 1px solid rgba(121, 40, 202, 0.2);
  background: rgba(8, 7, 26, 0.6);
  -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);
}
.carousel--logos {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 10px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}
.carousel--logos.is-dragging {
  cursor: grabbing;
}
.carousel--logos::-webkit-scrollbar {
  display: none;
}
.carousel-item--logo {
  flex: 0 0 120px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: transform 0.2s, border-color 0.2s;
  pointer-events: auto;
}
.carousel-item--logo:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--electric-cyan);
}
.carousel-item--logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* ===== GENERAL SECTION HEADINGS ===== */
.section {
  padding: 80px 0;
}
.section--dark {
  background: rgba(4, 7, 20, 0.7);
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(121, 40, 202, 0.15);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  color: var(--electric-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title span.accent {
  color: var(--electric-cyan);
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== IMAGE CAROUSELS (CONTINUOUS SMOOTH MARQUEE + DRAG) ===== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -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-track {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 15px 5px;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  will-change: scroll-position;
}
.carousel-track.is-dragging {
  cursor: grabbing;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track img {
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Movie Carousel Items */
.carousel--movies .carousel-item {
  flex: 0 0 200px;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1.482;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.carousel--movies .carousel-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--electric-cyan);
}
.carousel--movies .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sport Carousel Items */
.carousel--sport .carousel-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.carousel--sport .carousel-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary-violet);
}
.carousel--sport .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Preview Carousel Items */
.carousel--preview .carousel-item {
  flex: 0 0 380px;
  scroll-snap-align: start;
  aspect-ratio: 2.22 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.carousel--preview .carousel-item:hover {
  transform: translateY(-4px);
  border-color: var(--electric-cyan);
}
.carousel--preview .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Devices Carousel Items */
.carousel--devices .carousel-item {
  flex: 0 0 170px;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.carousel--devices .carousel-item:hover {
  transform: translateY(-5px);
  border-color: var(--electric-cyan);
}
.carousel--devices .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* WhatsApp Carousel Items */
.carousel--wtsp .carousel-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
  aspect-ratio: 473 / 1024;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.carousel--wtsp .carousel-item:hover {
  transform: translateY(-5px);
  border-color: #00FF88;
}
.carousel--wtsp .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  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: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-table th {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.compare-table th.brand-col {
  color: var(--electric-cyan);
  background: rgba(121, 40, 202, 0.15);
  border-radius: 12px 12px 0 0;
  text-align: center;
}
.compare-table td.brand-col {
  background: rgba(121, 40, 202, 0.1);
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.compare-table td.brand-col .check {
  color: #00FF88;
  font-weight: 800;
}
.compare-table td.bad {
  color: #FF5A5A;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:last-child td.brand-col {
  border-radius: 0 0 12px 12px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 90px 0;
}
.screen-selector-header {
  text-align: center;
  margin-bottom: 30px;
}
.screen-selector-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.screen-selector-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.screen-selector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.screen-card {
  background: rgba(14, 13, 36, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
}
.screen-card:hover {
  background: rgba(121, 40, 202, 0.2);
  border-color: var(--electric-cyan);
}
.screen-card.is-selected {
  background: linear-gradient(145deg, rgba(121, 40, 202, 0.4) 0%, rgba(0, 210, 255, 0.25) 100%);
  border-color: var(--electric-cyan);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
  transform: translateY(-2px);
}
.screen-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.screen-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.screen-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--electric-cyan);
  color: #08071A;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 24px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-cyan);
}
.pricing-card.featured {
  background: linear-gradient(165deg, rgba(30, 20, 70, 0.9) 0%, rgba(10, 8, 30, 0.95) 100%);
  border: 2px solid var(--electric-cyan);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
  z-index: 2;
}
.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-5px);
  box-shadow: var(--shadow-cyan);
}
.card-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}
.card-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.card-duration {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.card-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.card-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--electric-cyan);
}
.card-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.card-period {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.card-breakdown {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--electric-cyan);
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}
.card-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.card-feature-item.check svg {
  color: #00FF88;
  flex-shrink: 0;
}
.card-feature-item.strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
}
.card-feature-item.cross svg {
  color: #FF5A5A;
  flex-shrink: 0;
}
.view-all-features {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--electric-cyan);
  margin-bottom: 16px;
  display: block;
}
.card-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.3);
}
.card-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4);
  color: #fff;
}

/* Horizontal 1-month card */
.pricing-card-horizontal {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 1100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.horizontal-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.horizontal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.horizontal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.horizontal-price-action {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Price breakdown bar */
.price-breakdown-bar {
  max-width: 1100px;
  margin: 0 auto 30px;
  background: rgba(121, 40, 202, 0.15);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.breakdown-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.breakdown-savings {
  color: #00FF88;
  font-weight: 700;
  font-size: 0.95rem;
}
.breakdown-btn {
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s;
}
.breakdown-btn:hover {
  transform: scale(1.03);
  color: #fff;
}

/* Payment Icons Container */
.payment-icons-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
}
.payment-icons-img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== TRUSTPILOT MARQUEE (SECTION 7) ===== */
.reviews-section {
  background: #0C0C0C;
  padding: 96px 0 110px;
  overflow: hidden;
  width: 100%;
}
.reviews-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}
.tp-badge {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 40px;
  font-size: 1rem;
}
.tp-left, .tp-right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
}
.tp-left {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  color: #fff;
}
.tp-star-icon {
  color: #00B67A;
  font-size: 1.25rem;
  line-height: 1;
}
.tp-stars-row {
  display: flex;
  gap: 3px;
}
.tp-stars-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #00B67A;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.tp-score {
  color: #fff;
  font-weight: 600;
}
.reviews-header h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.reviews-header h2 span {
  color: #4CAF7D;
}
.reviews-header p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.125rem;
  line-height: 1.6;
}
.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: 28px;
  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: 430px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
}
.rev-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.rev-stars-row {
  display: flex;
  gap: 3px;
}
.rev-stars-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background: #00B67A;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.rev-stars-row span.g {
  background: #3A3A3A;
}
.rev-date {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
}
.rev-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.rev-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.65;
  flex: 1;
}
.rev-author {
  color: #fff;
  font-weight: 700;
  margin-top: 26px;
  font-size: 1.05rem;
}

/* ===== TRUSTPILOT IMAGES (SECTION 8) ===== */
.tp-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.tp-image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  aspect-ratio: 1200 / 488;
  background: #111;
}
.tp-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 3-STEP ACTIVATION (SECTION 9) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--electric-cyan);
}
.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--electric-cyan);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.step-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== CUSTOMER REVIEWS (SECTION 11) ===== */
.carousel--reviews .carousel-item {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.carousel--reviews .carousel-item:hover {
  transform: translateY(-5px);
  border-color: var(--electric-cyan);
}
.review-user-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--electric-cyan);
}
.review-user-info b {
  display: block;
  font-size: 1.05rem;
  color: #fff;
}
.review-user-info span {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #00FF88;
  font-size: 0.75rem;
  font-weight: 700;
}
.review-rating-stars {
  color: #F6C453;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.review-quote {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

/* ===== FUNCTIES (SECTION 13) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--electric-cyan);
}
.feature-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(121, 40, 202, 0.2);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-cyan);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-box-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.feature-box-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== FAQS (SECTION 14) ===== */
.faqs-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--electric-cyan);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--electric-cyan);
  flex-shrink: 0;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
}

/* ===== FOOTER ===== */
.footer {
  background: #04030D;
  border-top: 2px solid var(--primary-violet);
  box-shadow: 0 -10px 30px rgba(121, 40, 202, 0.2);
  padding: 70px 0 30px;
  width: 100%;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__brand-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer__col-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.footer__col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: var(--electric-cyan);
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer__links a:hover {
  color: var(--electric-cyan);
  transform: translateX(4px);
}
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copyright {
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  background: linear-gradient(135deg, #2fe576 0%, #25D366 60%, #128C7E 100%);
  color: #fff !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7);
  color: #fff !important;
}
.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ===== SOCIAL PROOF RECENT PURCHASE POPUP ===== */
.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 330px;
  width: calc(100% - 40px);
  background: var(--bg-card);
  border: 1px solid var(--border-glass-cyan);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 900;
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}
.social-proof-popup.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.sp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-cyan);
  flex-shrink: 0;
}
.sp-avatar svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.sp-content {
  flex: 1;
}
.sp-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.sp-time {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 2px;
}
.sp-verified {
  font-size: 0.72rem;
  color: #00FF88;
  font-weight: 700;
  margin-top: 2px;
}
.sp-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 2px;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  top: 8px;
  right: 10px;
}

/* ===== SEO CONTENT & PROSE PAGES ===== */
.page-hero {
  padding: 70px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
  background: linear-gradient(180deg, rgba(121, 40, 202, 0.15) 0%, transparent 100%);
}
.page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.page-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--electric-cyan);
}
.prose {
  max-width: 900px;
  margin: 50px auto;
  color: #D1D5DB;
  font-size: 1.05rem;
  line-height: 1.8;
}
.prose h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 36px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}
.prose h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--electric-cyan);
  margin: 28px 0 12px;
}
.prose p {
  margin-bottom: 20px;
}
.prose ul, .prose ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.prose li {
  margin-bottom: 10px;
}
.prose .card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc, .hero-actions, .hero-stats-row {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (max-width: 768px) {
  .header__inner {
    height: 62px;
    padding: 0 16px;
  }
  .header__brand {
    font-size: 1.05rem;
    gap: 8px;
  }
  .header__logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .header__cta-btn {
    padding: 7px 12px;
    font-size: 0.82rem;
  }
  .floating-whatsapp-widget,
  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
    gap: 8px;
  }
  .wa-tooltip-pill {
    display: none;
  }
  .wa-btn-circle,
  .floating-whatsapp {
    width: 56px;
    height: 56px;
  }
  .wa-svg-icon,
  .floating-whatsapp svg {
    width: 32px;
    height: 32px;
  }
  .hero-section {
    padding: 60px 16px 40px;
    text-align: center;
  }
  .screen-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-card-horizontal {
    flex-direction: column;
    text-align: center;
  }
  .horizontal-price-action {
    flex-direction: column;
    width: 100%;
  }
  .horizontal-price-action a {
    width: 100%;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .tp-badge {
    font-size: 0.85rem;
  }
  .tp-left, .tp-right {
    padding: 10px 14px;
    gap: 7px;
  }
  .tp-stars-row span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .rev-card {
    width: 320px;
    padding: 24px 22px 26px;
  }
  .rev-title {
    font-size: 1.15rem;
  }
  .rev-text {
    font-size: 0.95rem;
  }
  .social-proof-popup {
    left: 12px;
    bottom: 16px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 480px) {
  .header__brand span {
    font-size: 0.95rem;
  }
  .flash-card { padding: 26px 20px; }
  .flash-sub { font-size: 1.15rem; }
  .cd-block { width: 62px; padding: 10px 0; }
  .cd-num { font-size: 1.6rem; }
  .screen-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .urgency-banner::after,
  .reviews-track,
  .flash-top {
    animation: none !important;
  }
  .social-proof-popup {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
}
