/* Quebec Premium IPTV — Design DNA cloned from iptvqchd.ca
   Palette: deep navy #10131F, gold #F1C40F, orange CTA #F2933E, pink accent #F15B80
   Type: Inter (display/body) + Roboto Slab (headings flourish) */

:root {
  --bg: #10131F;
  --bg-elev: #1A1E2E;
  --bg-card: #1F2333;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --text: #FAFAFA;
  --text-soft: #CBCAC9;
  --text-mute: #777878;
  --gold: #F1C40F;
  --gold-dark: #D4A90A;
  --orange: #F2933E;
  --orange-dark: #DF7E27;
  --pink: #F15B80;
  --secondary: #54595F;
  --grad-warm: linear-gradient(135deg,#F2933E 0%,#F1C40F 100%);
  --grad-warm-rev: linear-gradient(135deg,#F1C40F 0%,#F2933E 100%);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 0 1px rgba(241,196,15,0.25), 0 10px 30px rgba(242,147,62,0.18);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --container: 1140px;
  --font-display: "Inter", system-ui, sans-serif;
  --font-slab: "Roboto Slab", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--orange); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 18px;
}
h1 { color: var(--gold); font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -1.5px; }
h2 { color: var(--gold); font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { color: #FFFCFC; font-size: 1.5rem; }
h4 { color: var(--text); font-size: 1.2rem; }

p { margin: 0 0 14px; color: var(--text-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }
section.tight { padding: 50px 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16,19,31,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -1px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.logo span { color: var(--orange); }
.logo::before {
  content: "";
  display: inline-block;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-warm);
  margin-right: 8px;
  box-shadow: 0 0 0 3px rgba(242,147,62,0.18);
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(241,196,15,0.08); color: var(--gold); }
.nav-links .nav-cta {
  background: var(--grad-warm);
  color: #1A1304;
  font-weight: 700;
  padding: 10px 18px;
}
.nav-links .nav-cta:hover { background: var(--grad-warm-rev); color: #1A1304; }
.lang-switch {
  margin-left: 8px;
  color: var(--text-mute);
  font-size: 0.85rem;
}
.lang-switch a { color: var(--text-mute); }
.lang-switch a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  min-height: 48px;
  letter-spacing: -0.2px;
}
.btn-primary {
  background: var(--grad-warm);
  color: #1A1304;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #1A1304;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(241,196,15,0.1);
  color: var(--gold);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(242,147,62,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(241,196,15,0.12) 0%, transparent 50%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead {
  color: var(--text-soft);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
  max-width: 560px;
}
.hero-stat {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  padding: 16px 14px;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: -1px;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16,19,31,0.6) 100%);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { max-width: 100%; }
}

/* ---------- Sections ---------- */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  background: rgba(242,147,62,0.1);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242,147,62,0.25);
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1.2px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text-soft);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241,196,15,0.4);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(242,147,62,0.08), var(--bg-card));
  box-shadow: var(--shadow-glow);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-warm);
  color: #1A1304;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 0 6px;
}
.price-card .duration {
  color: var(--text-mute);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 12px 0 4px;
  letter-spacing: -2px;
}
.price-card .price small {
  font-size: 1rem;
  color: var(--text-mute);
  font-weight: 500;
}
.price-card .saving {
  display: inline-block;
  background: rgba(241,196,15,0.12);
  color: var(--gold);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  flex-grow: 1;
}
.price-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-soft);
  font-size: 0.94rem;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #1A1304;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- Features (icon boxes) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px;
  transition: border-color .25s, transform .25s;
}
.feature:hover { border-color: rgba(241,196,15,0.3); transform: translateY(-4px); }
.feature .icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--grad-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #1A1304;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}
.feature p { font-size: 0.96rem; margin: 0; }

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

/* ---------- Trial CTA strip ---------- */
.cta-strip {
  background: var(--grad-warm);
  border-radius: var(--r-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 { color: #1A1304; margin-bottom: 16px; }
.cta-strip p { color: #2B1F08; font-weight: 500; max-width: 680px; margin: 0 auto 26px; }
.cta-strip .btn-dark {
  background: #10131F;
  color: var(--gold);
}
.cta-strip .btn-dark:hover { background: #1A1E2E; color: var(--orange); }

/* ---------- Devices / Compatibility ---------- */
.devices {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.device {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: transform .2s;
}
.device:hover { transform: translateY(-3px); border-color: var(--gold); }
.device .device-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 900px) { .devices { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .devices { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Channel categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color .25s, transform .25s;
}
.cat:hover { border-color: var(--gold); transform: translateY(-3px); }
.cat h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.cat .count {
  font-size: 0.8rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}
.cat p { font-size: 0.93rem; margin: 0; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------- Movie carousel (VOD) ---------- */
.vod-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
}
.vod-strip::-webkit-scrollbar { height: 8px; }
.vod-strip::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }
.vod-card {
  scroll-snap-align: start;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 2/3;
  border: 1px solid var(--border);
  transition: transform .25s;
}
.vod-card:hover { transform: scale(1.05); border-color: var(--gold); }
.vod-card img { width: 100%; height: 100%; object-fit: cover; }
.vod-card span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Posts / Guides grid ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.post:hover { transform: translateY(-4px); border-color: var(--gold); }
.post img { width: 100%; height: 200px; object-fit: cover; }
.post-body { padding: 20px; }
.post-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}
.post h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.post p { font-size: 0.92rem; margin-bottom: 14px; }
.post a.read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.post a.read-more:hover { color: var(--orange); }

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

/* ---------- Reseller section ---------- */
.reseller-block {
  background:
    linear-gradient(135deg, rgba(242,147,62,0.12), rgba(241,196,15,0.06)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.reseller-block ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.reseller-block ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-soft);
}
.reseller-block ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--gold);
}
@media (max-width: 900px) { .reseller-block { grid-template-columns: 1fr; padding: 36px 26px; } }

/* ---------- FAQ ---------- */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.active { border-color: var(--gold); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
}
.faq-question::after {
  content: "+";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #1A1304;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 24px;
}
.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-soft);
  margin: 0;
}

/* ---------- Guarantee strip ---------- */
.guarantee {
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed rgba(241,196,15,0.4);
  border-radius: var(--r-lg);
  padding: 50px 30px;
}
.guarantee .seal {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #1A1304;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  line-height: 1.1;
}
.guarantee .seal strong { font-size: 1.6rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  max-width: 540px;
  margin: 0 auto;
}
.form-card h3 { color: var(--gold); }
.form-card .trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: 18px;
  justify-content: center;
}
.form-card .trust-row span::before { content: "✓ "; color: var(--gold); }

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(241,196,15,0.18);
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 600;
}
.form-message--success { background: rgba(57,181,74,0.15); color: #6FD681; border: 1px solid rgba(57,181,74,0.3); }
.form-message--error   { background: rgba(241,91,128,0.15); color: #F8A0B6; border: 1px solid rgba(241,91,128,0.3); }

/* Plan radio cards (checkout) */
.plan-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 18px; }
.plan-option {
  border: 2px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 16px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .2s, background .2s;
}
.plan-option.selected { border-color: var(--gold); background: rgba(241,196,15,0.08); }
.plan-option strong { font-family: var(--font-display); color: var(--text); }
.plan-option span { color: var(--text-mute); font-size: 0.88rem; }
.plan-option input { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0A0D17;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-soft);
  font-size: 0.92rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-contact { font-size: 0.92rem; color: var(--text-soft); }
.footer-contact a { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-mute);
}
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 18px 0;
  font-size: 0.88rem;
  color: var(--text-mute);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-mute); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-mute); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 70px 0 50px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(242,147,62,0.18) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: var(--text-soft); max-width: 680px; margin: 0 auto; }

/* ---------- Legal / prose ---------- */
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose h2 { color: var(--gold); margin-top: 38px; }
.prose h3 { color: var(--text); margin-top: 26px; font-size: 1.2rem; }
.prose p, .prose li { color: var(--text-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }

/* ---------- Setup steps ---------- */
.steps { counter-reset: step; max-width: 880px; margin: 0 auto; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
  padding: 26px 28px;
  margin-bottom: 18px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: rgba(241,196,15,0.18);
  letter-spacing: -2px;
}
.step h3 { color: var(--gold); font-size: 1.18rem; margin-bottom: 8px; }
.step p { margin: 0; }

/* ---------- WhatsApp widget (custom theme matches) ---------- */
.iptv-wa-btn { background: var(--orange) !important; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
