/* ===========================
   Shine TV – Premium Stylesheet
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --gold: #f5c518;
  --gold-light: #ffd94a;
  --gold-dark: #c9991a;
  --bg-dark: #09090f;
  --bg-card: #111120;
  --bg-card2: #161628;
  --accent: #7b5cff;
  --accent2: #ff6b35;
  --text: #f0f0f8;
  --text-muted: #9090b0;
  --border: rgba(245, 197, 24, 0.15);
  --glow: 0 0 40px rgba(245, 197, 24, 0.3);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 9, 15, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(9, 9, 15, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #000;
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
  }

  50% {
    box-shadow: 0 0 40px rgba(245, 197, 24, 0.9);
  }
}

.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(245, 197, 24, 0.6) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-phone {
  font-size: 0.9rem;
  color: var(--gold) !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245, 197, 24, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 92, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #09090f 0%, #0d0d1e 50%, #09090f 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-up var(--dur, 8s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  20% {
    opacity: 0.6;
    transform: translateY(-20px) scale(1);
  }

  80% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0.3);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fade-in-down 0.8s ease both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fade-in-up 0.8s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
  animation: fade-in-up 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fade-in-up 0.8s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.35);
  font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(245, 197, 24, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.06);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  animation: fade-in-up 0.8s ease 0.4s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  animation: fade-in-right 1s ease 0.2s both;
}

.hero-screen {
  background: var(--bg-card);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(245, 197, 24, 0.15);
  position: relative;
}

.screen-bar {
  background: #1a1a2e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.screen-content {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.channel-card {
  background: var(--bg-card2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  animation: card-pulse 3s ease-in-out infinite;
}

.channel-card:nth-child(even) {
  animation-delay: 1.5s;
}

@keyframes card-pulse {

  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.05);
  }

  50% {
    border-color: rgba(245, 197, 24, 0.3);
  }
}

.channel-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(245, 197, 24, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.live-badge {
  background: #ff3b30;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  animation: blink 1s ease-in-out infinite;
}

/* ===== SECTION BASE ===== */
section {
  padding: 100px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-title .gold {
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===== TRUSTED STRIP ===== */
.trust-strip {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background: rgba(245, 197, 24, 0.03);
}

.trust-track {
  display: flex;
  gap: 64px;
  animation: scroll-left 25s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-item span:first-child {
  font-size: 1.2rem;
}

/* ===== FEATURES ===== */
.features {
  background: var(--bg-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 197, 24, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(245, 197, 24, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(245, 197, 24, 0.15);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d1e 100%);
}

.about .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.about-image-wrap {
  position: relative;
}

.about-image-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-block {
  background: var(--bg-card2);
  border: 1px solid rgba(245, 197, 24, 0.1);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-block:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-4px);
}

.stat-block .num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-block .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-block.span-2 {
  grid-column: span 2;
}

.about-float-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.4);
  animation: bounce-float 3s ease-in-out infinite;
}

@keyframes bounce-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===== CHANNELS ===== */
.channels {
  background: var(--bg-dark);
}

.channel-languages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.lang-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
}

.lang-tag:hover {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lang-tag .flag {
  font-size: 1.3rem;
}

.channels-count-bar {
  margin-top: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.count-item .num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.count-item .lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ===== REVIEWS ===== */
.reviews {
  background: linear-gradient(180deg, #0d0d1e 0%, var(--bg-dark) 100%);
  overflow: hidden;
}

.reviews-track-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #09090f, transparent);
}

.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #09090f, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  animation: reviews-scroll 35s linear infinite;
  width: max-content;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(245, 197, 24, 0.3);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.author-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CONTENT TYPES ===== */
.content-types {
  background: var(--bg-dark);
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.content-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.content-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.content-card:hover::after {
  opacity: 1;
}

.content-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.content-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.content-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== DEVICES ===== */
.devices {
  background: linear-gradient(180deg, var(--bg-dark), #0d0d1e);
}

.devices-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.device-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}

.device-category:hover {
  border-color: rgba(245, 197, 24, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.device-category-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.device-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.device-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-card2);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.device-item:hover {
  border-color: rgba(245, 197, 24, 0.2);
  background: rgba(245, 197, 24, 0.04);
}

.device-item .di {
  font-size: 1.3rem;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-dark);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.toggle-switch.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: var(--transition);
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.save-badge {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(245, 197, 24, 0.15), 0 32px 80px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.06) 0%, var(--bg-card) 100%);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 20px 6px;
  border-radius: 0 0 14px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: 10px;
}

.plan-price {
  margin-bottom: 8px;
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-features li .check {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.plan-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(245, 197, 24, 0.35) !important;
  color: var(--gold);
}

.plan-btn-outline:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: var(--gold) !important;
}

.plan-btn-solid {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

.plan-btn-solid:hover {
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.55);
  transform: translateY(-2px);
}

/* ===== FAQ ===== */
.faq {
  background: linear-gradient(180deg, #0d0d1e, var(--bg-dark));
}

.faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(245, 197, 24, 0.35);
}

.faq-q {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  gap: 16px;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: #000;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 22px;
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(123, 92, 255, 0.05));
  border-top: 1px solid rgba(245, 197, 24, 0.1);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: #06060d;
  border-top: 1px solid rgba(245, 197, 24, 0.08);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item .ico {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ===== NEWSLETTER FORM ===== */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.4);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(9, 9, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  padding: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS
   1400px  – Wide / Large Desktop
   1200px  – Standard Desktop
   1024px  – Small Desktop / Landscape Tablet
    768px  – Tablet (portrait)
    600px  – Large Phone / Phablet
    480px  – Standard Phone
    360px  – Small Phone
   =================================================== */

/* ---- 1400px: Wide screens — give content more breathing room ---- */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero .container {
    gap: 100px;
  }

  .hero-title {
    font-size: 4.4rem;
  }
}

/* ---- 1200px: Trim navbar gap slightly ---- */
@media (max-width: 1200px) {
  .nav-links {
    gap: 24px;
  }

  .navbar {
    padding: 0 28px;
  }

  .about .grid-2 {
    gap: 48px;
  }

  .footer-grid {
    gap: 32px;
  }
}

/* ---- 1024px: Small desktop / landscape tablet ---- */
@media (max-width: 1024px) {

  /* Navbar */
  .nav-links {
    gap: 18px;
  }

  .nav-phone {
    display: none;
  }

  /* hide phone on narrow desktop */

  /* Hero */
  .hero .container {
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Features — 2 cols */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* About */
  .about .grid-2 {
    gap: 40px;
  }

  /* Channels count */
  .channels-count-bar {
    padding: 28px 24px;
  }

  /* Pricing — 2 cols + last stretches */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: span 2;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
  }
}

/* ---- 768px: Tablet portrait ---- */
@media (max-width: 768px) {

  /* Base */
  section {
    padding: 72px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Navbar */
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    padding: 56px 20px 48px;
    gap: 40px;
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 28px;
  }

  .hero-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-stat .num {
    font-size: 1.5rem;
  }

  .hero-screen {
    border-radius: 16px;
  }

  .screen-content {
    padding: 16px;
    gap: 10px;
  }

  /* Trust strip */
  .trust-track {
    gap: 40px;
  }

  /* Features — 2 cols on tablet */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
  }

  .feature-card {
    padding: 24px 18px;
  }

  /* About */
  .about .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-float-badge {
    top: -12px;
    right: 12px;
    font-size: 0.78rem;
    padding: 9px 16px;
  }

  .about-image-card {
    padding: 24px;
    gap: 12px;
  }

  .stat-block {
    padding: 18px 12px;
  }

  .stat-block .num {
    font-size: 1.8rem;
  }

  /* Channels */
  .channel-languages {
    gap: 8px;
    margin-top: 32px;
  }

  .lang-tag {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .channels-count-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
    margin-top: 36px;
  }

  .count-item .num {
    font-size: 2rem;
  }

  /* Reviews */
  .reviews-track-wrapper::before,
  .reviews-track-wrapper::after {
    width: 60px;
  }

  .review-card {
    width: 280px;
    padding: 20px;
  }

  /* Content types */
  .content-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .content-card {
    padding: 28px 20px;
  }

  /* Devices */
  .devices-categories {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  /* FAQ */
  .faq-list {
    margin-top: 40px;
  }

  .faq-q {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-a {
    padding: 0 20px;
  }

  /* CTA */
  .cta-banner {
    padding: 60px 0;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions a,
  .cta-actions button {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  /* Section text */
  .section-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
  }

  .section-desc {
    font-size: 0.97rem;
  }
}

/* ---- 600px: Large phones / phablet ---- */
@media (max-width: 600px) {

  /* Hero */
  .hero .container {
    padding: 48px 16px 40px;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 0.97rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.92rem;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat .num {
    font-size: 1.4rem;
  }

  .hero-stat .label {
    font-size: 0.73rem;
  }

  /* Features — single col */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* About badge — pin inside */
  .about-float-badge {
    display: none;
  }

  /* Channels count — 2 col maintained */
  .channels-count-bar {
    gap: 12px;
    padding: 20px 12px;
  }

  .count-item .num {
    font-size: 1.7rem;
  }

  .count-item .lbl {
    font-size: 0.78rem;
  }

  /* Reviews */
  .review-card {
    width: 260px;
  }

  /* Pricing */
  .pricing-card {
    padding: 28px 20px;
  }

  .plan-price .amount {
    font-size: 2.4rem;
  }

  /* CTA */
  .cta-banner h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* FAQ */
  .faq-q {
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 0.95rem;
  }
}

/* ---- 480px: Standard phones ---- */
@media (max-width: 480px) {

  /* Base */
  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Navbar */
  .navbar {
    padding: 0 16px;
    height: 64px;
  }

  .mobile-menu {
    top: 64px;
    padding: 20px 16px;
    gap: 16px;
  }

  .nav-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .nav-logo .logo-text {
    font-size: 1.25rem;
  }

  /* Hero */
  .hero {
    padding-top: 64px;
  }

  .hero .container {
    padding: 40px 16px 36px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat .num {
    font-size: 1.3rem;
  }

  .screen-content {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
  }

  .channel-icon {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .channel-name {
    font-size: 0.72rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-desc {
    font-size: 0.92rem;
  }

  /* Trust strip */
  .trust-item {
    font-size: 0.82rem;
    gap: 7px;
  }

  /* Features */
  .features-grid {
    margin-top: 32px;
    gap: 12px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* About */
  .about-image-card {
    padding: 16px;
    gap: 10px;
  }

  .stat-block {
    padding: 14px 10px;
  }

  .stat-block .num {
    font-size: 1.5rem;
  }

  .stat-block .label {
    font-size: 0.73rem;
  }

  /* Channels */
  .lang-tag {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .channels-count-bar {
    grid-template-columns: 1fr 1fr;
    padding: 16px 12px;
    gap: 10px;
  }

  .count-item .num {
    font-size: 1.5rem;
  }

  /* Reviews */
  .reviews-track-wrapper {
    margin-top: 36px;
  }

  .reviews-track-wrapper::before,
  .reviews-track-wrapper::after {
    width: 40px;
  }

  .review-card {
    width: 240px;
    padding: 18px;
  }

  .review-text {
    font-size: 0.85rem;
  }

  /* Content types */
  .content-card {
    padding: 24px 16px;
  }

  .content-card-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
  }

  .content-card h3 {
    font-size: 1.1rem;
  }

  /* Devices */
  .device-category {
    padding: 20px 16px;
  }

  .device-item {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  /* Pricing */
  .pricing-card {
    padding: 24px 16px;
  }

  .plan-price .amount {
    font-size: 2.2rem;
  }

  .plan-features li {
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq-list {
    gap: 10px;
    margin-top: 32px;
  }

  .faq-q {
    padding: 16px;
    font-size: 0.88rem;
  }

  .faq-a {
    padding: 0 16px;
  }

  .faq-a p {
    font-size: 0.85rem;
  }

  /* CTA */
  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner p {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer-grid {
    gap: 28px;
    margin-bottom: 32px;
  }

  .footer-brand .logo-text {
    font-size: 1.4rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-col h4 {
    font-size: 0.8rem;
  }

  .footer-col ul li a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer {
    padding: 60px 0 24px;
  }

  /* Mobile menu */
  .mobile-menu a {
    font-size: 1rem;
    padding: 10px 0;
  }
}

/* ---- 360px: Very small phones ---- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.85rem;
    padding: 11px 16px;
  }

  .hero-stat .num {
    font-size: 1.2rem;
  }

  .screen-content {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .channels-count-bar {
    grid-template-columns: 1fr 1fr;
  }

  .nav-logo .logo-text {
    font-size: 1.15rem;
  }

  .pricing-card {
    padding: 20px 14px;
  }

  .plan-price .amount {
    font-size: 2rem;
  }

  .review-card {
    width: 220px;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }
}

/* ---- Touch: Disable hover effects that look bad on touch ---- */
@media (hover: none) {

  .feature-card:hover,
  .content-card:hover,
  .device-category:hover,
  .pricing-card:hover,
  .lang-tag:hover,
  .stat-block:hover,
  .review-card:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

/* ---- Print: Clean, ink-friendly ---- */
@media print {

  .navbar,
  .hamburger,
  .mobile-menu,
  .hero-particles,
  .trust-strip,
  .hero-grid,
  .hero-bg,
  .cta-banner,
  .reviews,
  footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section-title,
  .hero-title {
    color: #000;
  }
}

/* ============================================================
   ENHANCED ANIMATIONS & PERFORMANCE LAYER
   ============================================================ */

/* --- Page Load Fade-In --- */
@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: page-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* --- GPU acceleration hints --- */
.navbar,
.hero-screen,
.feature-card,
.pricing-card,
.device-card,
.review-card,
.ch-card,
.mission-card,
.particle,
.hero-visual,
.trust-track {
  will-change: transform;
  transform: translateZ(0);
}

/* --- Hero words stagger-in --- */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: word-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Section tag pop --- */
.section-tag {
  animation: tag-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes tag-pop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Shimmer effect on cards --- */
.feature-card::before,
.pricing-card::before,
.device-card::before,
.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(245, 197, 24, 0.06) 50%,
      transparent 60%);
  background-size: 200% 100%;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before,
.pricing-card:hover::before,
.device-card:hover::before,
.review-card:hover::before {
  opacity: 1;
  animation: shimmer 1s linear;
}

@keyframes shimmer {
  from {
    background-position: -200% 0;
  }

  to {
    background-position: 200% 0;
  }
}

/* Ensure cards have position:relative for ::before */
.feature-card,
.pricing-card,
.device-card,
.review-card {
  position: relative;
  overflow: hidden;
}

/* --- Float animation for hero visual --- */
.hero-visual {
  animation: gentle-float 5s ease-in-out infinite;
}

@keyframes gentle-float {

  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

/* --- Glowing orbs in hero --- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-pulse 6s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(245, 197, 24, 0.07);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(123, 92, 255, 0.08);
  bottom: -60px;
  right: 100px;
  animation-delay: 2s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(245, 197, 24, 0.05);
  top: 40%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes orb-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* --- Staggered reveal (group children) --- */
.stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger.visible>*:nth-child(2) {
  transition-delay: 0.15s;
}

.stagger.visible>*:nth-child(3) {
  transition-delay: 0.25s;
}

.stagger.visible>*:nth-child(4) {
  transition-delay: 0.35s;
}

.stagger.visible>*:nth-child(5) {
  transition-delay: 0.45s;
}

.stagger.visible>*:nth-child(6) {
  transition-delay: 0.55s;
}

.stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* --- Enhanced hero stat numbers --- */
.hero-stat .num {
  position: relative;
}

.hero-stat .num::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stat.counted .num::after {
  width: 100%;
}

/* --- Magnetic button pulse ring --- */
.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: transparent;
  border: 2px solid rgba(245, 197, 24, 0.5);
  opacity: 0;
  transform: scale(1);
  transition: none;
}

.btn-primary:hover::after {
  animation: ring-pulse 0.7s ease forwards;
}

@keyframes ring-pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

/* --- Channel card entrance stagger --- */
.cat-channels .ch-card {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.35s, box-shadow 0.35s;
}

.cat-channels.animated .ch-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cat-channels.animated .ch-card:nth-child(1) {
  transition-delay: 0.03s;
}

.cat-channels.animated .ch-card:nth-child(2) {
  transition-delay: 0.06s;
}

.cat-channels.animated .ch-card:nth-child(3) {
  transition-delay: 0.09s;
}

.cat-channels.animated .ch-card:nth-child(4) {
  transition-delay: 0.12s;
}

.cat-channels.animated .ch-card:nth-child(5) {
  transition-delay: 0.15s;
}

.cat-channels.animated .ch-card:nth-child(6) {
  transition-delay: 0.18s;
}

.cat-channels.animated .ch-card:nth-child(7) {
  transition-delay: 0.21s;
}

.cat-channels.animated .ch-card:nth-child(8) {
  transition-delay: 0.24s;
}

.cat-channels.animated .ch-card:nth-child(9) {
  transition-delay: 0.27s;
}

.cat-channels.animated .ch-card:nth-child(10) {
  transition-delay: 0.30s;
}

.cat-channels.animated .ch-card:nth-child(11) {
  transition-delay: 0.33s;
}

.cat-channels.animated .ch-card:nth-child(12) {
  transition-delay: 0.36s;
}

/* --- Live badge pulse --- */
.live-badge {
  animation: live-blink 1.5s ease-in-out infinite !important;
}

@keyframes live-blink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px rgba(255, 59, 48, 0.7);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 14px rgba(255, 59, 48, 1);
  }
}

/* --- Navbar entrance slide-down --- */
@keyframes nav-slide-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar {
  animation: nav-slide-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* --- Section divider animated gradient line --- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 197, 24, 0.4) 30%,
      rgba(245, 197, 24, 0.4) 70%,
      transparent);
  background-size: 200% 100%;
  animation: line-slide 3s linear infinite;
  margin: 0 auto;
  max-width: 600px;
}

@keyframes line-slide {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

/* --- Gradient border on featured pricing card --- */
.pricing-card.featured {
  background-clip: padding-box;
  position: relative;
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, #ffd94a, transparent 40%, #f5c518);
  z-index: -1;
  animation: border-spin 4s linear infinite;
}

@keyframes border-spin {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(30deg);
  }
}

/* --- Trust strip — double speed --- */
.trust-track {
  animation-duration: 20s !important;
}

/* --- Scroll progress bar at top of page --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* === Performance: contain layout for card grids === */
.features-grid,
.pricing-grid,
.devices-categories,
.footer-grid {
  contain: layout style;
}