/* ════════════════════════════════════════════
   HOME PAGE — mobile-first styles v4
════════════════════════════════════════════ */

/* ════════════════════════════
   HERO — Mobile first
════════════════════════════ */
.hero {
  padding: 48px 0 52px;
  background: linear-gradient(160deg, #fff8f6 0%, #fff 65%);
}
.hero-inner {
  /* Single column on mobile */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero-desc {
  font-size: 1rem; color: var(--slate);
  margin: 16px auto 28px;
  max-width: 44ch; line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 24px;
}
.hero-ctas .btn {
  width: 100%;
  justify-content: center;
}

.hero-trust {
  display: flex; flex-wrap: wrap;
  gap: 8px; justify-content: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mist); border-radius: var(--r-pill);
  padding: 5px 12px; font-size: .76rem; font-weight: 500; color: var(--slate);
}
.trust-pill svg { color: var(--green); flex-shrink: 0; width: 12px; height: 12px; }

/* TV Mockup — hidden on mobile, shown on desktop */
.hero-visual { display: none; }

/* Desktop hero — two columns */
@media (min-width: 900px) {
  .hero { padding: 72px 0 64px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
    gap: 56px;
  }
  .hero-desc  { margin: 16px 0 28px; max-width: 46ch; }
  .hero-ctas  { flex-direction: row; width: auto; }
  .hero-ctas .btn { width: auto; }
  .hero-trust { justify-content: flex-start; }
  .hero-visual { display: block; position: relative; }
}

/* ── TV MOCKUP (desktop) ── */
.tv-mockup   { width: 100%; max-width: 440px; }
.tv-screen {
  background: #111; border-radius: 14px 14px 6px 6px;
  overflow: hidden; border: 3px solid #1c1c1c;
  box-shadow: var(--sh-lg);
}
.tv-topbar {
  background: rgba(255,85,51,.9); padding: 8px 13px;
  display: flex; align-items: center; gap: 8px;
}
.tv-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  animation: blink 1.4s infinite; flex-shrink: 0;
}
.tv-topbar-title { font-size: .62rem; font-weight: 700; color: #fff; letter-spacing: .06em; }
.tv-topbar-time  { font-size: .58rem; color: rgba(255,255,255,.5); margin-left: auto; }
.tv-channels {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 6px; padding: 12px;
}
.ch-card {
  aspect-ratio: 16/9; background: #1a1a1a; border-radius: 5px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-weight: 700;
  font-size: .56rem; color: rgba(255,255,255,.4);
  text-align: center; position: relative;
  border: 1px solid rgba(255,255,255,.04); line-height: 1.2;
}
.ch-card.playing { background: #1f0e0a; border-color: var(--coral); color: var(--coral); }
.ch-live {
  position: absolute; top: 2px; right: 2px;
  background: var(--coral); color: #fff;
  font-size: .36rem; padding: 1px 3px; border-radius: 2px;
  font-weight: 700;
}
.tv-stand {
  width: 38%; height: 10px; background: #1a1a1a; margin: 0 auto;
  border-radius: 0 0 6px 6px; border: 3px solid #1c1c1c; border-top: none;
}
.hero-float {
  position: absolute; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 9px 13px; box-shadow: var(--sh-md);
}
.hero-float-a { top: -14px; left: -16px; }
.hero-float-b { bottom: 24px; left: -20px; }
.hero-float .num {
  font-family: 'Clash Display', sans-serif; font-weight: 700;
  font-size: 1.3rem; color: var(--coral); line-height: 1;
}
.hero-float .lbl { font-size: .67rem; color: var(--slate); }

/* ════════════════════════════
   CHANNEL TRUST BAR
════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--mist);
}
.trust-bar-label {
  text-align: center; font-size: .72rem; color: var(--slate);
  margin-bottom: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
}
.ch-strip { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.ch-pill {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px 12px; font-size: .78rem; font-weight: 600; color: var(--ink2);
  transition: border-color .14s, color .14s;
}
@media (hover: hover) {
  .ch-pill:hover { border-color: var(--coral); color: var(--coral); }
}

/* ════════════════════════════
   STATS STRIP
════════════════════════════ */
.stats-strip { background: var(--coral); overflow: hidden; }

/* 2×2 on mobile */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stat-item {
  text-align: center; padding: 28px 12px;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
/* Remove right border on even items, bottom border on last row */
.stat-item:nth-child(2n)  { border-right: none; }
.stat-item:nth-child(3),
.stat-item:nth-child(4)   { border-bottom: none; }

.stat-num {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700; font-size: 1.8rem;
  color: #fff; letter-spacing: -.03em; line-height: 1;
}
.stat-lbl { font-size: .76rem; color: rgba(255,255,255,.78); margin-top: 4px; }

/* 4 columns on desktop */
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .stat-item  { border-bottom: none; padding: 36px 20px; }
  .stat-item:last-child { border-right: none; }
  .stat-num   { font-size: 2.2rem; }
}

/* ════════════════════════════
   FEATURES
════════════════════════════ */
.features-bg { background: var(--mist); }
.section-intro { margin-bottom: 40px; }

/* Single column on mobile */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .features-grid { grid-template-columns: repeat(3,1fr); gap: 18px; }
}

.feature-card { padding: 24px 22px; }
.feat-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--coral-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px;
}
.feature-card h3 { margin-bottom: 8px; color: var(--ink); }
.feature-card p  { font-size: .875rem; }

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
.how-bg { background: #fff; }

/* Stack on mobile */
.steps-row {
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
  max-width: 420px; margin: 0 auto;
}
.step { text-align: center; width: 100%; }
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(255,85,51,.3);
}
.step h3 { margin-bottom: 8px; }
.step p  { font-size: .875rem; }
.step-arr { display: none; } /* arrow hidden on mobile */

/* 3 columns on desktop */
@media (min-width: 820px) {
  .steps-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start; gap: 16px;
    max-width: 860px;
  }
  .step-arr {
    display: block;
    font-size: 1.4rem; color: var(--border);
    align-self: center; padding-top: 8px;
  }
}

/* ════════════════════════════
   PRICING PREVIEW
════════════════════════════ */
.pricing-bg { background: var(--mist); }

/* Stack on mobile */
.plans-grid {
  display: flex; flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
@media (min-width: 820px) {
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
  }
}

.plan-card { padding: 24px 20px; position: relative; }
.plan-card.featured {
  border-color: var(--coral); background: #fff;
  box-shadow: var(--sh-coral);
  /* Ensure featured is visually prominent on mobile too */
  order: -1;
}
@media (min-width: 820px) {
  .plan-card.featured { order: 0; }
}

.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff;
  font-family: 'Clash Display', sans-serif;
  font-size: .66rem; font-weight: 700;
  padding: 4px 14px; border-radius: var(--r-pill);
  white-space: nowrap; letter-spacing: .04em;
}
.plan-label {
  font-family: 'Clash Display', sans-serif; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--slate); margin-bottom: 10px;
}
.plan-price {
  font-family: 'Clash Display', sans-serif;
  display: flex; align-items: baseline; gap: 2px; margin-bottom: 3px;
}
.plan-sym { font-size: 1rem; font-weight: 700; color: var(--slate); }
.plan-int { font-size: 2.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.plan-dec { font-size: 1rem; font-weight: 700; color: var(--ink); }
.plan-per { font-size: .78rem; color: var(--slate); margin-bottom: 18px; }
.plan-sep { height: 1px; background: var(--border); margin: 16px 0; }
.plan-feats { list-style: none; margin-bottom: 22px; }
.plan-feats li {
  display: flex; gap: 9px; font-size: .84rem; color: var(--slate);
  margin-bottom: 8px; align-items: baseline;
}
.pricing-note {
  text-align: center; font-size: .84rem; color: var(--slate);
}

/* ════════════════════════════
   REVIEWS
════════════════════════════ */
.reviews-bg { background: #fff; }

.reviews-grid {
  display: flex; flex-direction: column; gap: 14px;
}
@media (min-width: 768px) {
  .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
}

.review-card  { padding: 22px; }
.review-stars { color: #F59E0B; font-size: .85rem; margin-bottom: 12px; }
.review-body  { font-size: .875rem; color: var(--slate); margin-bottom: 16px; font-style: italic; }
.reviewer     { display: flex; align-items: center; gap: 10px; }
.rev-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--coral-pale); color: var(--coral);
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: .78rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.rev-name { font-weight: 600; font-size: .85rem; color: var(--ink); }
.rev-loc  { font-size: .75rem; color: var(--slate); }

/* ════════════════════════════
   BLOG PREVIEW
════════════════════════════ */
.blog-bg { background: var(--mist); }

.blog-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}

/* Single column on mobile — show only featured post */
.blog-grid {
  display: flex; flex-direction: column; gap: 16px;
}
.blog-card:not(.featured-post) { display: none; }

@media (min-width: 768px) {
  .blog-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .blog-card:not(.featured-post) { display: block; }
  .blog-card:last-child { display: none; } /* keep 2 on tablet */
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .blog-card:last-child { display: block; }
}

.blog-card { overflow: hidden; }
.blog-thumb {
  aspect-ratio: 16/9; position: relative;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.bt1 { background: linear-gradient(135deg,#ff8c69,#ff5533); }
.bt2 { background: linear-gradient(135deg,#60a5fa,#2563eb); }
.bt3 { background: linear-gradient(135deg,#34d399,#059669); }
.blog-cat-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: #fff; color: var(--ink);
  font-size: .67rem; font-weight: 700;
  padding: 3px 10px; border-radius: var(--r-pill);
  font-family: 'Clash Display', sans-serif; letter-spacing: .04em;
}
.blog-body  { padding: 18px; }
.blog-meta  { font-size: .72rem; color: var(--slate); margin-bottom: 7px; }
.blog-card h3 { font-size: .9rem; margin-bottom: 7px; line-height: 1.35; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--coral); }
.featured-post h3 { font-size: 1.08rem; }
.blog-card p  { font-size: .83rem; }
.read-more {
  display: inline-block; margin-top: 10px;
  font-size: .8rem; font-weight: 600; color: var(--coral);
}

/* ════════════════════════════
   CTA BANNER
════════════════════════════ */
.cta-banner {
  background: var(--coral); border-radius: 16px;
  padding: 36px 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 24px;
}
.cta-banner h2 { color: #fff; }
.cta-banner p  { color: rgba(255,255,255,.82); margin-top: 6px; font-size: .9rem; }
.cta-actions {
  display: flex; flex-direction: column;
  gap: 10px; width: 100%;
}
.cta-actions .btn { width: 100%; justify-content: center; }

@media (min-width: 600px) {
  .cta-banner  { padding: 44px 40px; border-radius: 18px; }
  .cta-actions { flex-direction: row; width: auto; flex-wrap: wrap; justify-content: center; }
  .cta-actions .btn { width: auto; }
}
@media (min-width: 960px) {
  .cta-banner {
    flex-direction: row;
    text-align: left; justify-content: space-between;
    padding: 52px 56px;
  }
  .cta-actions { justify-content: flex-end; }
}
