/* ============================================
   PANDORA IPTV — PREMIUM DESIGN v2
   ============================================ */

:root {
  --bg-dark: #060B18;
  --bg-card: #0D1425;
  --bg-card-hover: #111B33;
  --bg-light: #F0F7FF;
  --bg-white: #FFFFFF;
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --primary-darker: #0369A1;
  --glow: rgba(14, 165, 233, 0.25);
  --glow-strong: rgba(14, 165, 233, 0.5);
  --text: #1a1a2e;
  --text-muted: #6B7280;
  --text-light: #CBD5E1;
  --text-white: #F1F5F9;
  --border: #1E293B;
  --border-light: #E0E7FF;
  --success: #10B981;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(14, 165, 233, 0.12);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-pill: 50px;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 12px; }
p { margin-bottom: 16px; }

/* --- Utility --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.section-intro {
  max-width: 750px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
}

/* Gradient text for section headings */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #38BDF8 50%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label (small tag above H2) */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Dark section variant */
.dark-section {
  background: var(--bg-dark);
  color: var(--text-white);
}
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section .section-intro { color: var(--text-light); }
.dark-section .section-label { color: #38BDF8; }

/* Light section */
.light-section { background: var(--bg-white); }

/* Alt light section */
.alt-section { background: var(--bg-light); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  line-height: 1.4;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--glow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(14, 165, 233, 0.4);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-white-outline:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* --- Fade In --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  background: linear-gradient(135deg, var(--primary), #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.logo:hover { opacity: 0.9; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  text-decoration: none;
}
.site-header.transparent .nav-links a { color: rgba(255, 255, 255, 0.9); }
.site-header.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--primary); }
.site-header.transparent .nav-links a:hover { color: #38BDF8; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 12px var(--glow);
}
.nav-cta:hover { box-shadow: 0 4px 20px var(--glow-strong); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown > a::after { content: " \25BE"; font-size: 11px; opacity: 0.6; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  border: 1px solid var(--border-light);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 14px;
  color: var(--text) !important;
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; z-index: 1100;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.site-header.transparent .hamburger span { background: #fff; }
.site-header.scrolled .hamburger span { background: var(--text); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: 80%; max-width: 360px; height: 100vh;
  background: var(--bg-white); z-index: 1050;
  padding: 80px 32px 32px;
  transition: right 0.35s ease; overflow-y: auto;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 16px;
  font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .mobile-dropdown-toggle {
  display: flex; justify-content: space-between;
  align-items: center; cursor: pointer;
}
.mobile-nav .mobile-dropdown-toggle::after { content: "\25BE"; transition: transform var(--transition); }
.mobile-nav .mobile-dropdown-toggle.open::after { transform: rotate(180deg); }
.mobile-nav .mobile-dropdown-items { display: none; padding-left: 16px; }
.mobile-nav .mobile-dropdown-items.open { display: block; }
.mobile-nav .mobile-dropdown-items a { font-size: 15px; padding: 10px 0; }
.mobile-nav .mobile-nav-cta {
  display: inline-block; margin-top: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 14px 28px;
  border-radius: var(--radius-pill); font-weight: 600;
  text-align: center; width: 100%;
}
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5); z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs { padding: 100px 0 16px; font-size: 14px; color: var(--text-muted); }
.breadcrumbs a { color: var(--primary); font-weight: 500; }
.breadcrumbs span { margin: 0 8px; font-size: 12px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(160deg, #020617 0%, #0C1629 40%, #0F172A 70%, #071528 100%);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--glow-strong) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

.hero h1 {
  max-width: 850px;
  margin: 0 auto 24px;
  color: #fff;
  letter-spacing: -0.5px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #38BDF8, var(--primary), #7DD3FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}

.trust-bar {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 32px;
  padding: 24px 40px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  max-width: 860px;
  margin: 0 auto;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #fff;
}
.trust-item .check { color: var(--success); font-size: 18px; }

/* ============================================
   FEATURE CARDS (glass style on dark bg)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 36px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.2);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-icon-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.feature-icon-row .feature-icon { margin-bottom: 0; }
.feature-nl-flag { height: 48px; width: auto; opacity: 0.85; }

.dark-section .feature-card h3 { color: #fff; }
.dark-section .feature-card p { color: var(--text-light); margin-bottom: 0; }

/* ============================================
   FILMS & SERIES (with poster carousel)
   ============================================ */
.poster-carousel-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.poster-carousel-section .section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.poster-carousel {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  margin-bottom: 48px;
}
.poster-carousel:hover { animation-play-state: paused; }

.poster-carousel .poster-item {
  flex-shrink: 0;
  width: 200px;
  margin: 0 10px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
}
.poster-carousel .poster-item:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 40px var(--glow-strong);
  border-color: var(--primary);
}
.poster-carousel .poster-item img {
  width: 100%; height: 300px;
  object-fit: cover; display: block;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.category-card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 24px 16px;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}
.category-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.3);
}
.category-card .cat-icon { font-size: 32px; margin-bottom: 8px; }
.dark-section .category-card .cat-label {
  font-size: 13px; font-weight: 600; color: var(--text-light);
}

/* ============================================
   SPORT — Split layout (text left, image right)
   ============================================ */
.sport-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sport-split-text h2 {
  text-align: left;
}

.sport-split-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.sport-split-text h3 {
  color: #fff;
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
}

.check-list li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.sport-split-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.sport-split-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ============================================
   HOW IT WORKS (steps)
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.step-card { text-align: center; }
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px var(--glow);
}
.step-card h3 { color: var(--text); }
.step-card p { color: var(--text-muted); }
.step-card a { font-weight: 600; font-size: 15px; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.pricing-card.highlighted {
  border-color: var(--primary);
  background: rgba(14, 165, 233, 0.08);
  transform: scale(1.04);
  box-shadow: 0 8px 40px var(--glow);
}
.pricing-card.highlighted:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.dark-section .pricing-badge {
  background: rgba(14, 165, 233, 0.15);
  color: #38BDF8;
}
.pricing-card.highlighted .pricing-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.dark-section .pricing-title { color: #fff; }

.pricing-price {
  font-family: var(--font-heading);
  font-size: 44px; font-weight: 800;
  background: linear-gradient(135deg, #38BDF8, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.pricing-sub {
  font-size: 14px;
  margin-bottom: 24px;
}
.dark-section .pricing-sub { color: var(--text-light); }

.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
  padding: 7px 0; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.dark-section .pricing-features li { color: var(--text-light); }
.pricing-features li::before {
  content: "\2713"; color: var(--success);
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}
.comparison-table thead th {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15px;
  background: var(--bg-light);
}
.comparison-table .highlight-col { background: rgba(14, 165, 233, 0.06); }
.comparison-table thead .highlight-col {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 8px 8px 0 0;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-note { margin-top: 32px; color: var(--text-muted); max-width: 800px; }

/* ============================================
   DEVICES
   ============================================ */
.devices-showcase {
  max-width: 900px;
  margin: 0 auto 48px;
}
.devices-showcase img {
  width: 100%; height: auto;
  filter: drop-shadow(0 16px 48px rgba(14, 165, 233, 0.15));
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.device-card {
  background: var(--bg-white);
  padding: 20px 12px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.device-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(14, 165, 233, 0.15);
}
.device-icon { font-size: 32px; margin-bottom: 6px; }
.device-name { font-size: 13px; font-weight: 600; color: var(--text); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
}
.testimonial-stars {
  color: #FBBF24;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}
.dark-section .testimonial-text { color: var(--text-light); }
.testimonial-author { font-weight: 600; font-size: 14px; }
.dark-section .testimonial-author { color: #38BDF8; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(14, 165, 233, 0.2); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 16px;
  cursor: pointer; color: var(--text);
  list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { color: var(--primary); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted); font-size: 15px; line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  background: linear-gradient(160deg, #020617 0%, #0C1629 50%, #0F172A 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; bottom: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 20px; }
.cta-section p {
  color: var(--text-light);
  max-width: 650px; margin: 0 auto 36px; font-size: 17px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #020617;
  padding: 60px 0 0;
  color: #fff;
  border-top: 1px solid rgba(14, 165, 233, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand p {
  color: var(--text-light); font-size: 14px;
  line-height: 1.7; margin-top: 12px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 16px;
  color: #fff; margin-bottom: 16px;
}
.footer-col a {
  display: block; padding: 5px 0; font-size: 14px;
  color: #64748B; transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0; text-align: center;
  font-size: 13px; color: #475569;
}

/* ============================================
   WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================
   PAGE HERO BANNER
   ============================================ */
.page-hero {
  background: linear-gradient(160deg, #020617 0%, #0C1629 40%, #0F172A 70%, #071528 100%);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .breadcrumbs {
  padding: 0;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumbs a {
  color: var(--primary);
}
.page-hero .breadcrumbs,
.page-hero .breadcrumbs span {
  color: var(--text-light);
}
.page-hero h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .page-hero-sub {
  color: var(--text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   ARTICLE / PAGE CONTENT — Premium Layout
   ============================================ */
.page-content {
  padding: 60px 0 80px;
  min-height: 50vh;
  background: var(--bg-white);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
  position: relative;
}
.article-body h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #38BDF8);
}

.article-body h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.article-body p {
  color: #4B5563;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.article-body strong {
  color: var(--text);
}

.article-body a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(14, 165, 233, 0.3);
  transition: all var(--transition);
}
.article-body a:hover {
  color: var(--primary-dark);
  text-decoration-color: var(--primary-dark);
}

.article-body ul, .article-body ol {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}

.article-body ul {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--border-light);
}

.article-body ul li {
  padding: 8px 0;
  font-size: 16px;
  color: #4B5563;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.article-body ul li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  margin-top: 2px;
}

.article-body ol {
  counter-reset: step-counter;
  padding-left: 0;
}

.article-body ol li {
  counter-increment: step-counter;
  padding: 16px 0;
  font-size: 16px;
  color: #4B5563;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--border-light);
}

.article-body ol li:last-child {
  border-bottom: none;
}

.article-body ol li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), #38BDF8);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Box — Premium */
.article-body .cta-box,
.page-content .cta-box {
  background: linear-gradient(135deg, #020617 0%, #0C1629 50%, #0F172A 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  margin: 56px auto 0;
  text-align: center;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-body .cta-box::before,
.page-content .cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.article-body .cta-box h3,
.page-content .cta-box h3 {
  color: #fff;
  margin-top: 0;
  font-size: 24px;
  position: relative;
  z-index: 1;
}
.article-body .cta-box p,
.page-content .cta-box p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.article-body .cta-box .btn,
.page-content .cta-box .btn {
  position: relative;
  z-index: 1;
}

.page-content .placeholder-text { color: var(--text-muted); font-size: 17px; }

/* ============================================
   CONTACT — Premium Cards
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.contact-method {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #38BDF8);
}
.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
}
.contact-method .contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.contact-method h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--text);
}
.contact-method p {
  max-width: 100%;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   LEGAL PAGES — Better structured
   ============================================ */
.article-body h2 + p,
.article-body h3 + p {
  margin-top: 0;
}

/* ============================================
   PAGE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 40px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero .page-hero-sub { font-size: 16px; }
  .article-body h2 { font-size: 22px; margin-top: 36px; }
  .article-body ul { padding: 16px 20px; }
  .article-body .cta-box,
  .page-content .cta-box { padding: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .device-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 18px; }
  .section-padding { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 130px 0 72px; }
  .hero p { font-size: 15px; }
  .trust-bar { flex-direction: column; align-items: center; gap: 12px; padding: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .sport-split { grid-template-columns: 1fr; gap: 32px; }
  .sport-split-text h2 { text-align: center; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.highlighted { transform: none; }
  .pricing-card.highlighted:hover { transform: translateY(-6px); }
  .device-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .poster-carousel .poster-item { width: 150px; }
  .poster-carousel .poster-item img { height: 225px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .device-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
