/*
Theme Name: LinxIPTV
Theme URI: https://linxiptv.com
Author: LinxIPTV
Author URI: https://linxiptv.com
Description: Thème WordPress premium pour LinxIPTV – Service IPTV Premium en France. Abonnement IPTV pas cher avec 40 000+ chaînes, 210 000+ VOD, qualité 8K/4K/FHD.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: linxiptv
Tags: iptv, streaming, french, dark-theme, custom-background, custom-logo
*/

/* ===================================================================
 * 1. DESIGN SYSTEM & CSS VARIABLES
 * =================================================================== */
:root {
  --bg-body: #060b18;
  --bg-card: #0c1424;
  --bg-surface: #111b2e;
  --bg-surface-hover: #162036;
  --border-light: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(99, 102, 241, 0.2);
  
  /* Core Colors */
  --primary: #6366f1;         /* Indigo/Violet */
  --primary-light: #818cf8;
  --primary-dark: #4338ca;    /* Deep Indigo (used in CTA gradients) */
  --bg-dark: #060b18;         /* Darkest base (used as text color on gold CTAs) */
  --secondary: #3b82f6;       /* Royal Blue */
  --gold: #f59e0b;            /* Gold */
  --gold-dark: #d97706;
  --emerald: #10b981;         /* Green (CTA) */
  --red: #ef4444;
  
  /* Text */
  --text-white: #f8fafc;
  --text-light: #94a3b8;
  --text-muted: #64748b;
  
  /* Gradients & Glows */
  --gradient-primary: linear-gradient(135deg, #6366f1, #3b82f6);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #d97706);
  --gradient-emerald: linear-gradient(135deg, #10b981, #059669);
  --glow-primary: 0 0 30px rgba(99, 102, 241, 0.25);
  --glow-gold: 0 0 30px rgba(245, 158, 11, 0.2);
  --glow-emerald: 0 0 35px rgba(16, 185, 129, 0.3);
  
  /* Fonts & Layout */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================================
 * 2. RESET & BASE STYLES
 * =================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-body);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background: radial-gradient(circle at 50% -100px, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--text-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ===================================================================
 * 3. BUTTONS & UI ELEMENTS
 * =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 130%;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: var(--gradient-gold);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  pointer-events: none;
}

.btn-secondary:hover::after {
  left: 130%;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--text-white);
}

.btn--outline:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary);
}

.btn-emerald {
  background: var(--gradient-emerald);
  color: var(--text-white);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-emerald);
}

.btn--full {
  width: 100%;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* ===================================================================
 * 4. HEADER & NAVIGATION
 * =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  padding: 20px 0;
}

.site-header.scrolled {
  background: rgba(6, 11, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo__img {
  height: 36px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.site-header.scrolled .site-logo__img {
  height: 28px;
}

.site-footer .site-logo__img {
  height: 45px;
}

@media (max-width: 768px) {
  .site-logo__img {
    height: 30px;
  }
  .site-header.scrolled .site-logo__img {
    height: 26px;
  }
  .site-footer .site-logo__img {
    height: 38px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--text-white);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 10px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 102;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-white);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: left center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 0px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 0px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 11, 24, 0.95);
  backdrop-filter: blur(8px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===================================================================
 * 5. SECTION HEADERS & GENERAL UTILITIES
 * =================================================================== */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  color: var(--primary-light);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

.highlight {
  background: linear-gradient(120deg, #c084fc 0%, #f472b6 45%, #60a5fa 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-gradient 5s linear infinite;
}

.highlight-gold {
  background: linear-gradient(120deg, #fbbf24 0%, #f59e0b 45%, #fb7185 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-gradient 5s linear infinite;
}

@keyframes shine-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===================================================================
 * 6. HERO SECTION
 * =================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(12, 20, 36, 1) 0%, rgba(6, 10, 20, 1) 90%);
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  z-index: 0;
  animation: float-slow 15s infinite alternate ease-in-out;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  z-index: 0;
  animation: float-slow 20s infinite alternate-reverse ease-in-out;
  pointer-events: none;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 800px;
  text-align: center;
}

.hero-subtitle strong {
  color: var(--text-white);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 35px;
}

.hero-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.hero-rating span {
  font-size: 0.9rem;
}

.hero-rating span strong {
  color: var(--text-white);
}

.hero-proof-divider {
  width: 1px;
  height: 30px;
  background: var(--border-light);
}

.hero-customers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-avatars {
  display: flex;
  margin-left: 8px;
}

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-left: -8px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual-layered {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  z-index: 0;
  animation: pulse 4s infinite alternate;
}

/* Hero Slideshow Background */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideShowBg 24s infinite ease-in-out;
}

.hero-slide:nth-child(1) {
  background-image: url('images/hero-slide-1.png');
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  background-image: url('images/hero-slide-2.png');
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  background-image: url('images/hero-slide-3.png');
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  background-image: url('images/hero-slide-4.png');
  animation-delay: 18s;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 11, 24, 0.45) 0%, rgba(6, 11, 24, 0.88) 85%);
  z-index: 1;
}

@keyframes heroSlideShowBg {
  0% { opacity: 0; }
  4% { opacity: 0.55; }
  25% { opacity: 0.55; }
  29% { opacity: 0; }
  100% { opacity: 0; }
}

.stream-float-badge {
  position: absolute;
  background: rgba(12, 20, 36, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-accent);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.stream-float-1 {
  top: 15%;
  left: 5%;
  animation: float 5s ease-in-out infinite alternate;
}

.stream-float-2 {
  bottom: 20%;
  right: 5%;
  animation: float 6s ease-in-out infinite alternate-reverse;
}

.stream-float-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--emerald);
}

/* ===================================================================
 * 7. STATUS BAR & TRUST BAR
 * =================================================================== */
.uptime-bar {
  background: rgba(12, 20, 36, 0.6);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  position: relative;
  z-index: 2;
}

.uptime-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.uptime-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.uptime-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald);
  animation: blink 1.5s infinite;
}

.uptime-value {
  color: var(--text-white);
  font-weight: 600;
}

.trust-bar {
  background: rgba(6, 11, 24, 0.4);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--glow-primary);
}

.trust-icon {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-light);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.trust-item h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===================================================================
 * 8. STATS SECTION
 * =================================================================== */
.stats-section {
  padding: 60px 0;
  background: rgba(12, 20, 36, 0.3);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===================================================================
 * 9. SPORTS SECTION
 * =================================================================== */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.sport-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
}

.sport-live-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--red);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.sport-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.05);
  border-radius: var(--radius-md);
}

.sport-icon-wrap img {
  width: 48px;
  height: 48px;
}

.sport-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.sport-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sports-channels-strip {
  margin-top: 50px;
  text-align: center;
}

.sports-strip-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.sports-channels-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sport-channel-tag {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.sport-channel-tag:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary);
}

/* ===================================================================
 * 10. FEATURES SECTION
 * =================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--glow-primary);
}

.feature-icon {
  color: var(--primary-light);
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ===================================================================
 * 11. HOW IT WORKS & APP COMPATIBILITY
 * =================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-accent);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(99, 102, 241, 0.15);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  padding-right: 30px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Apps compatibility */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.app-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.app-badge:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.app-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
}

.app-badge-more {
  background: rgba(99, 102, 241, 0.05);
  border-color: var(--border-accent);
  color: var(--primary-light);
}

.apps-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 30px;
}

.apps-note svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

/* ===================================================================
 * 12. PRICING SECTION
 * =================================================================== */
.pricing-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.pricing-toggle-wrap {
  background: var(--bg-card);
  padding: 6px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-light);
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-label.active {
  color: var(--text-white);
}

.badge-save {
  background: var(--gradient-emerald);
  font-size: 0.75rem;
  color: var(--text-white);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* Switch Styles */
.pricing-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  margin: 0 4px;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-surface);
  transition: .4s;
  border: 1px solid var(--border-light);
}

.pricing-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--primary);
  transition: .4s;
}

input:checked + .pricing-slider:before {
  transform: translateX(22px);
}

.pricing-slider.round {
  border-radius: 34px;
}

.pricing-slider.round:before {
  border-radius: 50%;
}

/* Pricing Cards */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(12, 20, 36, 1) 100%);
}

.pricing-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-light);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card__price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.pricing-card__screens {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}

.screens-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.screens-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.screen-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-white);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.screen-btn.active, .screen-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.pricing-card__features {
  margin-bottom: 35px;
  flex-grow: 1;
}

.pricing-card__features li {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li .check {
  color: var(--emerald);
  font-weight: 700;
}

.pricing-card__features li.feature-screens {
  font-weight: 600;
  color: var(--text-white);
}

.pricing-card__guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 15px;
}

/* Trial Band */
.trial-band {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.trial-band-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.trial-band-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===================================================================
 * 13. CHANNELS SECTION
 * =================================================================== */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.channel-category {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.channel-category:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
}

.channel-cat-icon {
  width: 100%;
  height: 160px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #090e1a;
}

.channel-cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.channel-category:hover .channel-cat-icon img {
  transform: scale(1.05);
}

.channel-category h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.channel-category p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Highlight Band */
.finnish-band {
  margin-top: 50px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.finnish-band-flag {
  font-size: 3rem;
  line-height: 1;
}

.finnish-band-text h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.finnish-band-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.finnish-channels-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fi-channel-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===================================================================
 * 14. CAROUSELS (VOD & DEVICES)
 * =================================================================== */
.vod-carousel-wrapper, .devices-carousel-wrapper {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  width: 100%;
}

.vod-carousel-wrapper::before, .vod-carousel-wrapper::after,
.devices-carousel-wrapper::before, .devices-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.vod-carousel-wrapper::before, .devices-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-body) 0%, transparent 100%);
}

.vod-carousel-wrapper::after, .devices-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-body) 0%, transparent 100%);
}

.vod-track, .devices-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.vod-card {
  width: 160px;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  display: block;
}

.vod-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.vod-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(6,11,24,0.9) 80%);
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}

.vod-card:hover .vod-overlay {
  opacity: 1;
}

.vod-card:hover .vod-poster {
  transform: scale(1.05);
}

.vod-title {
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Device cards */
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  width: 220px;
  flex-shrink: 0;
  transition: var(--transition);
}

.device-card:hover {
  border-color: var(--border-accent);
}

.device-card-image {
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.device-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.device-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================================================================
 * 15. IPTV VS CABLE COMPARISON
 * =================================================================== */
.vs-wrapper {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.vs-col {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.vs-col--ours {
  border-color: var(--border-accent);
  box-shadow: var(--glow-primary);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, rgba(12, 20, 36, 1) 100%);
}

.vs-col-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.vs-col-logo {
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-col-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
}

.vs-col-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vs-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vs-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.vs-row:last-child {
  border: none;
  padding: 0;
}

.vs-label {
  color: var(--text-light);
}

.vs-value {
  font-weight: 600;
}

.vs-value.vs-good {
  color: var(--emerald);
}

.vs-value.vs-bad {
  color: var(--red);
}

.vs-divider {
  display: flex;
  justify-content: center;
  z-index: 2;
}

.vs-vs-badge {
  background: var(--primary);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-primary);
  border: 4px solid var(--bg-body);
}

.vs-cta {
  text-align: center;
  margin-top: 40px;
}

.vs-cta p {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

/* ===================================================================
 * 16. SPEED SECTION
 * =================================================================== */
.speed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.speed-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.speed-card--highlight {
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.speed-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.speed-quality-label {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 15px;
}

.speed-mbps {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-light);
}

.speed-card--highlight .speed-mbps {
  color: var(--gold);
}

.speed-unit {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.speed-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.speed-bar {
  background: rgba(255,255,255,0.05);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.speed-bar-fill {
  background: var(--primary);
  height: 100%;
}

.speed-card--highlight .speed-bar-fill {
  background: var(--gradient-gold);
}

.speed-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 0.95rem;
}

.speed-note svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

.speed-note a {
  text-decoration: underline;
}

/* ===================================================================
 * 17. TESTIMONIALS & FAQ
 * =================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-white);
  text-align: left;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-toggle {
  color: var(--primary-light);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-accent);
}

.test-stars {
  color: var(--gold);
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  background: var(--bg-surface);
  color: var(--primary-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.test-author h4 {
  font-size: 0.95rem;
}

.test-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================================================================
 * 18. BLOG CARDS & ARCHIVE GRID
 * =================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
}

.blog-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #090e1a;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--text-white);
}

.blog-card h3 a:hover {
  color: var(--primary-light);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.blog-read-more:hover {
  color: var(--text-white);
}

/* ===================================================================
 * 19. CTA SECTION
 * =================================================================== */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 11, 24, 0.8) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 100px 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.7;
}

.cta-guarantee {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 25px;
}

/* ===================================================================
 * 20. FOOTER SECTION
 * =================================================================== */
.site-footer {
  background: #03060c;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1.25fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  background: var(--bg-card);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--text-white);
  border-color: var(--primary);
  background: var(--primary);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-muted);
}

.footer-contact-item a:hover {
  color: var(--text-white);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-right: 4px;
}

.payment-icon {
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* ===================================================================
 * 21. WHATSAPP FLOAT BUTTON & SCROLL TOP
 * =================================================================== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: var(--text-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  transition: var(--transition);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  border-color: var(--primary);
  color: var(--text-white);
  background: var(--primary);
}

/* ===================================================================
 * 22. PAGE LAYOUTS & INNER PAGES
 * =================================================================== */
.page-hero {
  padding: 180px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 11, 24, 0) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero .section-subtitle {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.legal-content ol li {
  list-style-type: decimal;
}

/* ===================================================================
 * 23. CONTACT PAGE
 * =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 20px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.contact-method-card:hover {
  border-color: var(--border-accent);
}

.contact-method-icon {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-light);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.contact-method-details h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.contact-method-details p, .contact-method-details a {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ===================================================================
 * 24. INSTALLATION GUIDE
 * =================================================================== */
.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.guide-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.guide-tab-btn.active, .guide-tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.guide-content-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  animation: fadeIn 0.5s ease;
}

.guide-content-panel.active {
  display: block;
}

.guide-step-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.guide-steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.guide-step-item {
  display: flex;
  gap: 20px;
}

.guide-step-num {
  background: var(--primary);
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.guide-step-text h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.guide-step-text p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ===================================================================
 * 25. SINGLE POST & SIDEBAR
 * =================================================================== */
.single-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.post-hero {
  margin-bottom: 30px;
}

.post-meta-top {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.post-content h2, .post-content h3, .post-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.post-content ul, .post-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.post-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 15px 20px;
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  margin-bottom: 25px;
}

.post-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-tags a {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.85rem;
}

.post-tags a:hover {
  border-color: var(--primary);
  color: var(--text-white);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.widget {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.widget-title {
  font-size: 1.15rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget ul li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.widget ul li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.widget ul li a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.widget ul li a:hover {
  color: var(--text-white);
}

/* ===================================================================
 * 26. 404 PAGE
 * =================================================================== */
.error-404 {
  padding: 160px 0 100px;
  text-align: center;
}

.error-title {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  text-shadow: var(--glow-primary);
  margin-bottom: 20px;
}

.error-message {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
}

.error-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 35px;
}

.error-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

/* ===================================================================
 * 27. COMPARISON TABLE
 * =================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-top: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-card);
  font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: var(--bg-surface);
  font-weight: 700;
  color: var(--text-white);
}

.comparison-table tr.ct-row-alt td {
  background: rgba(255,255,255,0.01);
}

.comparison-table td.ct-feature {
  color: var(--text-white);
  font-weight: 600;
}

.comparison-table td.ct-basic, .comparison-table td.ct-premium, .comparison-table td.ct-gold {
  text-align: center;
}

.comparison-table th.ct-basic-col, .comparison-table th.ct-premium-col, .comparison-table th.ct-gold-col {
  text-align: center;
  font-family: var(--font-heading);
}

.comparison-table th.ct-premium-col {
  color: var(--primary-light);
}

.comparison-table th.ct-gold-col {
  color: var(--gold);
}

/* ===================================================================
 * 28. ANIMATIONS
 * =================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.5; }
  100% { transform: scale(0.95); opacity: 0.3; }
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes blink {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.zoom-in.animate {
  opacity: 1;
  transform: scale(1);
}

.slide-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.animate {
  opacity: 1;
}

/* ── Hero entrance (plays on load, cascading) ── */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title,
.hero-subtitle,
.hero-social-proof,
.hero-buttons {
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-title         { animation-delay: 0.05s; }
.hero-subtitle      { animation-delay: 0.20s; }
.hero-social-proof  { animation-delay: 0.35s; }
.hero-buttons       { animation-delay: 0.50s; }

@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-composition-img {
  animation: heroVisualIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* ===================================================================
 * ACCESSIBILITY — respect reduced-motion preferences
 * =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up,
  .fade-in,
  .zoom-in,
  .slide-right,
  .hero-title,
  .hero-subtitle,
  .hero-social-proof,
  .hero-buttons,
  .hero-composition-img {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===================================================================
 * 29. RESPONSIVE BREAKPOINTS
 * =================================================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-social-proof {
    justify-content: center;
  }
  
  .hero-visual-layered {
    height: 350px;
  }
  
  .hero-orb {
    width: 220px;
    height: 220px;
  }
  
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vs-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vs-divider {
    display: none;
  }
  
  .speed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .single-wrap {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    z-index: 101;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .grid--3, .grid--4, .trust-items, .stats-grid, .sports-grid, .features-grid, .steps-grid, .apps-grid, .channels-grid, .speed-grid, .testimonials-grid, .blog-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .trust-items {
    gap: 16px;
  }

  .trial-band {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  
  .finnish-band {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 44px 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .trust-item {
    padding: 24px 18px;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
  }

  .scroll-top {
    bottom: 90px;
    right: 20px;
  }
}

/* ===================================================================
 * 18. AFFILIATE PRODUCTS STYLING
 * =================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
}

.product-card__img-wrap {
  width: 100%;
  padding-top: 66.6%; /* 3:2 Aspect Ratio */
  position: relative;
  background: rgba(255,255,255,0.03);
}

.product-card__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.product-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__rating {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.product-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card__title a:hover {
  color: var(--primary-light);
}

.product-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-card__footer {
  margin-top: auto;
}

.product-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.product-card__btn:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

/* Single Product Details */
.single-product {
  padding: 60px 0;
}

.single-product__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
}

.single-product__media {
  position: relative;
}

.single-product__image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.single-product__image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-product__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-product__meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.single-product__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
}

.single-product__rating {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.single-product__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.single-product__description {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.single-product__cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
  color: var(--bg-dark);
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.single-product__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24 0%, var(--gold) 100%);
}

.related-products__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .single-product__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px;
  }
  
  .single-product__title {
    font-size: 2rem;
  }
}

/* ===================================================================
 * 19. AMAZON DETAIL LAYOUT STYLING (PREMIUM DESIGN UPGRADE)
 * =================================================================== */
.amazon-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.15fr) minmax(0, 0.8fr);
  gap: 36px;
  margin-top: 40px;
  margin-bottom: 60px;
  align-items: start;
}

/* Gallery Column */
.amazon-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 110px;
}

.amazon-gallery__main {
  width: 100%;
  aspect-ratio: 1;
  min-height: 460px; /* Larger product image, closer to Amazon's gallery */
  background: #ffffff; /* Clean white canvas to blend with original product photos */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .amazon-gallery__main { min-height: 0; aspect-ratio: 1; }
}

.amazon-gallery__main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.amazon-gallery__main img:hover {
  transform: scale(1.08);
}

.amazon-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.amazon-gallery__thumb {
  width: 65px;
  height: 65px;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.amazon-gallery__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.amazon-gallery__thumb:hover,
.amazon-gallery__thumb.active {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(124, 58, 237, 0.3);
}

/* Details Column */
.amazon-details__breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  line-height: 1.6;
}
.amazon-details__breadcrumbs span[aria-hidden] {
  color: var(--text-muted);
  opacity: 0.6;
}
.amazon-details__breadcrumbs-current {
  color: var(--text-light);
  font-weight: 500;
}

.amazon-details__breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.amazon-details__breadcrumbs a:hover {
  color: var(--primary-light);
}

.amazon-details__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.amazon-details__rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.amazon-details__rating-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.amazon-details__rating-count {
  font-size: 0.9rem;
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.amazon-details__rating-count:hover {
  color: var(--text-white);
}

.amazon-details__price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 24px;
}

.amazon-details__bullet-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.amazon-details__bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}

.amazon-details__bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.amazon-details__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1rem;
  top: 0px;
}

.amazon-details__description {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.amazon-details__description h3 {
  color: var(--text-white);
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
}

.amazon-details__description h4 {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Buybox Column */
.amazon-buybox {
  background: rgba(30, 27, 75, 0.35); /* Translucent dark-glass card */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px;
  position: sticky;
  top: 110px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.amazon-buybox__price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}

.amazon-buybox__delivery {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.amazon-buybox__delivery strong {
  color: var(--text-white);
}

.amazon-buybox__stock {
  font-size: 1.1rem;
  color: #10b981;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amazon-buybox__stock::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
}

.amazon-buybox__btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 14px;
}

.amazon-buybox__btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
  color: var(--bg-dark);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.amazon-buybox__btn--primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.amazon-buybox__btn--secondary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.amazon-buybox__btn--secondary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.amazon-buybox__secure {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.4;
}

.amazon-buybox__secure svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Reviews Section */
.amazon-reviews {
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.amazon-reviews__summary {
  position: sticky;
  top: 110px;
}

.amazon-reviews__average {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
}

.amazon-reviews__big-score {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -1px;
}

.amazon-reviews__total-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.amazon-reviews__bar-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.amazon-reviews__bar-label {
  width: 65px;
  font-weight: 500;
}

.amazon-reviews__bar-bg {
  flex-grow: 1;
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.amazon-reviews__bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.amazon-reviews__bar-pct {
  width: 45px;
  text-align: right;
  font-weight: 600;
  color: var(--text-white);
}

.amazon-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.review-item {
  background: rgba(30, 27, 75, 0.2); /* Sleek card background */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.review-item__user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.review-item__avatar {
  width: 36px;
  height: 36px;
  background: var(--primary-dark);
  border: 1px solid var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.review-item__name {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.98rem;
}

.review-item__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.review-item__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-item__date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-item__text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 991px) {
  .amazon-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .amazon-gallery,
  .amazon-buybox {
    position: static;
  }
  
  .amazon-reviews {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .amazon-reviews__summary {
    position: static;
  }
}

/* Guide Page Mockups Styling */
.guide-panel-flex {
  display: flex;
  gap: 50px;
  align-items: center;
}

.guide-panel-steps {
  flex: 1.3;
}

.guide-panel-image {
  flex: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guide-panel-image img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease;
}

.guide-panel-image img:hover {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .guide-panel-flex {
    flex-direction: column-reverse; /* steps on top, image below on mobile */
    gap: 30px;
  }
  
  .guide-panel-image img {
    max-height: 280px;
  }
}


/* ===================================================================
 * 30. BLOG LISTING GRID + AUTO-SCROLL CAROUSELS
 * =================================================================== */

/* Blog (index.php) and archive (archive.php) listings — responsive */
.blog-listing,
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .blog-listing,
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Auto-scrolling marquees — Movies/VOD and Multi-device rows.
   The JS (setupInfiniteScroll) duplicates the cards, so translateX(-50%)
   advances exactly one set for a seamless infinite loop. */
@keyframes linx-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vod-track {
  animation: linx-marquee 35s linear infinite;
}

.devices-track {
  animation: linx-marquee 38s linear infinite;
}

/* Pause on hover so users can read a poster */
.vod-carousel-wrapper:hover .vod-track,
.devices-carousel-wrapper:hover .devices-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .vod-track,
  .devices-track {
    animation: none !important;
  }
}

/* ===================================================================
 * 31. MARKETPLACE BUYBOX BUTTONS (Amazon + AliExpress)
 * =================================================================== */
.amazon-buybox__btn--amazon {
  background: linear-gradient(135deg, #ff9900 0%, #e88a00 100%);
  color: #0b1220;
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}
.amazon-buybox__btn--amazon:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.45);
}
.amazon-buybox__btn--ali {
  background: linear-gradient(135deg, #e62e04 0%, #ff4747 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(230, 46, 4, 0.3);
}
.amazon-buybox__btn--ali:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 46, 4, 0.45);
}
.amazon-buybox__btn .buybox-reviews {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 3px;
}

/* ===================================================================
 * 32. MARKETPLACE OFFER CARDS (per-store price + delivery)
 * =================================================================== */
.amazon-buybox__price-from {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}
.offer {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px 14px 14px;
  margin-bottom: 14px;
}
.offer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.offer__store {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
}
.offer__price {
  font-weight: 900;
  color: var(--gold);
  font-size: 1.3rem;
  white-space: nowrap;
}
.offer__delivery {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}
.offer .amazon-buybox__btn {
  margin-bottom: 0;
}

/* ===================================================================
 * 33. HEADER "COMMANDER" CTA + PRODUCT PAGE RESPONSIVE FIXES
 * =================================================================== */

/* Header order button — clear gold CTA, readable, right size */
.nav-menu a.nav-cta {
  margin-left: 12px;
  background: linear-gradient(135deg, #ffb920 0%, #f59e0b 55%, #e08600 100%);
  color: #1a1206 !important; /* near-black for maximum contrast on gold */
  font-weight: 800;
  font-size: 0.88rem;
  padding: 9px 22px;
  border: none;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
}
.nav-menu a.nav-cta::after {
  display: none !important;
}
.nav-menu a.nav-cta:hover {
  background: linear-gradient(135deg, #ffc63d 0%, #ffab1a 55%, #f59e0b 100%);
  color: #1a1206 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.5);
}
/* In the mobile slide-in menu, make it a full-width, obvious CTA */
@media (max-width: 768px) {
  .nav-menu .nav-cta {
    width: 100%;
    margin: 10px 0 0;
    padding: 12px 22px;
    font-size: 1rem;
  }
}

/* --- Product page: prevent any horizontal overflow on small screens --- */
.amazon-gallery,
.amazon-details,
.amazon-buybox {
  min-width: 0; /* allow grid children to shrink instead of overflowing */
}
.amazon-details__title {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.amazon-details__description {
  overflow-wrap: anywhere;
}
.amazon-details__description img,
.amazon-details__description video,
.amazon-details__description iframe {
  max-width: 100%;
  height: auto;
}
.amazon-details__description table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}
.amazon-details__rating-summary {
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .amazon-details__title { font-size: 1.55rem; }
}

@media (max-width: 576px) {
  .amazon-details__title { font-size: 1.35rem; }
  .amazon-gallery__main { padding: 12px; border-radius: 12px; }
  .amazon-buybox { padding: 18px; }
  .amazon-details__price,
  .amazon-buybox__price { font-size: 1.8rem; }
  .offer__price { font-size: 1.12rem; }
  .offer__head { flex-wrap: wrap; gap: 4px; }
  .amazon-gallery__thumb { width: 56px; height: 56px; }
}
