/* ==========================================================================
   Toucan IPTV Digital — Global Design System & Stylesheet
   Palette: Toucan Teal #17D6C0 + Mango Orange #FF8A1E · BG #0B0F0D (Dark Jungle)
   ========================================================================== */

:root {
  --primary: #17D6C0;
  --primary-hover: #13b3a0;
  --primary-dark: #0c6a5f;
  --primary-glow: rgba(23, 214, 192, 0.35);
  --primary-subtle: rgba(23, 214, 192, 0.12);
  --secondary: #FF8A1E;
  --secondary-hover: #e07412;
  --secondary-glow: rgba(255, 138, 30, 0.35);
  --secondary-subtle: rgba(255, 138, 30, 0.12);
  --bg: #0B0F0D;
  --bg-dark: #060907;
  --bg-slate: #111815;
  --card-bg: #121916;
  --card-hover: #16221d;
  --card-border: rgba(23, 214, 192, 0.22);
  --card-border-hi: rgba(255, 138, 30, 0.45);
  --card-border-hover: rgba(23, 214, 192, 0.55);
  --text: #F3F7F5;
  --text-muted: #95A59E;
  --text-dim: #64756E;
  --gold: #FF8A1E;
  --gold-hover: #E07412;
  --gold-glow: rgba(255, 138, 30, 0.3);
  --success: #17D6C0;
  --danger: #FF5252;
  --radius-sm: 6px;
  --radius-btn: 8px;
  --radius-card: 18px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 25px var(--primary-glow);
  --shadow-glow-orange: 0 0 25px var(--secondary-glow);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  background-color: var(--bg);
  background-image: 
    radial-gradient(1200px 600px at 50% -10%, rgba(23, 214, 192, 0.08), transparent 70%),
    radial-gradient(900px 500px at 90% 40%, rgba(255, 138, 30, 0.05), transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(23, 214, 192, 0.04), transparent 50%);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

/* Section Header Typography */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid rgba(23, 214, 192, 0.28);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-tag--orange {
  color: var(--secondary);
  background: var(--secondary-subtle);
  border-color: rgba(255, 138, 30, 0.28);
}

.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.section-title span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--secondary);
  background: linear-gradient(135deg, var(--secondary), #d66c0d);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 138, 30, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 138, 30, 0.45);
  background: linear-gradient(135deg, #ffa03b, var(--secondary));
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #11a896);
  border-color: var(--primary);
  color: #061512;
  box-shadow: 0 4px 14px rgba(23, 214, 192, 0.28);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #37e4d0, var(--primary));
  box-shadow: 0 6px 20px rgba(23, 214, 192, 0.45);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(23, 214, 192, 0.4);
  color: var(--text);
  box-shadow: none;
}

.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary-subtle);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  --gold: #FF8A1E;
  --gold2: #17D6C0;
  --ink: #070B0A;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: linear-gradient(90deg, #FF8A1E, #FF9E3E 45%, #17D6C0);
  color: var(--ink);
  font: 600 13.5px/1.3 "Inter", sans-serif;
  letter-spacing: 0.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, 0.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: #FF8A1E;
  font: 800 11px "Inter", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}

.ub-flag svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

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

.ub-text b {
  font-weight: 800;
}

/* ===== HEADER & NAVIGATION (OPTIMIZED) ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 15, 13, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 214, 192, 0.16);
  padding: 10px 0;
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.header__logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(23, 214, 192, 0.35);
  box-shadow: 0 0 10px rgba(23, 214, 192, 0.2);
}

.header__pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: inline-block;
  position: relative;
  margin-left: 2px;
}

.header__pulse-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

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

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

.header__nav-item a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  display: block;
}

.header__nav-item a:hover {
  color: var(--primary);
  background: var(--primary-subtle);
}

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

.header__cta-desktop {
  padding: 10px 22px;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(255, 138, 30, 0.35);
}

.header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(23, 214, 192, 0.25);
  border-radius: 10px;
  z-index: 102;
  transition: var(--transition);
}

.header__toggle:hover {
  border-color: var(--primary);
  background: var(--primary-subtle);
}

.header__toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
}

.header__toggle-bars span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.header__toggle.active .header__toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.active .header__toggle-bars span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active .header__toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 88vw;
  height: 100%;
  background: #0E1512;
  border-left: 1px solid var(--card-border);
  z-index: 100;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
}

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

.header__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 214, 192, 0.15);
}

.header__mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-close:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  flex: 1;
  padding-right: 4px;
}

.header__mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.header__mobile-nav a:hover {
  background: var(--primary-subtle);
  color: var(--primary);
  border-color: rgba(23, 214, 192, 0.35);
  transform: translateX(4px);
}

.header__mobile-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 214, 192, 0.15);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px 50px;
  box-sizing: border-box;
}

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

.hero__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.42;
  filter: contrast(1.15) brightness(0.85);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(11, 15, 13, 0.65) 0%, rgba(11, 15, 13, 0.95) 85%);
  z-index: 1;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

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

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

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 138, 30, 0.14);
  border: 1px solid rgba(255, 138, 30, 0.35);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.hero__badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23, 214, 192, 0.12);
  border: 1px solid rgba(23, 214, 192, 0.3);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.hero__h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.hero__h1 span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__quote {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
  border-left: 3px solid var(--secondary);
  padding-left: 16px;
  margin: 6px 0;
  background: rgba(255, 138, 30, 0.05);
  border-radius: 0 8px 8px 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 12px;
}

.hero__quote b {
  color: #FFFFFF;
}

.hero__stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-lbl {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-top: 4px;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* TV Panel & Flash Sale Card */
.tv-panel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.flash-card {
  max-width: 420px;
  width: 100%;
  background: linear-gradient(160deg, #131A17 0%, #0D1310 100%);
  border: 1.5px solid rgba(255, 138, 30, 0.45);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 50px rgba(255, 138, 30, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.flash-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 160px;
  background: radial-gradient(circle, rgba(23, 214, 192, 0.25), 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.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

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

.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: 1.9rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  color: rgba(255, 255, 255, 0.5);
  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: 16px;
}

.btn-claim {
  display: block;
  background: linear-gradient(90deg, #ff3d3d, #ff7a18);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 10px;
  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 Carousel (Icons) */
.hero__bottom-carousel {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(23, 214, 192, 0.15);
  width: 100%;
}

.hero__bottom-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   DYNAMIC MOVING CAROUSELS SYSTEM ("Never Stop Images Slide Gallery")
   ========================================================================== */
.carousel-wrap-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -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);
  padding: 12px 0 20px;
}

.carousel-track-moving {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: marquee-track-scroll 24s linear infinite;
  animation: marquee-track-scroll 24s linear infinite;
}

.carousel-track-moving:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.carousel-track-moving--slow {
  -webkit-animation-duration: 32s;
  animation-duration: 32s;
}

.carousel-track-moving--fast {
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
}

@-webkit-keyframes marquee-track-scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-track-scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

.carousel-item {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(23, 214, 192, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Strict Aspect Ratios */
.carousel--logos .carousel-item {
  width: 160px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel--logos .carousel-item img {
  object-fit: contain;
}

.carousel--movies .carousel-item {
  width: 180px;
  aspect-ratio: 1 / 1.482;
}

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

.carousel--preview .carousel-item {
  width: 380px;
  aspect-ratio: 2.22 / 1;
}

.carousel--devices .carousel-item {
  width: 210px;
  aspect-ratio: 1 / 1;
}

.carousel--devices .carousel-item img {
  object-fit: cover;
}

.carousel--wtsp .carousel-item {
  width: 230px;
  aspect-ratio: 473 / 1024;
}

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

.carousel--trustpilot .carousel-item {
  width: 360px;
  aspect-ratio: 1200 / 488;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(23, 214, 192, 0.25);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  padding: 4px;
}

.carousel--trustpilot .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* Sections Global */
.section {
  padding: 85px 0;
  position: relative;
}

.section--alt {
  background: var(--bg-slate);
  border-top: 1px solid rgba(23, 214, 192, 0.1);
  border-bottom: 1px solid rgba(23, 214, 192, 0.1);
}

.section--dark {
  background: var(--bg-dark);
}

/* ===== COMPARISON TABLE ===== */
.compare-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 30px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.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.06);
  font-size: 0.95rem;
}

.compare-table th {
  background: rgba(255, 255, 255, 0.03);
  font-size: 1rem;
  font-weight: 700;
}

.compare-table th.brand-col,
.compare-table td.brand-col {
  background: rgba(23, 214, 192, 0.06);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  font-weight: 700;
  color: var(--primary);
}

.compare-table th.brand-col {
  background: rgba(23, 214, 192, 0.14);
}

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

.badge-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
}

.badge-yes svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.badge-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--danger);
  font-weight: 600;
}

.badge-no svg {
  width: 16px;
  height: 16px;
  stroke: var(--danger);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 90px 0;
}

.pricing-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.pills-group {
  display: flex;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 4px;
}

.pill-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font: 600 13px "Inter", sans-serif;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.15s;
}

.pill-btn:hover {
  color: var(--text);
}

.pill-btn.on {
  background: var(--secondary);
  color: #FFFFFF;
}

.pill-btn.on.alt {
  background: var(--primary);
  color: #061512;
}

/* Screen Selector */
.screens-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

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

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

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

.screen-card.on {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-subtle), transparent);
  box-shadow: 0 0 0 1px var(--primary), 0 12px 28px -12px rgba(23, 214, 192, 0.6);
}

.screen-card .num {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

.screen-card.on .num {
  color: var(--primary);
}

.screen-card .sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.screen-card .name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 4px;
}

.screen-card.on .name {
  color: var(--text);
}

.screen-card .badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.screen-card .badge.pop {
  background: var(--secondary);
  color: #FFFFFF;
}

.screen-card .badge.val {
  background: var(--primary);
  color: #061512;
}

.more-screens-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.more-screens-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Plan Cards Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.plan-card {
  background: linear-gradient(180deg, var(--card-bg), #0E1513);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.18s;
}

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

.plan-card.pop {
  border-color: var(--secondary);
  box-shadow: 0 0 0 1px var(--secondary), 0 20px 45px -20px rgba(255, 138, 30, 0.5);
}

.plan-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--secondary), #d66c0d);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-dur {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.plan-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 12px;
}

.plan-cur {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.plan-amt {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 0.95;
  color: #FFFFFF;
}

.plan-card.pop .plan-amt {
  color: var(--secondary);
}

.plan-permonth {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 6px;
}

.plan-feats {
  list-style: none;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.plan-feat {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.88rem;
}

.plan-feat.off {
  color: var(--text-dim);
}

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

.plan-ic {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.plan-ic-on { color: var(--primary); }
.plan-ic-off { color: var(--text-dim); }
.plan-ic-ms { color: var(--secondary); }

.ms-perks-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  background: rgba(255, 138, 30, 0.06);
  border: 1px solid rgba(255, 138, 30, 0.2);
  padding: 10px 12px;
  border-radius: 8px;
}

.all-feats-link {
  display: block;
  text-align: center;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin: auto 0 14px;
}

.all-feats-link:hover {
  text-decoration: underline;
}

.btn-order {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary), #d66c0d);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 10px;
  transition: 0.16s;
  box-shadow: 0 4px 14px rgba(255, 138, 30, 0.3);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 138, 30, 0.45);
}

/* 1 Månad Horizontal Card */
.month1-card {
  grid-column: 1 / -1;
  margin-top: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.month1-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.month1-card .plan-price-wrap,
.month1-card .plan-permonth {
  margin: 0;
}

.month1-card .btn-order-ghost {
  min-width: 220px;
  background: transparent;
  border: 1.5px solid var(--card-border);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}

.month1-card .btn-order-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Price Breakdown Bar */
.breakdown-bar {
  margin-top: 36px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(120deg, #131A17, var(--card-bg));
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bd-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
}

.bd-price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bd-pm {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 4px;
}

.bd-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: rgba(23, 214, 192, 0.12);
  border: 1px solid rgba(23, 214, 192, 0.35);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.bd-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--secondary), #d66c0d);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 800;
  padding: 15px 28px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255, 138, 30, 0.35);
}

.bd-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 138, 30, 0.5);
}

/* Payment Icons */
.payments-strip {
  margin: 30px auto 0;
  display: block;
  width: fit-content;
  max-width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 16px 24px;
  box-sizing: border-box;
}

.payments-strip img {
  display: block;
  margin-inline: auto;
  max-width: 100%;
  height: auto;
}

/* ===== TRUSTPILOT REVIEWS HTML SECTION ===== */
.reviews {
  background: #0B0F0D;
  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 {
  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.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.reviews-header h2 span {
  color: #17D6C0;
}

.reviews-header p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  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;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: reviews-scroll 28s linear infinite;
  animation: reviews-scroll 28s linear infinite;
  will-change: transform;
}

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

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

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

.rev-card {
  flex: 0 0 auto;
  width: 430px;
  background: #121916;
  border: 1px solid rgba(23, 214, 192, 0.16);
  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.65);
  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 BADGE/IMAGE SECTION ===== */
.tp-image-section {
  padding: 70px 0;
  text-align: center;
  position: relative;
}

.tp-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(23, 214, 192, 0.04);
  border: 1px solid rgba(23, 214, 192, 0.2);
  border-radius: var(--radius-card);
  padding: 24px 32px;
  margin: 32px auto 44px;
  max-width: 1080px;
}

.tp-summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tp-stat-val {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.tp-stat-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.tp-summary-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.tp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.tp-badge-card {
  background: #111815;
  border: 1px solid rgba(23, 214, 192, 0.18);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.tp-badge-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.tp-badge-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tp-stars-boxes {
  display: flex;
  gap: 3px;
}

.tp-star-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #00B67A;
  border-radius: 2px;
}

.tp-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00B67A;
  background: rgba(0, 182, 122, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 182, 122, 0.25);
}

.tp-badge-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.35;
}

.tp-badge-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.tp-badge-author-info {
  display: flex;
  flex-direction: column;
}

.tp-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
}

.tp-author-loc {
  font-size: 0.775rem;
  color: var(--text-dim);
}

.tp-badge-date {
  font-size: 0.775rem;
  color: var(--text-dim);
}

.tp-reviews-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1140px;
  margin: 36px auto 0;
}

.tp-review-img-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(23, 214, 192, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-review-img-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 26px rgba(23, 214, 192, 0.3);
}

.tp-review-img-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 488;
  object-fit: contain;
  display: block;
  border-radius: 9px;
}

@media (max-width: 992px) {
  .tp-cards-grid,
  .tp-reviews-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .tp-cards-grid,
  .tp-reviews-images-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .tp-summary-bar {
    flex-direction: column;
    gap: 18px;
  }
  .tp-summary-divider {
    display: none;
  }
}

/* ===== 3-STEP ACTIVATION ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 16px;
}

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

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

/* ===== CUSTOMER REVIEWS TESTIMONIALS (MOVING & GRID) ===== */
.customer-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  width: 360px;
  flex: 0 0 auto;
  box-sizing: border-box;
}

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

.testimonial-avatar-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--primary-subtle);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(23, 214, 192, 0.25);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.testimonial-stars svg {
  width: 17px;
  height: 17px;
  fill: #FFB800;
}

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

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

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

.feature-icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-subtle);
  border: 1.5px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.feature-box:hover .feature-icon-tile {
  transform: scale(1.1) translateY(-2px);
  background: var(--secondary-subtle);
  color: var(--secondary);
}

.feature-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

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

/* ===== FAQS SECTION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 36px auto 0;
}

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

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

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

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

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

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

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

/* ===== FOOTER ===== */
.footer {
  background: #070B09;
  border-top: 1px solid rgba(23, 214, 192, 0.2);
  padding: 70px 0 35px;
}

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

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

.footer__title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 8px;
}

.footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
}

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

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

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

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

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ===== SOCIAL PROOF POPUP ===== */
.sp-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 75;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  max-width: 330px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  pointer-events: auto;
}

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

.sp-avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

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

.sp-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

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

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

.sp-close {
  position: absolute;
  top: 6px;
  right: 8px;
  color: var(--text-dim);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 2px 6px;
}

.sp-close:hover {
  color: var(--text);
}

/* ===== ARTICLES & KNOWLEDGE PAGES STYLES ===== */
.article-header {
  padding: 70px 0 40px;
  text-align: center;
}

.article-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 40px 0 18px;
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 28px 0 14px;
}

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

.article-content ul, .article-content ol {
  margin: 18px 0 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content li {
  line-height: 1.65;
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
}

.article-content img {
  border-radius: var(--radius-md);
  margin: 30px 0;
  border: 1px solid var(--card-border);
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(23, 214, 192, 0.08), rgba(255, 138, 30, 0.08));
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  text-align: center;
  margin: 45px 0;
}

.article-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.article-cta-box p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* Breadcrumb Bar */
.breadcrumb-bar {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list a {
  color: var(--text-dim);
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.breadcrumb-list .sep {
  color: var(--text-dim);
}

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

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__badges, .hero__stats-row, .hero__cta-group {
    justify-content: center;
  }
  .hero__quote {
    border-left: none;
    border-top: 3px solid var(--secondary);
    border-radius: 8px;
  }
  .tv-panel-wrapper {
    margin-top: 30px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .screens-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .header__nav {
    display: none;
  }
  .header__cta-desktop {
    display: none;
  }
  .header__toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 16px 40px 16px;
    flex-direction: column;
    text-align: center;
  }
  .hero__h1 {
    font-size: 2.1rem;
  }
  .flash-card {
    padding: 24px 18px;
  }
  .flash-sub {
    font-size: 1.15rem;
  }
  .cd-block {
    width: 62px;
    padding: 10px 0;
  }
  .cd-num {
    font-size: 1.55rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .sp-popup {
    left: 12px;
    right: 12px;
    bottom: 16px;
    max-width: calc(100vw - 24px);
  }
  .breakdown-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 22px 18px;
  }
  .bd-cta {
    justify-content: center;
  }
  .month1-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .month1-left {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-header h2 {
    font-size: 1.85rem;
  }
  .tp-left, .tp-right {
    padding: 10px 14px;
    gap: 7px;
  }
  .tp-stars-row span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .rev-card {
    width: 290px;
    padding: 22px 18px 24px;
  }
  .testimonial-card {
    width: 290px;
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .urgency-banner::after { display: none; }
}
