/*
Theme Name: Charleroi IPTV
Theme URI: https://charleroi-iptv.be
Author: Antigravity
Description: Premium Spatial Glass theme for Charleroi IPTV Belgique. Fully responsive on mobile, tablet, and desktop.
Version: 5.4.0
Text Domain: charleroi-iptv
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Palette & Materials */
  --bg-dark: #050507; 
  --glass-surface: rgba(20, 20, 28, 0.55);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-light: rgba(255, 255, 255, 0.2);
  
  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-tertiary: rgba(255, 255, 255, 0.35);
  
  /* Accents */
  --accent-blue: #3b82f6;
  --accent-light: #60a5fa;
  
  /* Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-snappy: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  --container-width: 1200px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-display);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  min-height: 100vh;
  word-wrap: break-word;
}

.site, #page, main, section, .section, .container {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

img, video, iframe, embed, object, svg, canvas, picture {
  max-width: 100% !important;
  height: auto;
}

pre, code, table {
  max-width: 100% !important;
  overflow-x: auto;
  word-break: break-word;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   Spatial Ambient Background
   ========================================================================== */
.spatial-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden !important;
  contain: paint;
  background: var(--bg-dark);
  pointer-events: none;
}

.orb-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  animation: float 20s ease-in-out infinite alternate;
}

.orb-2 {
  position: absolute;
  top: 40%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  animation: float 25s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  position: absolute;
  bottom: -15%;
  left: 25%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  animation: float 22s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 8%) scale(1.08); }
  100% { transform: translate(-4%, -4%) scale(0.92); }
}

/* ==========================================================================
   Typography & Headings
   ========================================================================== */
h1, h2, h3, h4 { 
  font-family: var(--font-display); 
  font-weight: 800; 
  line-height: 1.15; 
  margin-bottom: 1rem; 
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.85rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; }

p { 
  color: var(--text-secondary); 
  font-size: 1.05rem; 
  margin-bottom: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   Spatial Glass Materials
   ========================================================================== */
.glass-pane {
  background: var(--glass-surface);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.site {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.container { 
  width: 100%;
  max-width: var(--container-width); 
  margin: 0 auto; 
  padding: 0 1.5rem; 
  box-sizing: border-box !important;
}

.section { 
  padding: 5rem 0; 
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid var(--glass-border-light);
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}

.btn:hover { 
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  color: #fff;
}

.btn-primary { 
  background: #ffffff;
  color: #000000 !important;
  border: 1px solid #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.btn-primary:hover { 
  background: #e6e6e6;
  border-color: #e6e6e6;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,255,255,0.3);
}

.btn-outline {
  border: 1px solid var(--glass-border-light);
  background: transparent;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.02rem;
}

/* ==========================================================================
   Header (Spatial Floating Header)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 2.5rem));
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-glass {
  background: rgba(15, 15, 22, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}

.site-brand a {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.brand-accent {
  color: var(--accent-light);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-snappy);
  padding: 6px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10001;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
}

.mobile-menu-toggle .bar {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition-snappy);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 92vh;
  padding-top: 200px;
  padding-bottom: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.32;
  filter: saturate(150%) contrast(110%);
  z-index: 0;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5,5,7,0.5) 0%, rgba(5,5,7,0.7) 60%, var(--bg-dark) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  text-align: left;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

.hero-tag-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.hero h1 { 
  max-width: 950px; 
  margin: 0 0 1.5rem 0;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.15;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}

.hero p { 
  max-width: 720px; 
  margin: 0 0 2.25rem 0; 
  font-size: clamp(1.05rem, 1.8vw, 1.25rem); 
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-buttons { 
  display: flex; 
  align-items: center; 
  gap: 1.25rem; 
  flex-wrap: wrap; 
}

/* Special Offer Card (Matching User Screenshot) */
.hero-offer-card {
  padding: 2.25rem 2rem;
  border-radius: 28px;
  background: rgba(12, 12, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  text-align: left;
}

.hero-offer-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(30, 58, 138, 0.35);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius-full);
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.hero-offer-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.discount-tag {
  color: var(--accent-light);
}

.hero-offer-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Inner Price Box */
.hero-offer-price-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.price-box-left .plan-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.price-box-right {
  text-align: right;
}

.price-box-right .price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-box-right .price-per-month {
  font-size: 0.85rem;
  font-weight: 700;
  color: #34d399;
  margin-top: 4px;
}

.hero-offer-btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.08rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  text-align: center;
}

.hero-offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   Infinite Channel Marquee Slider
   ========================================================================== */
.channel-slider-section {
  padding: 1.75rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(10, 10, 15, 0.4);
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.marquee-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: marquee 35s linear infinite;
  padding: 0.5rem 0;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-snappy);
}

.channel-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.channel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-light);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.screen-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem auto 3.5rem;
  padding: 8px 16px;
  background: rgba(15, 15, 22, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  width: fit-content;
  max-width: 100%;
  backdrop-filter: blur(20px);
  box-sizing: border-box;
}

.screen-selector-label {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.screen-selector-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.screen-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-snappy);
}

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

.screen-btn.active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  align-items: stretch;
  margin-top: 1rem;
}

.pricing-card {
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: visible !important;
}

.pricing-card.featured {
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(25, 25, 38, 0.65);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(96, 165, 250, 0.1);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  z-index: 10;
  white-space: nowrap;
}

.pricing-duration {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}

.pricing-price .currency {
  font-size: 1.75rem;
  margin-left: 4px;
  color: var(--text-secondary);
}

.pricing-per-month {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-light);
  font-weight: 800;
  font-size: 0.9rem;
}

.pricing-card .btn {
  width: 100%;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.review-text {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-container {
  max-width: 840px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: var(--glass-border-light);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  line-height: 1;
  display: inline-block;
  user-select: none;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-light);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.open .faq-answer {
  opacity: 1;
  padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  padding: 4rem 0 6rem;
}

.cta-card {
  padding: 4.5rem 2.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border-color: var(--glass-border-light);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Creative Blog & Magazine Architecture
   ========================================================================== */
.featured-post-card {
  margin-bottom: 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-color: var(--glass-border-light);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  transition: transform var(--transition-smooth);
}

.featured-post-card:hover {
  transform: translateY(-4px);
}

.featured-post-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

@media (max-width: 991px) {
  .featured-post-grid {
    grid-template-columns: 1fr;
  }
}

.featured-post-thumb {
  position: relative;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
}

.featured-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-post-card:hover .featured-post-thumb img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 6px 14px;
  background: rgba(15, 15, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.featured-post-content {
  padding: 3rem 2.5rem;
}

@media (max-width: 768px) {
  .featured-post-content {
    padding: 2rem 1.5rem;
  }
}

.post-meta-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-dot {
  color: var(--text-tertiary);
}

.meta-tag {
  background: rgba(96, 165, 250, 0.12);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.meta-date, .meta-read {
  color: var(--text-muted);
  font-weight: 500;
}

.featured-post-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.featured-post-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-snappy);
}

.featured-post-title a:hover {
  color: var(--accent-light);
}

.featured-post-excerpt {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* Editorial Grid */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.contact-grid,
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  align-items: start;
}

.editorial-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.editorial-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-light);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.editorial-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.editorial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-card:hover .editorial-thumb img {
  transform: scale(1.06);
}

.editorial-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 4px 12px;
  background: rgba(15, 15, 22, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}

.editorial-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editorial-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.editorial-title a {
  color: #ffffff;
}

.editorial-title a:hover {
  color: var(--accent-light);
}

.editorial-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.editorial-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.editorial-card:hover .editorial-link {
  gap: 12px;
  color: #ffffff;
}

/* Single Article Layout */
.article-single-page {
  padding-top: 130px;
  padding-bottom: 5rem;
}

.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.article-breadcrumbs a {
  color: var(--text-secondary);
  transition: color var(--transition-snappy);
}

.article-breadcrumbs a:hover {
  color: var(--accent-light);
}

.article-breadcrumbs .sep {
  color: var(--text-tertiary);
}

.article-breadcrumbs .current {
  color: var(--accent-light);
  font-weight: 600;
}

.single-post-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.25rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .single-post-grid {
    grid-template-columns: 1fr 340px;
    gap: 1.75rem;
  }
}

@media (max-width: 991px) {
  .single-post-grid {
    grid-template-columns: 1fr;
  }
}

/* Main Column Components */
.article-header-card {
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.75rem;
}

.article-meta-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.badge-cat {
  padding: 4px 12px;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-pill {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.single-post-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.article-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 1rem;
  flex-wrap: wrap;
}

.author-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  vertical-align: middle;
}

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

.author-share-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-snappy);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
}

.share-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.share-telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
}

.article-cover-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  margin-bottom: 1.75rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border-light);
}

@media (max-width: 768px) {
  .article-cover-frame {
    height: 240px;
  }
}

.article-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body-wrapper {
  padding: 3rem 2.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .article-header-card,
  .article-body-wrapper {
    padding: 1.75rem 1.25rem !important;
  }
}

/* Sidebar Styling */
.single-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 100px;
}

.sidebar-widget-card {
  padding: 2rem 1.85rem;
  border-radius: var(--radius-lg);
}

.sidebar-widget-card.featured-widget {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(20, 20, 32, 0.7);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.widget-badge-row {
  margin-bottom: 1rem;
}

.badge-promo {
  padding: 4px 12px;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: 0.5px;
}

.badge-support {
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  color: #34d399;
  letter-spacing: 0.5px;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #ffffff;
  line-height: 1.3;
}

.discount-badge {
  color: var(--accent-light);
  font-weight: 800;
}

.widget-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.widget-price-box {
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.plan-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.plan-price {
  text-align: right;
}

.price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1;
}

.price-sub {
  font-size: 0.72rem;
  color: #34d399;
  font-weight: 700;
}

.btn-widget-cta {
  width: 100%;
  font-weight: 800;
  padding: 12px 16px;
  font-size: 0.92rem;
}

.widget-support-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-whatsapp-direct {
  width: 100%;
  background: #10b981;
  border-color: #10b981;
  color: #ffffff !important;
  font-weight: 700;
  gap: 8px;
}

.btn-whatsapp-direct:hover {
  background: #059669;
  border-color: #059669;
}

.btn-telegram-direct {
  width: 100%;
  background: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff !important;
  font-weight: 700;
  gap: 8px;
}

.btn-telegram-direct:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.article-content-inner {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-content-inner h2 {
  font-size: 1.65rem;
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article-content-inner p {
  margin-bottom: 1.5rem;
}

.article-footer-nav {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==========================================================================
   Page & Inner Templates
   ========================================================================== */
.page-header {
  padding-top: 150px;
  padding-bottom: 40px;
  text-align: center;
}

.entry-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.content-area {
  padding-bottom: 5rem;
}

.entry-content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.entry-content h2, .entry-content h3 {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 10;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 360px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition-snappy);
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.payment-methods {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.payment-method {
  padding: 4px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 991px) {
  .site-header {
    top: 0.75rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 1.5rem);
    transform: none;
  }
  .header-glass {
    padding: 8px 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-header {
    padding: 7px 14px;
    font-size: 0.82rem;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
    z-index: 9999;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
  }
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .nav-links a {
    font-size: 1.35rem;
    display: block;
    padding: 8px 16px;
  }
  .hero {
    min-height: 85vh;
    padding-top: 160px;
    padding-bottom: 80px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem !important;
  }
  .section {
    padding: 4rem 0;
  }
  .hero {
    min-height: 85vh;
    padding-top: 155px;
    padding-bottom: 75px;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 7.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2.25rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .screen-selector {
    flex-direction: column;
    border-radius: var(--radius-md);
    width: 100%;
    padding: 12px;
    gap: 8px;
    margin-bottom: 2.5rem;
  }
  .screen-selector-label {
    margin-right: 0;
    margin-bottom: 2px;
  }
  .screen-selector-btns {
    justify-content: center;
    width: 100%;
    gap: 6px;
  }
  .screen-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    flex: 1 1 auto;
    text-align: center;
  }
  .pricing-grid,
  .features-grid,
  .reviews-grid,
  .editorial-grid,
  .contact-grid,
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pricing-card {
    padding: 2.25rem 1.25rem;
  }
  .feature-card,
  .review-card,
  .editorial-body {
    padding: 1.75rem 1.25rem;
  }
  .article-body-wrapper,
  .trial-form-card {
    padding: 1.75rem 1.25rem !important;
  }
  .faq-question {
    padding: 1.25rem 1rem;
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 1rem;
  }
  .faq-item.open .faq-answer {
    padding: 0 1rem 1.25rem 1rem;
  }
  .cta-section {
    padding: 3rem 0 4rem;
  }
  .cta-card {
    padding: 2.5rem 1.25rem;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .page-header {
    padding-top: 120px;
    padding-bottom: 30px;
  }
  .entry-content.glass-pane {
    padding: 1.75rem 1.25rem !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem !important;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
  }
  .site-brand a {
    font-size: 1.1rem;
  }
  .pricing-price {
    font-size: 2.5rem;
  }
  .channel-badge {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

/* Floating Action Buttons */
.floating-btn {
  position: fixed;
  bottom: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  color: #ffffff !important;
}

.float-whatsapp {
  right: 1.5rem;
  background: #10b981;
}

.float-telegram {
  left: 1.5rem;
  background: #3b82f6;
}

  .channel-badge {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

/* Floating Action Buttons */
.floating-btn {
  position: fixed;
  bottom: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  color: #ffffff !important;
}

.float-whatsapp {
  right: 1.5rem;
  background: #10b981;
}

.float-telegram {
  left: 1.5rem;
  background: #3b82f6;
}

@media (max-width: 768px) {
  .floating-btn {
    width: 44px;
    height: 44px;
    bottom: 1.25rem;
  }
  .float-whatsapp { right: 1rem; }
  .float-telegram { left: 1rem; }
}

/* ==========================================================================
   3D Coverflow Showcase Component (Channels & VOD Movies)
   ========================================================================== */
.coverflow-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.coverflow-section.alt-bg {
  background: rgba(10, 10, 18, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-tag-pill {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-tag-pill.tag-movies {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.coverflow-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 3.5rem auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-stage {
  position: relative;
  width: 100%;
  height: 380px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-card {
  position: absolute;
  width: min(460px, calc(100% - 2rem));
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, filter 0.6s ease, z-index 0.6s ease, box-shadow 0.6s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  border: 1px solid var(--glass-border-light);
}

.card-inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.75;
  transition: opacity 0.4s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 20, 0.3) 0%, rgba(10, 10, 18, 0.9) 100%);
  z-index: 1;
}

.coverflow-card .card-content-top,
.coverflow-card .card-content-main {
  position: relative;
  z-index: 2;
}

/* Coverflow Card States */
.coverflow-card.card-active {
  transform: translateX(0) translateZ(90px) rotateY(0deg) scale(1.05);
  opacity: 1;
  z-index: 10;
  filter: none;
  box-shadow: 0 30px 70px rgba(0,0,0,0.8), 0 0 50px rgba(59, 130, 246, 0.3);
}

.coverflow-card.card-next-1 {
  transform: translateX(250px) translateZ(-50px) rotateY(-25deg) scale(0.85);
  opacity: 0.7;
  z-index: 5;
  filter: brightness(0.7);
}

.coverflow-card.card-prev-1 {
  transform: translateX(-250px) translateZ(-50px) rotateY(25deg) scale(0.85);
  opacity: 0.7;
  z-index: 5;
  filter: brightness(0.7);
}

.coverflow-card.card-next-2 {
  transform: translateX(420px) translateZ(-140px) rotateY(-40deg) scale(0.7);
  opacity: 0.35;
  z-index: 2;
  filter: brightness(0.5);
}

.coverflow-card.card-prev-2 {
  transform: translateX(-420px) translateZ(-140px) rotateY(40deg) scale(0.7);
  opacity: 0.35;
  z-index: 2;
  filter: brightness(0.5);
}

/* Card Inner Content */
.card-content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-status-pill {
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.25);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.live-status-pill.badge-vod {
  background: rgba(147, 51, 234, 0.25);
  border-color: rgba(147, 51, 234, 0.5);
  color: #e9d5ff;
}

.card-cat-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-icon-emoji {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.meta-viewers {
  color: #34d399;
}

.meta-lang {
  color: var(--text-muted);
}

.card-description {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.card-action-btn {
  width: fit-content;
}

/* Arrows Navigation */
.coverflow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 15, 25, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-light);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition-snappy);
}

.coverflow-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow { left: -1rem; }
.next-arrow { right: -1rem; }

/* Dots Navigation */
.coverflow-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.dot-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-snappy);
  position: relative;
}

.dot-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}

.dot-btn.active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
}

/* Responsive Coverflow adjustments */
@media (max-width: 991px) {
  .coverflow-stage {
    height: 360px;
  }
  .coverflow-card.card-next-1 {
    transform: translateX(160px) translateZ(-40px) rotateY(-20deg) scale(0.85);
  }
  .coverflow-card.card-prev-1 {
    transform: translateX(-160px) translateZ(-40px) rotateY(20deg) scale(0.85);
  }
  .coverflow-card.card-next-2,
  .coverflow-card.card-prev-2 {
    opacity: 0;
    pointer-events: none;
  }
  .prev-arrow { left: 0; }
  .next-arrow { right: 0; }
}

@media (max-width: 768px) {
  .coverflow-section {
    padding: 3.5rem 0;
  }
  .coverflow-stage {
    height: 340px;
  }
  .coverflow-card {
    min-width: 85%;
    padding: 1.5rem 1.25rem;
    min-height: 310px;
  }
  .coverflow-card.card-next-1,
  .coverflow-card.card-prev-1 {
    opacity: 0.15;
    transform: scale(0.8);
  }
  .card-title {
    font-size: 1.2rem;
  }
  .card-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   WhatsApp Official Green Buttons & Express Checkout System
   ========================================================================== */
.btn-whatsapp-express,
.btn-whatsapp-direct,
.float-whatsapp,
.btn-trial-wa,
.guide-wa-btn {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.btn-whatsapp-express:hover,
.btn-whatsapp-direct:hover,
.float-whatsapp:hover,
.btn-trial-wa:hover,
.guide-wa-btn:hover {
  background: #1ebd5b !important;
  border-color: #1ebd5b !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* Pricing Card Action Layout */
.pricing-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1rem;
}

.pricing-card-actions .btn {
  width: 100%;
}

.btn-whatsapp-express {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
}

/* Inner Page Layout System (Free Trial, Contact, Guide) */
.inner-page-layout {
  padding-top: 130px;
  padding-bottom: 5rem;
}

.inner-page-hero {
  margin-bottom: 2.5rem;
}

.inner-page-hero .entry-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.inner-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .inner-grid-layout {
    grid-template-columns: 1fr;
  }
}

.trial-form-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: #34d399;
  margin-bottom: 1.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.custom-form .form-group {
  margin-bottom: 1.25rem;
}

.custom-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-snappy);
}

/* Country Code & Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

.custom-country-picker {
  position: relative;
  flex: 0 0 175px;
  min-width: 140px;
}

@media (max-width: 480px) {
  .custom-country-picker {
    flex: 0 0 145px;
    min-width: 130px;
  }
}

.country-picker-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-snappy);
}

.country-picker-trigger:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.flag-icon-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.country-label {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.picker-arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.country-picker-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 230px;
  max-height: 250px;
  overflow-y: auto;
  background: rgba(15, 15, 24, 0.98);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  z-index: 99999;
  display: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 4px 0;
}

.country-picker-dropdown.open {
  display: block;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.country-option:hover {
  background: rgba(59, 130, 246, 0.15);
  color: #ffffff;
}

.country-option.active {
  background: rgba(37, 211, 102, 0.15);
  color: #34d399;
  font-weight: 700;
}

.phone-input-group .phone-number-input {
  flex: 1;
}


.custom-form select option {
  background: #0f0f16;
  color: #ffffff;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.btn-submit-form {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.form-divider span {
  position: relative;
  background: rgba(15, 15, 22, 0.9);
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 1px;
}

.btn-trial-wa {
  width: 100%;
  padding: 12px 16px;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Contact Page Methods */
.contact-method-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
}

.contact-method-card.wa-featured {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(15, 30, 22, 0.65);
}

.method-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.method-icon {
  font-size: 1.75rem;
}

.fast-badge {
  padding: 4px 10px;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #34d399;
}

.fast-badge.tg-badge {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

/* Installation Guide Cards & Steps */
.guide-card {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guide-card-header {
  margin-bottom: 1.5rem;
}

.device-icon {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.guide-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.guide-steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--accent-light);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-wa-btn {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.85rem;
}

.guide-help-cta {
  margin-top: 3.5rem;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
}

.guide-help-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.guide-help-cta p {
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
}

.help-cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Checkout Page & Dedicated Pricing Styles
   ========================================================================== */
.checkout-grid-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .checkout-grid-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-card {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-full);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-header h3 {
  font-size: 1.35rem;
  margin: 0;
  color: #ffffff;
}

/* Plan Option Cards */
.checkout-plans-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-snappy);
  position: relative;
}

.plan-option-card:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.plan-option-card.selected {
  border-color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

.plan-option-card input[type="radio"] {
  accent-color: var(--accent-blue);
  width: 18px;
  height: 18px;
  margin-right: 12px;
  cursor: pointer;
}

.plan-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
}

.plan-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.plan-total {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-light);
  white-space: nowrap;
}

.plan-option-card.featured-option {
  border-color: rgba(96, 165, 250, 0.4);
}

.plan-option-card .mini-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* Payment Option Cards */
.payment-methods-selector {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.payment-option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-snappy);
}

.payment-option-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.payment-option-card.selected {
  border-color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.payment-option-card input[type="radio"] {
  accent-color: #34d399;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.payment-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.payment-text {
  display: flex;
  flex-direction: column;
}

.payment-text strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.payment-text small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-checkout-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Order Summary Column */
.summary-card {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}

.summary-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.summary-line span:last-child {
  color: #ffffff;
  font-weight: 600;
}

.summary-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.summary-total-bar .total-amount {
  font-size: 1.6rem;
  color: var(--accent-light);
  font-weight: 800;
}

.summary-guarantees {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.g-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.g-text strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
}

.g-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

/* Comparison Table Styling */
.comparison-table th, .comparison-table td {
  border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Laptop Side Margins for Content (Excludes Hero & Footer)
   ========================================================================== */
@media (min-width: 992px) {
  /* Ensure Hero & Footer remain 100% full-width edge-to-edge */
  .hero, 
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Apply horizontal side breathing room to laptop content sections */
  .site-main .container,
  .section:not(.hero) .container {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .site-main .container,
  .section:not(.hero) .container {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
}



/* ==========================================================================
   Checkout Thank You Modal & Payment Trust Bar
   ========================================================================== */
.payment-trust-bar {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.payment-trust-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payment-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
}

.checkout-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn-complete-order {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Thank You Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 540px;
  background: rgba(20, 20, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(59, 130, 246, 0.15);
  text-align: center;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-snappy);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid rgba(37, 211, 102, 0.4);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.modal-summary-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.75rem;
}

.modal-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.modal-summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  padding-top: 10px;
}

.modal-summary-row strong {
  color: #ffffff;
}

.modal-wa-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   WhatsApp Reviews Continuous Marquee Auto-Scrolling (Ultra-Premium Smartphone Frame)
   ========================================================================== */
.reviews-section {
  position: relative;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  padding: 6rem 0 5rem 0;
  background: #050507;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.reviews-section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85vw;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 75%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.reviews-header {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.wa-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: #34d399;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.1);
}

.pulse-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: pulseGreen 2s infinite;
  display: inline-block;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.reviews-gradient-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.reviews-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.stars-gold {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.wa-reviews-marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 2;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.wa-reviews-marquee-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: waMarqueeInfinite 45s linear infinite;
  will-change: transform;
}

.wa-reviews-marquee-wrapper:hover .wa-reviews-marquee-track {
  animation-play-state: paused;
}

/* Smartphone Frame Card */
.wa-phone-frame {
  flex: 0 0 300px;
  width: 300px;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (max-width: 640px) {
  .wa-phone-frame {
    flex: 0 0 230px;
    width: 230px;
    border-radius: 20px;
  }
}

.phone-speaker-bar {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
}

.wa-phone-frame:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 30px 60px rgba(37, 211, 102, 0.25), 0 0 30px rgba(37, 211, 102, 0.15);
}

.wa-full-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@keyframes waMarqueeInfinite {
  0% { transform: translateX(0%); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

/* WhatsApp Lightbox Modal */
.wa-lightbox-card {
  width: 92%;
  max-width: 500px;
  background: rgba(10, 10, 15, 0.96);
  border: 1px solid var(--glass-border-light);
  border-radius: 28px;
  padding: 1.25rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
}

.wa-lightbox-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   Trial Auto Popup Modal
   ========================================================================== */
.trial-auto-popup {
  position: fixed;
  bottom: 20px;
  right: -400px;
  width: 100%;
  max-width: 380px;
  z-index: 9999;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.trial-auto-popup.show {
  right: 20px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.trial-auto-popup-content {
  position: relative;
  background: var(--glass-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.trial-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-snappy);
}

.trial-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .trial-auto-popup {
    bottom: -100%;
    right: 0 !important;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 15px;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s;
  }
  .trial-auto-popup.show {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }
  .trial-auto-popup-content {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
}

/* ==========================================================================
   Generic Pages & Legal Pages Layout
   ========================================================================== */
.site-main .content-area {
  padding: 3rem 0 5rem 0;
}

.entry-content.glass-pane {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.entry-content h1, 
.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content h2 { font-size: 1.8rem; }
.entry-content h3 { font-size: 1.4rem; }

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content ul, 
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .entry-content.glass-pane {
    padding: 1.5rem;
    font-size: 1rem;
  }
}
