/* ==========================================================================
   Central Recarga TV Box — Master Design System (Electric Emerald + Cyber Cyan)
   Domain: centralrecargatvbox.com | Market: Brazil (pt-BR)
   CODEX IPTV New 59 — Full Line-by-Line Implementation
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700;800&family=Inter:wght@400;500;600;700;800&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: 100%;
  width: 100%;
  position: relative;
  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, .section-py {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 80px 0;
}

.section-dark {
  background: rgba(11, 17, 29, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

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

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

.sec-head, .section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.sec-badge, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  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;
}

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

.sec-title, .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  color: #FFFFFF;
}

.sec-desc, .section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* 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;
  text-decoration: none;
}

.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, .btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid var(--border-cyan);
}

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

.btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   Urgency Top Banner (Master Outline)
   ========================================================================== */
.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; }

.urgency-content {
  color: var(--ink);
}

/* ==========================================================================
   Header & Floating Navigation (Glassmorphism + Online Pill)
   ========================================================================== */
.site-header, .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, .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.header__brand img, .brand-logo, .header__logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.server-status-pill, .server-status, .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);
  white-space: nowrap;
}

.status-dot, .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, .nav-links {
  display: flex;
  align-items: center;
}

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

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

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

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

.header__toggle, .menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFF;
  cursor: pointer;
  padding: 8px 9px;
  border-radius: var(--radius-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.header__toggle span, .menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__toggle:hover, .menu-toggle:hover {
  background: rgba(0, 255, 135, 0.12);
  border-color: rgba(0, 255, 135, 0.4);
}

.header__toggle:hover span, .menu-toggle:hover span {
  background: var(--emerald);
}

.header__toggle svg, .menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Side Drawer */
.header__mobile-overlay, .mobile-drawer-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, .mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header__mobile-menu, .mobile-drawer {
  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, .mobile-drawer.active {
  transform: translateX(0);
}

.mobile-menu-top, .drawer-header, .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);
}

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

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

.header__mobile-nav-item a, .drawer-link, .header__mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  text-decoration: none;
}

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

/* ==========================================================================
   SECTION 1: HERO SECTION & YouTube Background Video
   ========================================================================== */
.hero-section, .hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 60px 0 50px;
  box-sizing: border-box;
}

.hero-video-wrap, .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, .hero__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.85;
  border: none;
}

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

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

.hero-grid, .hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

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

.hero-urgency-tag, .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.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.hero-title, .hero__h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

.hero-quote-box, .hero__quote-box {
  background: rgba(15, 23, 38, 0.7);
  border-left: 3px solid var(--emerald);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: #CBD5E1;
  margin-bottom: 30px;
  font-style: italic;
}

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

.hero-stats-row, .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);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

/* Flash Sale Card Component (Strict Outline) */
.flash-card-wrap {
  display: flex;
  justify-content: center;
}

.flash-card {
  max-width: 420px;
  width: 100%;
  background: linear-gradient(160deg, #1a1a1a 0%, #111 100%);
  border: 1px solid rgba(255, 82, 82, 0.35);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 50px rgba(255, 82, 82, 0.12), 0 20px 40px rgba(0, 0, 0, 0.5);
  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(255, 82, 82, 0.22), transparent 70%);
  pointer-events: none;
}

.flash-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff3d3d, #ff7a18);
  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(255, 82, 82, 0.45); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 82, 82, 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: linear-gradient(90deg, #ff3d3d, #ff7a18);
  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(255, 82, 82, 0.35);
}

.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 82, 82, 0.5);
}

/* Hero Bottom Icon Carousel */
.hero-icons-wrap {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-icons-label {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ==========================================================================
   CAROUSELS: Pure CSS Scroll-Snap + JS Auto-Scroll Support
   ========================================================================== */
.carousel-track-container, .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--preview .carousel-item {
  width: min(480px, 85vw);
}
.carousel--preview img {
  aspect-ratio: 2.22 / 1;
  object-fit: cover;
}

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

.carousel--wtsp .carousel-item {
  width: 240px;
}
.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;
}

/* ==========================================================================
   SECTION 5: COMPARES TABLE
   ========================================================================== */
.compare-box, .compare-table-wrap, .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.brand-col, .compare-table td.brand-col,
.compare-table th.highlight, .compare-table td.highlight {
  background: rgba(0, 255, 135, 0.06);
  color: #FFFFFF;
  font-weight: 700;
  border-left: 1px solid rgba(0, 255, 135, 0.25);
  border-right: 1px solid rgba(0, 255, 135, 0.25);
}

.compare-table td.cable-col {
  color: var(--text-muted);
}

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

/* ==========================================================================
   SECTION 6: PRICING SECTION & MULTI-SCREEN SELECTOR
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 38, 0.4) 50%, transparent 100%);
}

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

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

.screen-btn, .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-btn:hover, .screen-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.screen-btn.active, .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-btn .s-num, .screen-card .num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #FFFFFF;
}

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

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

.screen-badge, .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-badge.pop, .screen-card.active .badge {
  background: var(--emerald);
  color: #05080E;
}

.screen-badge.val {
  background: var(--cyan);
  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.highlighted, .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-duration, .plan-dur {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

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

.plan-cur, .plan-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald);
}

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

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

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

.plan-features-list, .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-feat, .plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.plan-feat svg, .plan-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

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

/* 1-Month Horizontal Plan Card */
.plan-card-month1, .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;
}

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

/* Price Breakdown Bar */
.pricing-breakdown-bar, .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;
}

.breakdown-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.breakdown-calc, .plan-breakdown-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

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

/* Payment Icons Strip */
.payment-icons-container, .payment-icons-wrap, .payment-strip {
  max-width: 360px;
  margin: 20px auto 0;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icons-container img, .payment-icons-img, .payment-strip img {
  max-width: 100%;
  height: auto;
  max-height: 38px;
}

/* ==========================================================================
   SECTION 7: TRUSTPILOT HTML REVIEWS (Prompt Exact CSS)
   ========================================================================== */
.reviews {
  background: #0c0c0c;
  padding: 96px 0 110px;
  overflow: hidden;
}

.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, .rev-stars-row {
  display: flex;
  gap: 3px;
}

.tp-stars-row span, .rev-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;
}

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

.tp-score {
  color: #fff;
  font-weight: 600;
}

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

/* ==========================================================================
   SECTION 8: TRUSTPILOT IMAGES
   ========================================================================== */
.trustpilot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.trustpilot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.trustpilot-card img {
  width: 100%;
  aspect-ratio: 1200 / 488;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 9: 3-STEP ACTIVATION
   ========================================================================== */
.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-number, .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;
}

/* ==========================================================================
   SECTION 11: CUSTOMER REVIEWS (7 Verified Reviews)
   ========================================================================== */
.cust-rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.cust-rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cust-rev-card:hover {
  border-color: var(--emerald);
  transform: translateY(-3px);
}

.cust-rev-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

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

.cust-rev-info h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.cust-rev-location {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cust-rev-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald);
}

.cust-rev-stars {
  color: #FFB800;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.cust-rev-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ==========================================================================
   SECTION 13: FUNCTIES / RECURSOS (14 Features Grid)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.feature-box, .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.25s ease;
  position: relative;
}

.feature-box:hover, .feature-card:hover {
  border-color: var(--emerald);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 255, 135, 0.12);
}

.feature-icon-hex, .feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-bottom: 18px;
  transition: all 0.25s ease;
}

.feature-box:hover .feature-icon-hex {
  background: var(--emerald);
  color: #05080E;
  box-shadow: var(--glow-emerald);
}

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

.feature-desc, .feature-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 14: FAQS (Accordion)
   ========================================================================== */
.faq-list, .faq-wrap, .faq-accordion {
  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-toggle, .faq-chevron {
  font-size: 1.4rem;
  width: 24px;
  height: 24px;
  color: var(--emerald);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon-toggle, .faq-item.open .faq-chevron {
  transform: rotate(45deg);
}

.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 (Deep Dark Grid + Emerald Glow Line + Single Column Collapse)
   ========================================================================== */
.site-footer, .footer {
  background: #030509;
  border-top: 1px solid rgba(0, 255, 135, 0.2);
  padding: 70px 0 30px;
  width: 100%;
  position: relative;
}

.site-footer::before, .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-top-grid, .footer__grid, .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4, .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 h4::after, .footer__col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--emerald);
}

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

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

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

.footer-logo img {
  max-width: 140px;
  height: auto;
}

.footer-payments-wrap {
  margin-top: 16px;
  max-width: 220px;
}

.footer-payments-wrap img {
  max-width: 100% !important;
  height: auto !important;
  max-height: 36px;
  object-fit: contain;
}

.footer-bottom, .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, 20px edge, smooth slide/fade)
   ========================================================================== */
.social-proof-popup, .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;
}

.social-proof-popup.visible, .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-title, .sp-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 3px;
}

.sp-meta span, .sp-time {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.sp-verified {
  font-size: 0.72rem;
  color: var(--emerald) !important;
  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 (Bottom Right)
   ========================================================================== */
.floating-wa-btn, .floating-wa, .float-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 98;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

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

.floating-wa-btn svg, .floating-wa svg, .float-whatsapp svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   SUBPAGE STYLES: Page Hero, Breadcrumbs, Content & Blog
   ========================================================================== */
.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, rgba(0, 255, 135, 0.04) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.breadcrumbs-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumbs-bar a {
  color: var(--emerald);
  text-decoration: none;
}

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

.article-content, .page-content {
  max-width: 880px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #CBD5E1;
}

.article-content h2, .page-content h2 {
  font-size: 1.85rem;
  color: #FFFFFF;
  margin: 40px 0 18px;
}

.article-content h3, .page-content h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin: 30px 0 14px;
}

.article-content p, .page-content p {
  margin-bottom: 20px;
}

.article-content ul, .page-content ul,
.article-content ol, .page-content ol {
  margin: 0 0 24px 28px;
}

.article-content li, .page-content li {
  margin-bottom: 8px;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* ==========================================================================
   RESPONSIVE ADAPTATIONS: Mobile First / Focus on Mobile
   ========================================================================== */
@media (max-width: 1350px) {
  .server-status-pill, .server-status {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header__nav-list {
    gap: 14px;
  }
  .header__nav-item a, .nav-link, .header__nav-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-pill-row, .hero-cta-group, .hero__cta-row {
    justify-content: center;
  }

  .hero-quote-box, .hero__quote-box {
    text-align: left;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .trustpilot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header, .header {
    padding: 10px 0;
  }

  .server-status-pill, .server-status {
    display: none !important;
  }

  .header__actions {
    display: flex !important;
    align-items: center;
    gap: 0;
  }

  .header__actions .btn, .header__actions .header__cta, .header__actions a {
    display: none !important;
  }

  .header__nav, .nav-links {
    display: none !important;
  }

  .header__brand img, .brand-logo, .header__logo {
    height: 32px !important;
    width: auto !important;
  }

  .header__toggle, .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    padding: 8px;
    flex-shrink: 0;
  }

  .header__toggle svg, .menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
    display: block;
  }

  .hero-video-wrap, .hero__video-wrap {
    display: none !important;
  }

  .hero-section, .hero {
    padding: 24px 0 28px;
    overflow: hidden;
  }

  .hero-pill-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 16px;
  }

  .hero-trust-tag, .hero-urgency-tag, .hero__trust-badge, .hero__server-capacity {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.76rem;
    padding: 6px 12px;
    text-align: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.35;
    border-radius: 20px;
  }

  .hero-title, .hero__h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.15rem) !important;
    line-height: 1.2 !important;
    text-align: center;
    margin-bottom: 14px;
    word-break: break-word;
  }

  .hero-lead, .hero__desc {
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-cta-group, .hero__cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .hero-cta-group .btn, .hero__cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-quote-box, .hero__quote-box {
    padding: 12px 14px;
    font-size: 0.88rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-stats-row, .hero__stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 16px;
  }

  .stat-num, .hero__stat-num {
    font-size: 1.25rem;
  }

  .stat-label, .hero__stat-label {
    font-size: 0.7rem;
  }

  .sec-title, .section-title {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  .sec-desc, .section-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
  }

  /* Screens Selector */
  .screens-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .screen-btn, .screen-card {
    padding: 10px 4px;
  }

  .screen-btn .s-num, .screen-card .num {
    font-size: 1.15rem;
  }

  .screen-btn .s-name, .screen-card .label {
    font-size: 0.7rem;
  }

  /* Plan cards and steps collapse to single column */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-card-month1, .plan-card-horizontal {
    flex-direction: column;
    text-align: center;
  }

  .month1-left, .plan-card-horizontal .left {
    justify-content: center;
  }

  .pricing-breakdown-bar, .plan-breakdown-bar {
    flex-direction: column;
    text-align: center;
  }

  /* Trustpilot Marquee cards */
  .rev-card {
    width: min(300px, 82vw) !important;
    padding: 20px 18px !important;
  }

  .rev-title { font-size: 1.05rem; }
  .rev-text { font-size: 0.88rem; line-height: 1.5; }
  .rev-stars-row span {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
  }

  /* Trustpilot Grid */
  .trustpilot-grid {
    grid-template-columns: 1fr;
  }

  /* Footer collapses to single column */
  .footer-top-grid, .footer__grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom, .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Mobile Carousels Responsive Sizing */
  .carousel--movies .carousel-item { width: 140px; }
  .carousel--sport .carousel-item { width: 155px; }
  .carousel--wtsp .carousel-item { width: 205px; }
  .carousel--devices .carousel-item { width: 140px; }
  .carousel--logos .carousel-item { width: 130px; }

  /* Compare Table Mobile Scroll */
  .compare-box, .compare-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    margin: 20px 0;
  }

  .compare-table {
    min-width: 490px;
    font-size: 0.82rem;
  }

  .compare-table th, .compare-table td {
    padding: 10px 12px;
  }

  /* Urgency Banner on mobile */
  .urgency-banner {
    padding: 7px 10px;
    font-size: 11px;
    line-height: 1.3;
    gap: 6px;
    text-align: center;
    justify-content: center;
  }

  .ub-flag {
    font-size: 9px;
    padding: 2px 6px;
  }

  /* Floating WhatsApp on mobile */
  .floating-wa-btn, .floating-wa {
    width: 48px;
    height: 48px;
    bottom: calc(85px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  }

  .floating-wa-btn svg, .floating-wa svg {
    width: 24px;
    height: 24px;
  }

  /* Social proof popup positioned so it does not block WhatsApp */
  .social-proof-popup, .sp-popup {
    bottom: calc(145px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    max-width: 360px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .hero-title, .hero__h1 {
    font-size: 1.55rem !important;
  }

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

  .screen-btn .s-num { font-size: 1rem; }
  .screen-btn .s-name { font-size: 0.65rem; }
  .screen-badge { font-size: 0.55rem; padding: 1px 4px; }

  .flash-card {
    padding: 20px 14px;
  }

  .flash-sub {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }

  .countdown {
    gap: 6px;
    margin-bottom: 20px;
  }

  .cd-block {
    width: 58px;
    padding: 8px 0;
  }

  .cd-num {
    font-size: 1.45rem;
  }

  .cd-label {
    font-size: 0.62rem;
  }

  .cd-sep {
    font-size: 1.2rem;
    padding-bottom: 10px;
  }

  .btn-claim {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* Additional mobile tweaks for very small screens */
@media (max-width: 360px) {
  /* Hero title and subtitle scaling */
  .hero-title, .hero__h1 {
    font-size: 1.45rem !important;
  }
  .hero-lead, .hero__desc {
    font-size: 0.85rem;
  }
  /* Button sizing */
  .hero-cta-group .btn, .hero__cta-row .btn {
    padding: 12px 16px;
    font-size: 0.92rem;
  }
  /* Footer spacing */
  .footer-top-grid, .footer__grid, .footer-grid {
    gap: 20px;
  }
  /* Carousel item widths */
  .carousel--movies .carousel-item { width: 120px; }
  .carousel--sport .carousel-item { width: 130px; }
  .carousel--wtsp .carousel-item { width: 160px; }
  .carousel--devices .carousel-item { width: 120px; }
  .carousel--logos .carousel-item { width: 100px; }
}

/* Ensure all media elements are responsive */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
}
