﻿?* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #031025;
  color: white;
  font-family: Segoe UI, sans-serif;
}

/* ============ NAVBAR ============ */
.hero {
  background: linear-gradient(160deg, #0a2b4f, #031025);
  min-height: auto;
  padding: 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.logo span {
  color: #00ffd5;
}

.nav-links {
  display: none;
  gap: 15px;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
  display: inline-block;
  font-size: 14px;
}

.nav-links li a:hover {
  background: #00ffd5;
  color: #000;
}

.plan-btn {
  background: #00ffd5;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.plan-btn:hover {
  transform: translateY(-2px);
}

.burger {
  display: none;
  width: 28px;
  height: 22px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.burger span {
  width: 100%;
  height: 3px;
  background-color: #00ffd5;
  border-radius: 2px;
  display: block;
  transition: 0.3s ease-in-out;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(-8px, -8px);
}

/* ============ HERO CONTAINER ============ */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #00ffd5;
}

.hero-text p {
  opacity: 0.8;
  margin: 20px 0;
  line-height: 1.6;
}

.badge {
  background: #00ffd5;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}

.hero-tags {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  background: rgba(0, 255, 213, 0.1);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  border: 1px solid rgba(0, 255, 213, 0.2);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.primary,
.secondary,
.price-btn {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
  font-size: 14px;
}

.primary {
  background: #00ffd5;
  color: #000;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 255, 213, 0.4);
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.price-btn {
  background: #00ffd5;
  color: #000;
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.stat {
  background: rgba(0, 255, 213, 0.08);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0, 255, 213, 0.2);
}

.stat h3 {
  color: #00ffd5;
  font-size: 24px;
  margin-bottom: 8px;
}

.stat p {
  font-size: 13px;
  opacity: 0.8;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

/* ============ SECTIONS GENERAL ============ */
.features-section,
.how-section,
.about-section,
.coverage,
.reviews,
.cta,
.devices,
.why,
.setup,
.pricing,
.epg-section,
.vod-section {
  padding: 60px 30px;
  text-align: center;
}

h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

h2 span {
  color: #00ffd5;
}

.subtitle {
  opacity: 0.7;
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.feature-card {
  background: linear-gradient(145deg, #0b1f3a, #0f2a4d);
  padding: 35px 25px;
  border-radius: 18px;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 255, 200, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 255, 200, 0.25);
  border: 1px solid rgba(0, 255, 200, 0.3);
}

.icon {
  font-size: 28px;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffc8, #00bfff);
  color: #001b2e;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 255, 200, 0.35);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  font-size: 14px;
}

/* ============ HOW IT WORKS ============ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.how-card {
  background: #071c38;
  padding: 40px 30px;
  border-radius: 18px;
  transition: all 0.25s ease;
}

.how-card:hover {
  transform: translateY(-8px);
  background: #0a2847;
}

.how-card h1 {
  color: #00ffd5;
  font-size: 48px;
  margin-bottom: 15px;
}

.how-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.how-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* ============ ABOUT SECTION ============ */
.about-section p {
  max-width: 700px;
  margin: 20px auto;
  opacity: 0.8;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  max-width: 500px;
  margin: 30px auto;
  text-align: left;
}

.about-list li {
  margin: 10px 0;
  font-size: 15px;
}

/* ============ TWO-GRID LAYOUT ============ */
.two-grid,
.vod-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.two-grid img,
.vod-section img {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.two-grid img:hover,
.vod-section img:hover {
  transform: scale(1.05);
}

/* ============ COVERAGE SECTION ============ */
.coverage {
  background: radial-gradient(circle at center, #102a4a 0%, #081b33 60%, #061424 100%);
}

.coverage h2 {
  font-size: 48px;
  letter-spacing: -1px;
}

.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.coverage-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 200, 0.15);
  transition: all 0.25s ease;
}

.coverage-grid span:hover {
  border: 1px solid rgba(0, 255, 200, 0.35);
  background: rgba(0, 255, 200, 0.08);
}

/* ============ REVIEWS SECTION ============ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.review {
  background: #071c38;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(0, 255, 200, 0.1);
}

.review:hover {
  transform: translateY(-8px);
  border: 1px solid rgba(0, 255, 200, 0.3);
}

.stars {
  color: #00ffd5;
  font-size: 18px;
  margin-bottom: 12px;
}

.review p {
  opacity: 0.9;
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.5;
}

.review small {
  opacity: 0.6;
  font-size: 12px;
}

/* ============ CTA SECTION ============ */
.cta p {
  opacity: 0.8;
  margin-bottom: 20px;
}

/* ============ DEVICES SECTION ============ */
.devices {
  background: rgba(0, 255, 213, 0.08);
  padding: 60px 30px;
}

.devices p {
  opacity: 0.85;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* ============ SETUP SECTION ============ */
.two-grid-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  text-align: left;
}

.setup h2 {
  text-align: left;
}

.setup h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* ============ PRICING SECTION ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.price {
  background: #071c38;
  padding: 30px;
  border-radius: 16px;
  transition: all 0.25s ease;
  border: 1px solid rgba(0, 255, 200, 0.1);
}

.price:hover {
  transform: translateY(-8px);
  border: 1px solid rgba(0, 255, 200, 0.3);
  box-shadow: 0 15px 35px rgba(0, 255, 200, 0.15);
}

.price h3 {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.price h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #00ffd5;
}

/* ============ WHY SECTION ============ */
.check {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.check li {
  font-size: 14px;
  background: rgba(0, 255, 213, 0.08);
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 213, 0.2);
}

.check.center {
  justify-content: center;
}

.why .primary {
  margin-top: 20px;
}

/* ============ FOOTER ============ */
footer {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 40px 20px;
  opacity: 0.7;
  font-size: 14px;
}

footer h3 {
  margin-bottom: 10px;
  opacity: 1;
}

footer p {
  margin: 8px 0;
}

/* ============ RESPONSIVE TABLET (992px) ============ */
/* ============ RESPONSIVE DESKTOP (769px+) ============ */
@media (min-width: 769px) {
  /* Show nav-links on desktop */
  .nav-links {
    display: flex !important;
  }
  .burger {
    display: none !important;
  }
  .plan-btn {
    display: block !important;
  }
}
@media (max-width: 992px) {
  h2 {
    font-size: 32px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .how-card {
    padding: 30px 20px;
  }

  .how-card h1 {
    font-size: 36px;
  }

  .two-grid,
  .vod-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-grid-stack {
    grid-template-columns: 1fr;
  }

  .features-section,
  .how-section,
  .about-section,
  .coverage,
  .reviews,
  .cta,
  .devices,
  .why,
  .setup,
  .pricing,
  .epg-section,
  .vod-section {
    padding: 50px 25px;
  }
}

/* Force hamburger on mobile */
@media (max-width: 768px) {
  .burger {
    display: flex !important;
  }
  .plan-btn {
    display: none !important;
  }
  .navbar {
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  /* Hide desktop nav layout by default */
  .nav-links {
    position: fixed !important;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background: #031025;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex: none !important;
    display: none !important;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 255, 213, 0.2);
    max-height: 80vh;
    overflow-y: auto;
  }
  /* Show menu ONLY when .show class is active */
  .nav-links.show {
    display: flex !important;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block !important;
    width: 100%;
    padding: 16px 20px !important;
    border-radius: 0 !important;
    background: transparent !important;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px !important;
    transition: all 0.2s ease;
  }
  .nav-links li a:hover {
    background: rgba(0, 255, 213, 0.15) !important;
    color: #00ffd5 !important;
    padding-left: 25px;
  }
  .nav-links li.mobile-plan-btn {
    width: 100%;
    margin: 12px 0 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 255, 213, 0.2);
  }
  .nav-links li.mobile-plan-btn a {
    background: #00ffd5 !important;
    color: #000 !important;
    display: block !important;
    text-align: center;
    font-weight: 600 !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    border-bottom: none !important;
    margin: 0 20px !important;
    transition: all 0.3s ease;
  }
  .nav-links li.mobile-plan-btn a:hover {
    background: #00e6c0 !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 213, 0.4);
    padding-left: 20px !important;
  }
  /* HERO SECTION */
  .hero {
    padding: 15px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .hero-text h1 {
    font-size: 24px;
    line-height: 1.3;
  }
  .hero-text p {
    font-size: 14px;
  }
  .badge {
    font-size: 12px;
    padding: 8px 12px;
  }
  .hero-tags {
    gap: 6px;
  }
  .hero-tags span {
    font-size: 12px;
    padding: 6px 10px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .primary,
  .secondary {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
  }
  .stat {
    padding: 15px 10px;
    border-radius: 10px;
  }
  .stat h3 {
    font-size: 18px;
  }
  .stat p {
    font-size: 12px;
  }
  /* SECTIONS */
  .features-section,
  .how-section,
  .about-section,
  .coverage,
  .reviews,
  .cta,
  .devices,
  .why,
  .setup,
  .pricing,
  .epg-section,
  .vod-section {
    padding: 40px 15px;
  }
  h2 {
    font-size: 26px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .feature-card {
    padding: 20px 15px;
  }
  .feature-card h3 {
    font-size: 15px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .price {
    padding: 20px;
  }
  .price h1 {
    font-size: 24px;
  }
  .price-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  .check li {
    font-size: 12px;
    padding: 8px 12px;
  }
  .coverage-grid span {
    font-size: 11px;
    padding: 8px 12px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review {
    padding: 15px;
  }
  .two-grid-stack {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  footer {
    font-size: 12px;
    padding: 30px 15px;
  }
}

/* ============ RESPONSIVE SMALL MOBILE (480px) ============ */
@media (max-width: 480px) {
  .logo {
    font-size: 16px;
  }

  .burger {
    font-size: 22px;
  }

  h2 {
    font-size: 22px;
  }

  .hero-text h1 {
    font-size: 20px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 10px;
  }

  .hero-text p {
    font-size: 14px;
  }

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

  .stat {
    padding: 12px;
  }

  .stat h3 {
    font-size: 16px;
  }

  .stat p {
    font-size: 12px;
  }

  .features-section,
  .how-section,
  .about-section,
  .coverage,
  .reviews,
  .cta,
  .devices,
  .why,
  .setup,
  .pricing,
  .epg-section,
  .vod-section {
    padding: 30px 12px;
  }

  .feature-card {
    padding: 20px 14px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .how-card {
    padding: 20px 14px;
  }

  .how-card h1 {
    font-size: 28px;
  }

  .how-card h3 {
    font-size: 16px;
  }

  .primary,
  .secondary,
  .price-btn {
    padding: 12px 18px;
    font-size: 13px;
  }

  .check li {
    font-size: 13px;
  }

  .coverage-grid span {
    font-size: 11px;
    padding: 8px 12px;
  }

  .price h1 {
    font-size: 24px;
  }

  footer {
    font-size: 12px;
    padding: 30px 15px;
  }
}







/* Why Choose Grid */
.why-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 40px auto;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #cbd5e0;
  display: flex;
  align-items: center;
}

.check-list li::before { content: '?'; color: #00ffcc; font-weight: bold; margin-right: 12px; }
.x-list li::before { content: '?'; color: #ff4d4d; font-weight: bold; margin-right: 12px; }

/* FAQ Styles */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover { background: rgba(0, 255, 204, 0.03); }

.faq-answer {
  padding: 0 25px 20px 25px;
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none; /* Hidden by default */
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer Logos and Disclaimer */
.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.disclaimer {
  font-size: 0.75rem;
  color: #4a5568;
  line-height: 1.5;
  margin-top: 30px;
}









/* ============ MOBILE FIX - Prevent Shifting ============ */
html, body {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .features-section,
  .how-section,
  .about-section,
  .coverage,
  .reviews,
  .cta,
  .devices,
  .why,
  .setup,
  .pricing,
  .epg-section,
  .vod-section,
  .faq,
  .footer {
    padding: 40px 15px !important;
  }
  
  .hero {
    padding: 15px;
  }
  
  .navbar {
    gap: 10px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .features-grid,
  .how-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .two-grid,
  .vod-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .cta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .features-section,
  .how-section,
  .about-section,
  .coverage,
  .reviews,
  .cta,
  .devices,
  .why,
  .setup,
  .pricing,
  .epg-section,
  .vod-section,
  .faq,
  .footer {
    padding: 30px 10px !important;
  }
  
  .hero {
    padding: 10px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero-text h1 {
    font-size: 22px;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
}
