/* IPTV PLAYLIST — Music Streaming Dark Teal (Spotify-inspired) */
:root {
  --bg: #121212;
  --bg-alt: #1A1A1A;
  --surface: #282828;
  --border: #282828;
  --teal: #14B8A6;
  --teal-dark: #0D9488;
  --text: #FFFFFF;
  --muted: #A7A7A7;
  --footer-bg: #090909;
  --font-head: "Montserrat", "Circular", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-mono: "Montserrat", ui-monospace, monospace;
  --nav-h: 64px;
  --radius: 50px;
  --card-radius: 12px;
  --section-py: 72px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 12px 32px rgba(20, 184, 166, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: #5eead4; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.center { text-align: center; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); font-size: 0.92em; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 0.65rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 700; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #121212;
  border-bottom: 1px solid #282828;
}
.site-header--dark { background: #121212; }
.site-header--dark .nav-toggle { color: #fff; border-color: #282828; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 12px;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(280px, 52vw);
  line-height: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a { color: var(--muted); }
.nav--light a { color: rgba(255,255,255,0.85); }
.nav a:hover, .nav a.active { color: #fff; }
.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.4);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #282828;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 4%;
  border-top: 1px solid #282828;
  background: #121212;
}
.mobile-nav a { color: #fff; }
.mobile-nav.open { display: flex; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.btn:hover {
  background: var(--teal-dark);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.45);
  transform: translateY(-1px);
  color: #fff;
}
.btn.alt, .btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
}
.btn.alt:hover, .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: #fff;
}
.btn--dark {
  background: #121212 !important;
  color: #fff !important;
  border: 2px solid #121212;
}
.btn--dark:hover {
  background: #1A1A1A !important;
  color: #fff !important;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.25rem; justify-content: center; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Sections */
.section { padding: var(--section-py) 0; background: var(--bg); }
.section--alt { background: var(--bg-alt); }

/* Cards */
.card, .panel {
  background: var(--surface);
  border: none;
  border-radius: var(--card-radius);
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .price-card:hover, .review-card:hover, .why-card:hover, .compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Hero full-screen */
.hero-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: calc(var(--nav-h) + 40px) 0 60px;
}
.hero-fullscreen .container { position: relative; z-index: 1; max-width: 800px; }
.hero-fullscreen h1 { color: #fff; }
.hero-fullscreen .hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.12rem;
  max-width: 56ch;
  margin: 0 auto 1rem;
}
.hero-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* Free vs Premium */
.free-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}
.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.compare-card { text-align: center; }
.compare-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.compare-card h3 { margin-bottom: 0.5rem; }
.compare-card ul { list-style: none; text-align: left; font-size: 0.9rem; color: var(--muted); }
.compare-card li { padding: 6px 0; }
.free-vs-visual {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.free-vs-visual img { width: 100%; height: auto; }

/* Trust bar */
.trust-bar {
  background: var(--bg-alt);
  padding: 28px 0;
  border-top: 1px solid #282828;
  border-bottom: 1px solid #282828;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.trust-bar__sep { color: #282828; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.pricing-grid.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}
.price-card { position: relative; }
.price-card.popular {
  border: 2px solid var(--teal);
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.2);
}
.badge-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-tag {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--teal);
  margin: 0.5rem 0;
}
.price-card ul { list-style: none; margin: 1rem 0; font-size: 0.9rem; color: var(--muted); }
.price-card li { padding: 4px 0; }
.pricing-row-label {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 500;
}

/* Why choose 3x2 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-card h3 { color: var(--teal); margin-bottom: 0.5rem; }

/* Devices split */
.devices-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 2.5rem;
  align-items: center;
}
.devices-split__media {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.device-list {
  list-style: none;
  margin: 1.25rem 0;
}
.device-list li {
  padding: 8px 0;
  border-bottom: 1px solid #282828;
  color: var(--muted);
  font-weight: 500;
}
.device-list li::before { content: "▶ "; color: var(--teal); }

/* How it works — teal pill circles */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Comparison table */
.cmp-wrap { overflow-x: auto; margin-top: 1.25rem; }
table.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--surface);
  border-radius: var(--card-radius);
  overflow: hidden;
}
table.cmp th, table.cmp td {
  border: 1px solid #333;
  padding: 12px 14px;
  text-align: left;
}
table.cmp th {
  background: var(--bg-alt);
  color: var(--text);
  font-weight: 700;
}
table.cmp td:first-child { color: var(--muted); font-weight: 500; }
table.cmp .col-good { color: var(--teal); font-weight: 600; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--teal);
}
.review-card .review-meta {
  font-size: 0.8rem;
  color: var(--teal);
  margin-bottom: 4px;
}
.review-device { font-size: 0.85rem; margin-bottom: 8px; color: var(--muted); }
.review-card p { color: var(--muted); font-size: 0.95rem; }

/* FAQ */
.faq-list { margin-top: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--surface);
  border: none;
  border-radius: var(--card-radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-q span { color: var(--teal); font-weight: 700; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-q { border-bottom: 1px solid #333; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 1.25rem 1rem; color: var(--muted); font-size: 0.95rem; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.blog-thumb {
  border-radius: var(--card-radius);
  margin-bottom: 1rem;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-prose { max-width: 72ch; }
.article-prose p { margin-bottom: 1rem; color: var(--muted); }
.article-prose h2 { margin-top: 1.75rem; color: var(--text); }
.article-prose ul, .article-prose ol { margin: 0 0 1rem 1.25rem; color: var(--muted); }

/* CTA strip teal */
.cta-strip {
  background: var(--teal);
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-strip p { color: rgba(255,255,255,0.9); max-width: 50ch; margin: 0 auto 1.25rem; }

/* Page hero */
.page-hero {
  padding: 56px 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid #282828;
}
.page-hero--img {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 72px 0;
  color: #fff;
}
.page-hero--img .container { position: relative; z-index: 1; }
.page-hero--img h1 { color: #fff !important; }
.page-hero--img .hero-sub { color: rgba(255,255,255,0.9); }
.page-hero--img .hero-meta { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 0.75rem; }
.page-hero--img .hero-meta a { color: rgba(255,255,255,0.9); }

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-card--large {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--teal);
}
.contact-card--large h3 { color: var(--teal); margin-bottom: 0.75rem; }

/* Footer */
.footer {
  background: var(--footer-bg);
  color: #A7A7A7;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  font-size: 0.85rem;
  color: var(--teal);
  margin-bottom: 12px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: #A7A7A7; font-size: 0.9rem; }
.footer a:hover { color: var(--teal); }
.footer .muted { color: #A7A7A7; }
.footer-bottom {
  border-top: 1px solid #282828;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #A7A7A7;
}
.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Popup dark teal border */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup-card {
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  background: var(--surface);
  border: 2px solid var(--teal);
  border-radius: var(--card-radius);
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.kicker { font-size: 0.85rem; color: var(--teal); font-weight: 600; }
.price-old s { opacity: 0.6; }

/* Float buy + sticky WA */
.float-buy {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 55;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(20, 184, 166, 0.45);
}
.float-buy:hover { color: #fff; box-shadow: 0 6px 28px rgba(20, 184, 166, 0.55); }
.sticky-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#reseller-pricing { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .free-vs-grid { grid-template-columns: 1fr; }
  .compare-cards { grid-template-columns: 1fr; }
  .devices-split { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .pricing-grid.pricing-grid--3 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__sep { display: none; }
  .trust-bar__inner { flex-direction: column; gap: 10px; }
  #reseller-pricing { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  :root { --section-py: 48px; }
  .btn-row { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .float-buy { bottom: 76px; right: 16px; width: 50px; height: 50px; }
  .sticky-wa { bottom: 16px; right: 16px; width: 48px; height: 48px; }
}
