/* ==========================================================================
   IPTV SUISSE - PREMIUM DARK LUXURY MOBILE-FIRST DESIGN SYSTEM
   FOCUS: 100/100 Mobile Performance, Mobile-First UX, SEO & High Conversions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #07090e;
  --bg-secondary: #0c0f17;
  --bg-tertiary: #141924;
  --bg-card: rgba(16, 22, 34, 0.85);
  --bg-card-hover: rgba(24, 33, 50, 0.95);
  --bg-glass: rgba(12, 16, 26, 0.7);
  
  /* Accent Colors */
  --accent-red: #e50914;
  --accent-red-hover: #ff1e27;
  --accent-red-glow: rgba(229, 9, 20, 0.4);
  --accent-silver: #e2e8f0;
  --accent-silver-glow: rgba(226, 232, 240, 0.3);
  --accent-gold: #ffb800;
  
  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #7d8aa0;
  
  /* Borders & Shadows */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(229, 9, 20, 0.5);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(229, 9, 20, 0.3);
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Layout */
  --max-width: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(229, 9, 20, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(226, 232, 240, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
}

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

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

ul {
  list-style: none;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 40%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffe066 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red {
  color: var(--accent-red);
}

.text-center {
  text-align: center;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 4.5rem 0;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-red), #990000);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--accent-red-glow);
  font-size: 1.1rem;
  color: white;
}

.logo-badge {
  background: rgba(229, 9, 20, 0.15);
  color: var(--accent-red);
  border: 1px solid var(--accent-red);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  min-height: 40px;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown {
  position: absolute;
  top: 115%;
  right: 0;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 130px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.lang-dropdown.show {
  display: flex;
}

.lang-option {
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-option:hover, .lang-option.active {
  background: rgba(229, 9, 20, 0.2);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  min-height: 44px; /* Optimal mobile touch target */
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), #b30000);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover, .btn-primary:active {
  background: linear-gradient(135deg, var(--accent-red-hover), var(--accent-red));
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.5);
}

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

.btn-secondary:hover, .btn-secondary:active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #ffb800, #d49700);
  color: #07090e;
  font-weight: 800;
}

.btn-gold:hover, .btn-gold:active {
  background: linear-gradient(135deg, #ffc425, #ffb800);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 184, 0, 0.4);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  min-height: 38px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  min-height: 52px;
}

.btn-block {
  width: 100%;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  padding-top: 130px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(226, 232, 240, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.25);
  color: var(--accent-silver);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-silver);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-silver);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(226, 232, 240, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(226, 232, 240, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(226, 232, 240, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: 1rem;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

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

/* Hero Showcase Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  font-size: 1.1rem;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.player-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.channel-tag {
  background: rgba(229, 9, 20, 0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  text-transform: uppercase;
}

.play-button {
  width: 56px;
  height: 56px;
  background: rgba(229, 9, 20, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: auto;
  box-shadow: 0 0 25px var(--accent-red);
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover, .play-button:active {
  transform: scale(1.1);
}

.player-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.stream-quality {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Feature Cards Grid */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.section-subtitle {
  color: var(--accent-red);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

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

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular {
  border-color: var(--accent-red);
  box-shadow: 0 0 35px rgba(229, 9, 20, 0.25);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.12) 0%, var(--bg-card) 45%);
}

.ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-red), #b30000);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(229, 9, 20, 0.4);
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-color);
}

.plan-name {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.8rem 0;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-red);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

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

.pricing-features {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-item i {
  color: var(--accent-silver);
  font-size: 0.95rem;
}

.feature-item.highlight {
  color: #ffffff;
  font-weight: 600;
}

.feature-item.highlight i {
  color: var(--accent-red);
}

/* Floating Buyer Notification Toast */
.buyer-toast {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-width: 340px;
}

.buyer-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.buyer-avatar {
  width: 36px;
  height: 36px;
  background: rgba(229, 9, 20, 0.2);
  color: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.buyer-text {
  font-size: 0.82rem;
  color: #fff;
  line-height: 1.3;
}

.buyer-time {
  color: var(--accent-silver);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Floating Action Widgets */
.floating-widgets {
  position: fixed;
  bottom: 85px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.float-whatsapp {
  background: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.float-whatsapp:hover, .float-whatsapp:active {
  transform: scale(1.1);
}

.float-telegram {
  background: #0088cc;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
}

/* Mobile Sticky Conversion Bottom Bar (Visible on Mobile) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 9, 14, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-color);
  padding: 0.6rem 1rem;
  z-index: 1001;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-inner {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.mobile-sticky-btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  outline: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--accent-red);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3.5rem 0 5rem 0; /* extra padding for mobile bar */
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 340px;
}

.footer-column h2 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-link:hover {
  color: var(--accent-red);
}

.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.payment-badge-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* MOBILE RESPONSIVE RULES (MOBILE FIRST PRIORITY) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto;
  }
  
  .hero-ctas, .hero-stats {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .navbar-container {
    height: 68px;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
    overflow-y: auto;
  }
  
  .nav-menu.show {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .floating-widgets {
    bottom: 75px;
    right: 15px;
  }

  .buyer-toast {
    bottom: 75px;
    left: 15px;
    right: 15px;
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Device Selector Bar */
.device-selector-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.device-tabs-bar {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: 50px;
  gap: 6px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.device-tabs-bar::-webkit-scrollbar {
  display: none;
}

.device-tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  transition: var(--transition);
}

.device-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.device-tab.active {
  background: linear-gradient(135deg, var(--accent-red), #b30000);
  color: #ffffff;
  border-color: var(--accent-red);
  box-shadow: 0 0 20px var(--accent-red-glow);
}

/* Pricing Grid 4 matching exact screenshots */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid-4 {
    grid-template-columns: 1fr;
  }
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.tier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.tier-card.popular {
  border-color: var(--accent-red);
  box-shadow: 0 0 35px rgba(229, 9, 20, 0.25);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.12) 0%, var(--bg-card) 40%);
}

.badge-popular-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-red), #990000);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(229, 9, 20, 0.4);
}

.badge-discount-corner {
  position: absolute;
  top: 12px;
  right: -8px;
  background: #00c853;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.4);
  transform: rotate(3deg);
}

.tier-duration {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.tier-price-box {
  text-align: center;
  margin: 1rem 0 1.5rem 0;
}

.tier-currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-right: 4px;
}

.tier-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.tier-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.check-item i {
  color: var(--accent-red);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.btn-buy-now {
  background: linear-gradient(135deg, var(--accent-red), #b30000);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  width: 100%;
}

.btn-buy-now:hover, .btn-buy-now:active {
  background: linear-gradient(135deg, var(--accent-red-hover), var(--accent-red));
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.5);
}

/* ==========================================================================
   CHANNEL SHOWCASE MARQUEE
   ========================================================================== */
.channel-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.channel-marquee-row {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.channel-marquee-row.row-left {
  animation: marquee-left 40s linear infinite;
}

.channel-marquee-row.row-right {
  animation: marquee-right 44s linear infinite;
}

.channel-marquee-wrap:hover .channel-marquee-row {
  animation-play-state: paused;
}

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

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

.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.channel-chip:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.channel-chip i {
  color: var(--accent-red);
  font-size: 1rem;
}

.channel-chip .chip-flag {
  font-size: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .channel-marquee-row {
    animation: none;
  }
}

/* ==========================================================================
   HOW IT WORKS - STEPS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: var(--transition);
}

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

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-red), #990000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 0 20px var(--accent-red-glow);
}

.step-icon {
  font-size: 1.8rem;
  color: var(--accent-silver);
  margin-bottom: 0.8rem;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DEVICE COMPATIBILITY ROW
   ========================================================================== */
.device-compat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.device-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem 0.8rem;
  text-align: center;
  transition: var(--transition);
}

.device-chip:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.device-chip i {
  font-size: 1.8rem;
  color: var(--accent-red);
  margin-bottom: 0.6rem;
  display: block;
}

.device-chip span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .device-compat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .device-compat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  color: #e2e8f0;
  font-size: 0.94rem;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red), #990000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

.testimonial-loc {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   CHANNEL LIST PAGE
   ========================================================================== */
.info-chip-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.info-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
}

.catalog-preview-banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), rgba(255, 184, 0, 0.02));
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.5rem;
}

.catalog-preview-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.3rem;
}

.catalog-preview-banner h2,
.catalog-preview-banner h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.catalog-preview-banner p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

@media (max-width: 640px) {
  .catalog-preview-banner {
    flex-direction: column;
    text-align: center;
  }
}

.search-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}

.search-filter-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 320px;
}

.search-input-wrapper i {
  position: absolute;
  left: 1.1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.9rem 2.8rem;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #ffffff;
  outline: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.search-input::placeholder {
  color: var(--text-dim);
}

.search-input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.search-clear {
  position: absolute;
  right: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: var(--transition);
}

.search-clear:hover {
  background: var(--accent-red);
  color: #ffffff;
}

.country-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 200px;
}

.country-select-wrapper i {
  position: absolute;
  left: 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  pointer-events: none;
}

.country-select {
  width: 100%;
  padding: 0.9rem 2rem 0.9rem 2.6rem;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #ffffff;
  outline: none;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2394a3b8'%3E%3Cpath d='M8 11 3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px;
}

.country-select:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.country-select option {
  background: var(--bg-tertiary);
  color: #ffffff;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.pill:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.pill.active {
  background: linear-gradient(135deg, var(--accent-red), #b30000);
  color: #ffffff;
  border-color: var(--accent-red);
  box-shadow: 0 0 16px var(--accent-red-glow);
}

.channels-meta {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  padding: 0 0.2rem;
}

.channels-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  overflow-y: hidden;
}

.channels-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.channels-table thead th {
  text-align: left;
  padding: 1rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.channels-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.channels-table th.sortable:hover {
  color: #ffffff;
}

.sort-icon {
  font-size: 0.7rem;
  opacity: 0.5;
  margin-left: 2px;
}

.channels-table th.sort-active .sort-icon {
  opacity: 1;
  color: var(--accent-red);
}

.channels-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.channels-table tbody tr:last-child {
  border-bottom: none;
}

.channels-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.channels-table td {
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.channel-name-cell {
  color: #ffffff;
  font-weight: 700;
}

.channel-group-cell {
  color: var(--text-muted);
}

.quality-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.quality-badge.tier-4k {
  color: var(--accent-gold);
  border-color: rgba(255, 184, 0, 0.4);
  background: rgba(255, 184, 0, 0.08);
}

.quality-badge.tier-fhd {
  color: var(--accent-silver);
  border-color: rgba(226, 232, 240, 0.3);
  background: rgba(226, 232, 240, 0.06);
}

.lang-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.channels-empty-row td {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
  white-space: normal;
}

.support-cta-card {
  margin-top: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.support-cta-card h2,
.support-cta-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.support-cta-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 480px;
}

@media (max-width: 640px) {
  .support-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .support-cta-card .btn {
    width: 100%;
  }

  .country-select-wrapper {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* ==========================================================================
   SETUP / INSTALLATION TUTORIALS PAGE
   ========================================================================== */
.prereq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  margin-bottom: 2.5rem;
}

.prereq-card h2 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.prereq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem 1.5rem;
}

.prereq-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.prereq-item i {
  color: var(--accent-red);
  margin-top: 3px;
  flex-shrink: 0;
}

.setup-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.75rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent-red), #b30000);
  color: #ffffff;
  border-color: var(--accent-red);
  box-shadow: 0 0 20px var(--accent-red-glow);
}

.setup-guide-content {
  display: none;
}

.setup-guide-content.active {
  display: block;
  animation: setupFadeIn 0.3s ease;
}

@keyframes setupFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.setup-guide-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.setup-guide-header i {
  font-size: 1.3rem;
}

.setup-guide-header h2 {
  font-size: 1.35rem;
}

.setup-guide-apps {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

.setup-guide-apps strong {
  color: #ffffff;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  transition: var(--transition);
}

.step-item:hover {
  border-color: var(--border-bright);
}

.setup-step-number {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-red), #990000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 0 14px var(--accent-red-glow);
}

.step-details h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.step-tip {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: rgba(255, 184, 0, 0.06);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-tip i {
  color: var(--accent-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Accordion (also used by the FAQ page) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.faq-header i {
  color: var(--text-dim);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
  color: var(--accent-red);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-body {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .setup-guide-header h2 {
    font-size: 1.15rem;
  }

  .step-item {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ==========================================================================
   RESELLER PAGE
   ========================================================================== */
.reseller-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--accent-gold);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto 1.5rem auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reseller-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pack-per-credit {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: -0.8rem;
  margin-bottom: 1.4rem;
}

.credit-convert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .reseller-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .credit-convert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.blog-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.blog-card-tag {
  color: var(--accent-red);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.blog-card-link {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-link i {
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-link i {
  transform: translateX(4px);
}

.blog-more-soon {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 2.5rem;
}

/* Article page layout, shared by all blog posts */
.article-header {
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.article-breadcrumb a {
  color: var(--text-muted);
}

.article-breadcrumb a:hover {
  color: var(--accent-red);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.8rem;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem 0;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.article-body strong {
  color: #ffffff;
}

.article-body a {
  color: var(--accent-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body .prereq-card,
.article-body .step-list,
.article-body .channels-table-container,
.article-body .faq-accordion,
.article-body .features-grid,
.article-body .device-compat-grid,
.article-body .support-cta-card {
  margin: 1.5rem 0 2rem 0;
}

