/* ============================================
   IPTV SNederland — Design System
   Theme: Orange Glassmorphism
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --primary: #f97316;
  --primary-light: #fb923c;
  --primary-dark: #ea580c;
  --primary-glow: rgba(249, 115, 22, 0.35);
  --primary-subtle: rgba(249, 115, 22, 0.08);

  --bg-dark: #0a0a0a;
  --bg-section: #111111;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.06);
  --bg-glass-hover: rgba(255, 255, 255, 0.10);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(249, 115, 22, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(249,115,22,0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding { padding: 80px 0; }
.section-dark { background: var(--bg-section); }
.text-center { text-align: center; }
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}
.highlight { color: var(--primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
  color: #fff;
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  height: var(--header-h);
  transition: var(--transition);
}
.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  z-index: 1001;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__logo span .logo-highlight { color: var(--primary); }

/* Desktop nav */
.header__nav { display: flex; align-items: center; }
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__nav-item a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.header__nav-item a:hover,
.header__nav-item a.active {
  color: var(--text-primary);
  background: var(--bg-glass);
}
.header__cta {
  margin-left: 16px;
}
.header__cta .btn { padding: 10px 24px; font-size: 0.85rem; }

/* Mobile toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.header__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.is-active span:nth-child(2) { opacity: 0; }
.header__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.header__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.header__mobile-overlay.is-active {
  display: block;
  opacity: 1;
}

/* Mobile menu */
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-glass);
  z-index: 1000;
  padding: 100px 30px 30px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.header__mobile-menu.is-active { right: 0; }
.header__mobile-menu .mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__mobile-menu .mobile-nav-list a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}
.header__mobile-menu .mobile-nav-list a:hover,
.header__mobile-menu .mobile-nav-list a.active {
  color: var(--text-primary);
  background: var(--bg-glass);
}
.header__mobile-menu .mobile-cta {
  margin-top: 24px;
}
.header__mobile-menu .mobile-cta .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__toggle { display: flex; }
  .header__mobile-menu { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: calc(var(--header-h) + 5px) 0 5px;
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.08) 0%, transparent 70%),
              var(--bg-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 5px 0;
}
.hero__content { z-index: 2; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 500px;
}
.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}
.hero__stat h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.hero__stat p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
/* TV Preview */
.hero__visual { z-index: 2; }
.tv-frame {
  background: rgba(20, 20, 20, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.tv-content { padding: 20px; }
.tv-header { margin-bottom: 20px; }
.tv-logo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tv-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tv-logo-icon { width: 24px; height: 24px; color: var(--primary); }
.tv-logo-text { font-size: 0.95rem; color: var(--text-secondary); }
.tv-logo-text strong { color: var(--text-primary); }
.tv-version { font-size: 0.7rem; color: var(--text-muted); }
.tv-sub-status { margin-top: 4px; }
.status-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}
.status-active {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4ade80;
}
.status-divider {
  width: 1px;
  height: 14px;
  background: var(--border-glass);
}
.status-expire {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
}
.tv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.tv-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  text-align: center;
  transition: var(--transition);
}
.tv-card.active {
  border-color: var(--primary);
  background: rgba(249, 115, 22, 0.1);
}
.tv-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-card-icon img { width: 44px; height: 44px; object-fit: contain; }
.tv-card-icon svg { width: 32px; height: 32px; fill: var(--text-secondary); }
.tv-card.active .tv-card-icon svg { fill: var(--primary); }
.tv-card span { font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }
.tv-card.active span { color: var(--primary); }
.tv-footer { display: flex; justify-content: center; }
.tv-icon-group { display: flex; gap: 12px; }
.tv-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}
.tv-icon-btn svg { fill: var(--text-muted); }
.tv-icon-btn:hover { background: var(--bg-glass-hover); }

/* Icon carousel under hero */
.hero__icon-carousel {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.hero__icon-carousel::before,
.hero__icon-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero__icon-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.hero__icon-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

@media (max-width: 768px) {
  .hero { padding: calc(var(--header-h) + 5px) 0 5px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero__desc { margin: 0 auto 28px; }
  .hero__buttons { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
}

/* ============================================
   INFINITE CAROUSEL (shared)
   ============================================ */
.carousel {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.carousel::before,
.carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.carousel::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.carousel::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.section-dark .carousel::before { background: linear-gradient(to right, var(--bg-section), transparent); }
.section-dark .carousel::after { background: linear-gradient(to left, var(--bg-section), transparent); }

.carousel__track {
  display: flex;
  gap: 16px;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}
.carousel__track:hover { animation-play-state: paused; }

.carousel__item {
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.carousel__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.carousel__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ratio rules */
.carousel--icons .carousel__item { width: 100px; }
.carousel--icons .carousel__item img { aspect-ratio: 16 / 9; object-fit: cover; }
.carousel--devices .carousel__item { width: 140px; }
.carousel--devices .carousel__item img { aspect-ratio: 1 / 1; object-fit: cover; }
.carousel--sport .carousel__item { width: 180px; }
.carousel--sport .carousel__item img { aspect-ratio: 9 / 16; object-fit: cover; }
.carousel--wtsp .carousel__item { width: 200px; }
.carousel--wtsp .carousel__item img { aspect-ratio: 473 / 1024; object-fit: cover; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel--reverse .carousel__track { animation-name: scroll-right; }
@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ============================================
   DEVICES SECTION
   ============================================ */
.devices { background: var(--bg-dark); }

/* ============================================
   SPORT SECTION
   ============================================ */
.sport { background: var(--bg-section); }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare { background: var(--bg-dark); }
.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare__table thead th {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}
.compare__table thead th:first-child { background: transparent; }
.compare__table thead th:nth-child(2) {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.compare__table thead th:nth-child(3) {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
}
.compare__table tbody td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.9rem;
}
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}
.compare__table tbody td:nth-child(2) {
  color: var(--primary);
  font-weight: 600;
}
.compare__table tbody td:nth-child(3) {
  color: var(--text-muted);
}
.compare__check { color: #4ade80; }
.compare__cross { color: #ef4444; }

@media (max-width: 600px) {
  .compare__table thead th,
  .compare__table tbody td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--bg-dark); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pricing__card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing__card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.pricing__card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.pricing__card.featured::before {
  content: 'Populair';
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--primary);
  color: #fff;
  padding: 4px 40px;
  font-size: 0.7rem;
  font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
}
.pricing__duration {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing__price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 24px;
}
.pricing__price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing__features {
  text-align: left;
  margin-bottom: 24px;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing__features li:last-child { border-bottom: none; }
.pricing__features li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: var(--primary);
  margin-top: 2px;
}
.pricing__features li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}
.pricing__card .btn { width: 100%; }

/* Multi-screen pricing */
.pricing__multi-header {
  text-align: center;
  margin: 60px 0 30px;
}
.pricing__multi-header h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing__multi-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}
.pricing__multi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing__multi-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.pricing__multi-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.pricing__multi-card .pricing__duration { font-size: 1rem; }
.pricing__multi-card .pricing__price { font-size: 2rem; margin-bottom: 16px; }
.pricing__multi-card .pricing__features { margin-bottom: 20px; }
.pricing__multi-card .btn { width: 100%; }

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__multi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__multi-grid { grid-template-columns: 1fr; }
}

/* ============================================
   3-STEP ACTIVATION
   ============================================ */
.steps { background: var(--bg-section); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.25;
  margin-bottom: 12px;
  line-height: 1;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .steps__grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHATSAPP SECTION
   ============================================ */
.whatsapp-section { background: var(--bg-dark); }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features { background: var(--bg-section); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.feature-card .disabled-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--bg-dark); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); border-color: var(--border-glow); }
.review-card__stars {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.review-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg-section); }
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item:hover { border-color: var(--border-glow); }
.faq__question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq__question:hover { color: var(--primary); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--primary);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq__item.is-open .faq__answer { max-height: 500px; }

/* ============================================
   WHATSAPP CTA BANNER
   ============================================ */
.whatsapp-cta {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.whatsapp-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.whatsapp-cta p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 300px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
}
.footer__logo img {
  height: 36px;
  width: auto;
}
.footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--primary); }
.footer__bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--border-glass);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE-SPECIFIC: Install Guide
   ============================================ */
.guide { background: var(--bg-dark); }
.guide__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.guide-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition);
}
.guide-card:hover { border-color: var(--border-glow); }
.guide-card__emoji {
  font-size: 2rem;
  margin-bottom: 14px;
}
.guide-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--primary);
}
.guide-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 14px 0 8px;
  color: var(--text-primary);
}
.guide-card ol {
  list-style: decimal;
  padding-left: 20px;
}
.guide-card ol li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.5;
}
.guide-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.guide-card .recommended {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.guide-card .recommended span {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary-subtle);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}
.guide-card .note {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(249, 115, 22, 0.06);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .guide__grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact { background: var(--bg-dark); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.contact-card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.contact-card a { color: var(--primary); font-weight: 600; }
@media (max-width: 600px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 40px 20px;
}
.error-page h1 {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}
.error-page h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.error-page p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 400px;
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal { background: var(--bg-dark); }
.legal__content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.legal__content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text-primary);
}
.legal__content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--text-primary);
}
.legal__content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}
.legal__content ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .legal__content { padding: 24px 18px; }
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 50px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.08) 0%, transparent 70%),
              var(--bg-dark);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   REVIEWS PAGE SPECIFIC
   ============================================ */
.reviews-page .reviews__grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .reviews-page .reviews__grid { grid-template-columns: 1fr; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
