:root {
  --bg: #050b14;
  --surface: #0e1725;
  --surface-alt: #132038;
  --text: #f6f8fb;
  --muted: #aab3c7;
  --primary: #2dd4bf;
  --primary-dark: #14b8a6;
  --accent: #38bdf8;
  --danger: #fb7185;
}

* {
  box-sizing: border-box;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

html { overflow-x: clip; }

body {
  margin: 0;
  overflow-x: clip;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(45, 212, 191, 0.12), transparent 30%), var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn,
.button-link {
  border: none;
  cursor: pointer;
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(5, 11, 20, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.logo-placeholder {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.18);
  color: var(--text);
  font-size: 0.9rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.header-inner > .button-link {
  flex-shrink: 0;
  padding: 0.45rem 1.4rem;
}

.button-link,
.btn {
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #06101a;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn:hover,
.button-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.25);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
}

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: rgba(4, 13, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}


.hero-copy .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 212, 191, 0.12);
  color: var(--primary);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-keyword {
  color: #2dd4bf;
  text-shadow: 0 0 25px rgba(45, 212, 191, 0.75), 0 0 55px rgba(45, 212, 191, 0.35);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.05;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.55);
  font-weight: 800;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-copy h1,
.feature-copy h2,
.section-head h2,
.blog-hero h1,
.post-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  text-shadow: none;
}

.hero-copy p,
.section-head p,
.feature-copy p,
.testimonial-card p,
.contact-card p,
.blog-hero p,
.post-copy p {
  color: var(--muted);
  max-width: 45rem;
  justify-content: center;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #06101a;
}

.image-placeholder,
.placeholder-box,
.plan-card,
.contact-card,
.post-card,
.feature-image,
.channel-logos .logo-card,
.device-card,
.testimonial-image {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-image {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  height: auto;
  border-radius: 28px;
  display: block;
}

.image-placeholder,
.placeholder-box {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  border: 1px dashed rgba(170, 179, 199, 0.35);
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-head-center {
  text-align: center;
}

/* When the section header is centered, also center the constrained-width
   paragraph block so wrapped lines anchor to the visual center, not the
   left edge of the grid cell. */
.section-head-center > p {
  margin-left: auto;
  margin-right: auto;
}

.plan-promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.plan-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.14);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.plan-promo-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.plan-grid,
.blog-grid,
.testimonial-grid,
.channel-logos,
.device-logos,
.faq-grid,
.blog-list {
  display: grid;
  gap: 1.5rem;
}

.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-top: 2.5rem;
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 33, 0.9);
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 0.6rem;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
}

.plan-popular-banner {
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  transform: translateY(-100%);
  padding: 0.65rem 1rem;
  background: linear-gradient(90deg, #ff4d97, #ff94d6);
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  border-radius: 999px;
}

.plan-card-top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.plan-name-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.plan-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(255, 95, 182, 0.35), rgba(174, 15, 109, 0.25));
  border: 1px solid rgba(255, 95, 182, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(255, 95, 182, 0.55);
  font-size: 1.25rem;
  color: #fff;
}

.plan-name {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
  white-space: nowrap;
}

.plan-status,
.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.plan-status {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.plan-badge {
  background: linear-gradient(135deg, #ff3ca6, #ff8af2);
  color: #fff;
}

.plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(135deg, #ff4d97, #ff94d6);
  color: #fff;
}

.plan-price-block {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.plan-price-block strong {
  font-size: 3rem;
  line-height: 1;
  color: #fff;
}

.plan-price-block span {
  color: var(--muted);
  font-size: 1rem;
}

.plan-price-old {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.plan-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.plan-features {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.plan-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-left: 0.2rem;
}

.plan-features p::before {
  content: "✓";
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.plan-card.popular {
  border-color: rgba(255, 77, 151, 0.6);
  background: linear-gradient(180deg, rgba(4, 24, 41, 0.98), rgba(7, 37, 63, 0.95));
  box-shadow: 0 0 0 1px rgba(255, 77, 151, 0.2), 0 30px 95px rgba(255, 77, 151, 0.15);
  overflow: visible;
}

.plan-card.popular::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: radial-gradient(circle at top, rgba(45, 212, 191, 0.22), transparent 35%);
  pointer-events: none;
}

.plan-card.popular .plan-name,
.plan-card.popular .plan-status,
.plan-card.popular .plan-subtitle,
.plan-card.popular .plan-features p,
.plan-card.popular .plan-price-block span,
.plan-card.popular .plan-price-old {
  color: rgba(255, 255, 255, 0.95);
}

.plan-card .btn {
  width: 85%;
  justify-self: center;
  margin-top: auto;
  padding: 0.45rem 1.4rem;
  text-align: center;
}

.feature-section,
.testimonials-section,
.faq-section,
.devices-section,
.blog-preview,
.contact-section {
  padding: 3rem 0;
}

.channels-section {
  padding: 3rem 0 1.5rem;
}

.feature-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.feature-grid {
  grid-template-columns: 1fr 1fr;
}

.feature-section.reverse .feature-grid {
  direction: rtl;
}

.feature-section.reverse .feature-grid > * {
  direction: ltr;
}

.poster-strip-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(45, 212, 191, 0.05);
  border-radius: 28px;
  border: 1px solid rgba(45, 212, 191, 0.12);
  overflow: hidden;
}

.poster-strip {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll-posters 50s linear infinite;
  /* Hard-pin running state — keeps animation alive on touch devices where
     :hover behaves erratically (iOS Safari "sticky hover" after a tap can
     freeze the strip until the user taps somewhere else). */
  animation-play-state: running;
}

/* Hover-pause is desktop-only. On touch devices the @media gate is false so
   tapping never freezes the scroll. */
@media (hover: hover) {
  .poster-strip:hover {
    animation-play-state: paused;
  }
}

.poster-card {
  min-width: 220px;
  display: grid;
  gap: 0.9rem;
}

.poster-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.poster-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #f8fafc;
  text-align: center;
}

@keyframes scroll-posters {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.poster-icons-panel {
  display: grid;
  gap: 0.85rem;
  background: rgba(4, 13, 24, 0.85);
  border-radius: 22px;
  padding: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.poster-icons-label {
  margin: 0;
  padding: 0 1.2rem;
  color: #d6fcf5;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cat-chip-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0.25rem 0;
}

.cat-chip-row {
  display: flex;
  gap: 0.6rem;
  width: max-content;
  animation: scroll-cats 90s linear infinite;
}

.cat-chip-wrap:hover .cat-chip-row {
  animation-play-state: paused;
}

@keyframes scroll-cats {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cat-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.22);
  color: #d6fcf5;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.cat-chip:hover {
  background: rgba(45, 212, 191, 0.2);
  border-color: rgba(45, 212, 191, 0.45);
}

.premium-channels-hero {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.premium-channels-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.channels-hero-text {
  position: absolute;
  top: 1.75rem;
  left: 0;
  width: 55%;
  padding: 0 2.5rem;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
}
.channels-hero-text h3 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: #fff;
}
.channels-hero-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}


.channel-scroll {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 0;
}

.channel-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: max-content;
  /* Promote to its own compositing layer + signal to the browser we're
     animating `transform`. Without this, mobile Safari/Chrome de-composite
     long-running marquees after a few cycles and the strip goes blank
     ("Channel logos not showing on mobile after too much time"). */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.channel-logos.scrolling {
  animation: scroll-logos 30s linear infinite;
  animation-play-state: running;
}

/* Hover-pause is desktop-only — touch devices must never freeze the strip. */
@media (hover: hover) {
  .channel-logos.scrolling:hover {
    animation-play-state: paused;
  }
}

.channel-logo-card,
.logo-card,
.device-card {
  padding: 0.85rem;
  display: grid;
  place-items: center;
  min-height: 88px;
  min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.channel-logo-card img {
  width: 100%;
  max-height: 68px;
  object-fit: contain;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1rem;
}

.faq-grid {
  grid-template-columns: 1.5fr 0.9fr;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.contact-card {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-item .icon {
  font-size: 1.8rem;
}

.blog-grid,
.blog-list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card,
.post-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
}

.post-card {
  display: grid;
  gap: 1.25rem;
}

.post-copy h2,
.blog-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.read-more {
  color: var(--primary);
  font-weight: 700;
}

.blog-hero {
  padding: 4rem 0 2rem;
}

.contact-grid {
  grid-template-columns: 1.4fr 1fr;
}

.contact-summary {
  background: rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 2rem;
  padding: 3rem 0 1rem;
}

.footer-links {
  display: grid;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-copy {
  color: var(--muted);
  padding-bottom: 2rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 0.6rem 1.25rem 0.6rem 0.8rem;
  border-radius: 999px;
  background: #25D366;
  color: #031014;
  font-weight: 700;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.22);
}

.image-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.channel-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
  padding-top: 2rem;
}

.channel-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 0.95rem 1.5rem 0.95rem 0.8rem;
  border-radius: 999px;
  background: #25D366;
  color: #031014;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.channel-cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.32);
}

.channel-cta-ghost {
  position: absolute;
  bottom: 1.75rem;
  left: 2.5rem;
  background: transparent;
  border: 2px solid #25D366;
  color: #fff;
  box-shadow: none;
  z-index: 2;
}
.channel-cta-ghost:hover {
  background: rgba(37, 211, 102, 0.12);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.whatsapp-icon img {
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
}


.plan-comparison {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  color: var(--muted);
  font-weight: 500;
}

.comparison-table thead th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-table thead th.col-popular {
  background: rgba(45, 212, 191, 0.12);
  color: var(--primary);
}

.comparison-table td.col-popular {
  background: rgba(45, 212, 191, 0.05);
}

.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:hover td.col-popular {
  background: rgba(45, 212, 191, 0.08);
}

.cmp-yes {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.cmp-no {
  color: rgba(255, 255, 255, 0.2);
}

.cmp-price-row td {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.cmp-price-row td.col-popular {
  color: var(--primary);
}

.cmp-price-row td span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}

/* --- Brand as link --- */
a.brand {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Subscription section spacing --- */
.subscription-section {
  padding: 3rem 0;
}

/* ── Customer Reviews marquee ──────────────────────────────────────────── */
/* Horizontal infinite-scroll track of WhatsApp screenshot reviews.
   The track <div> contains the gallery TWICE (original + duplicate added at
   deploy time). Translating from 0 to -50% moves exactly one full set out of
   view, so the duplicate slides into the exact position the original started
   at — seamless loop with zero visible jump.

   Layout pillars (do NOT let later rules undo any of these):
     1. `.review-marquee` clips the overflow + fades the edges via mask-image.
     2. `.review-track` is `display: flex; flex-wrap: nowrap;` with intrinsic
        `width: max-content`, so children sit in ONE row no matter how many.
     3. Every `<img>` gets an explicit fixed width — overriding the global
        `width: auto` defaults — so they never stretch to fill the page or
        collapse onto separate rows. */

.reviews-section {
  padding: 3rem 0;
}

.review-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  /* Soft fade on left + right edges so reviews glide in/out rather than hard-cut */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
          mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.review-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.5rem;
  padding: 0.75rem 0;
  width: max-content;
  animation: review-scroll 35s linear infinite;
  will-change: transform;
}

/* Hover-pause is intentional on a real pointing device (lets the user read a
   specific screenshot). Touch devices report `:hover` weirdly and pausing on
   tap is hostile — guard it behind the hover media query. */
@media (hover: hover) {
  .review-marquee:hover .review-track {
    animation-play-state: paused;
  }
}

/* Each WhatsApp screenshot styled to look like an actual phone screen:
     - fixed 280px wide for a predictable row
     - max-height 500px caps very tall captures + object-fit covers gracefully
     - thicker outer border + inner-shadow notch effect simulates a phone bezel
     - 28px radius matches the rest of the template's card language */
.review-track img {
  flex: 0 0 auto;
  display: block;
  width: 280px;
  max-width: 280px;
  height: 500px;
  max-height: 500px;
  /* `contain` preserves the screenshot's aspect ratio (no cropping). The
     dark `background` below fills any letterbox space so the phone-frame
     bezels around it look intentional rather than empty. */
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  /* Dark bezel ring around the screenshot — mimics a phone case. */
  border: 6px solid #0a0f1a;
  outline: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 33, 0.6);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  /* The global `img { pointer-events: none }` rule kills hover by default —
     re-enable it inside the track so the hover-pause feels intentional. */
  pointer-events: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-track img:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.65);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 0 35px rgba(45, 212, 191, 0.20),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

@keyframes review-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; }
}

@media (max-width: 720px) {
  .reviews-section { padding: 2rem 0; }
  /* `flex-shrink: 0` and an explicit `min-width` on every track child make
     sure the row can't collapse when the parent gets narrower than the sum
     of children — that was the cause of "some images don't show" on
     mobile (the flex container was squishing items down to zero width). */
  .review-track {
    gap: 1rem;
    animation-duration: 28s;
    min-width: max-content;
  }
  .review-track img {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    height: 420px;
    max-height: 420px;
    object-fit: contain;
    border-radius: 22px;
    border-width: 4px;
  }
}

/* ── "Why Choose Us" — quality / trust grid ─────────────────────────────── */
/* Visually mirrors the rest of the template:
   - 28px card radius
   - rgba(255,255,255,0.04) tinted surface
   - teal primary glow on icons
   - Subtle entrance animation triggered by IntersectionObserver in main.js
     (cards start translated + invisible; .reveal-in adds the final state). */

.why-choose-section {
  padding: 3rem 0;
}

.why-choose-section .section-head { margin-bottom: 2rem; }

.why-rating-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  margin: 0 auto 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.10), transparent 60%),
    rgba(10, 18, 33, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.why-rating-score-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.why-rating-score {
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.35);
  line-height: 1;
}

.why-rating-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #fbbf24;
}
.why-rating-stars svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.6));
  animation: why-star-pop 0.6s cubic-bezier(.34, 1.56, .64, 1) backwards;
}
.why-rating-stars svg:nth-child(1) { animation-delay: 0.05s; }
.why-rating-stars svg:nth-child(2) { animation-delay: 0.15s; }
.why-rating-stars svg:nth-child(3) { animation-delay: 0.25s; }
.why-rating-stars svg:nth-child(4) { animation-delay: 0.35s; }
.why-rating-stars svg:nth-child(5) { animation-delay: 0.45s; }

@keyframes why-star-pop {
  0%   { opacity: 0; transform: scale(0.3) rotate(-30deg); }
  60%  { opacity: 1; transform: scale(1.2) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.why-rating-text {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}
.why-rating-text strong {
  color: var(--text);
}

/* Feature grid */
.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.why-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.8rem 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 33, 0.9);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.why-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(45, 212, 191, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.why-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.why-feature-card:hover::before { opacity: 1; }

.why-feature-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}
.why-feature-icon svg {
  width: 28px;
  height: 28px;
}

/* Icon colour tints + glow rings */
.why-icon-primary  { color: var(--primary); box-shadow: 0 0 30px rgba(45, 212, 191, 0.25) inset; }
.why-icon-accent   { color: var(--accent);  box-shadow: 0 0 30px rgba(56, 189, 248, 0.25) inset; }
.why-icon-success  { color: #4ade80;        box-shadow: 0 0 30px rgba(74, 222, 128, 0.25) inset; }
.why-icon-gold     { color: #fbbf24;        box-shadow: 0 0 30px rgba(251, 191, 36, 0.25) inset; }
.why-icon-danger   { color: #fb7185;        box-shadow: 0 0 30px rgba(251, 113, 133, 0.25) inset; }

/* Subtle continuous "breath" on the icon glow */
.why-feature-card .why-feature-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: currentColor;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: -1;
}
.why-feature-card:hover .why-feature-icon::after { opacity: 0.35; }
.why-feature-card:hover .why-feature-icon svg {
  animation: why-icon-wiggle 0.6s ease;
}

@keyframes why-icon-wiggle {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-8deg) scale(1.05); }
  75%      { transform: rotate(8deg)  scale(1.05); }
}

.why-feature-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.why-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 100%;
}

.why-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  margin-top: auto;
}
.why-badge-primary { color: var(--primary); background: rgba(45, 212, 191, 0.12); }
.why-badge-accent  { color: var(--accent);  background: rgba(56, 189, 248, 0.12); }
.why-badge-success { color: #4ade80;        background: rgba(74, 222, 128, 0.12); }
.why-badge-gold    { color: #fbbf24;        background: rgba(251, 191, 36, 0.12); }
.why-badge-danger  { color: #fb7185;        background: rgba(251, 113, 133, 0.12); }

/* ── Scroll-reveal entrance animation ─────────────────────────────────────
   `[data-reveal]` starts hidden + offset; `main.js` adds `.reveal-in` when
   the element enters the viewport. Cards stagger by their index via
   `--reveal-delay` (set inline by the observer). */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].reveal-in {
  opacity: 1;
  transform: none;
}

/* Honour reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .why-rating-stars svg,
  .why-feature-card,
  .why-feature-icon svg {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .why-choose-section { padding: 2rem 0; }
  .why-rating-card { padding: 1.1rem 1.25rem; gap: 1rem; flex-direction: column; align-items: center; text-align: center; }
  .why-rating-score-wrap { gap: 0.6rem; }
  .why-rating-stars svg { width: 22px; height: 22px; }
  .why-feature-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .why-feature-card { padding: 1.3rem 1rem; }
  .why-feature-card h3 { font-size: 1rem; }
  .why-feature-card p { font-size: 0.86rem; }
  .why-feature-icon { width: 54px; height: 54px; border-radius: 14px; }
  .why-feature-icon svg { width: 24px; height: 24px; }
  .why-feature-badge { font-size: 0.65rem; padding: 0.35rem 0.7rem; }
}

/* Trust badge below the "Pick your plan" headline — accepted payment gateways. */
.secure-payment-badge {
  display: block;
  margin: 1.25rem auto 0;
  max-width: min(100%, 560px);
  height: auto;
  opacity: 0.95;
}

/* --- Testimonials scroll --- */
.testimonial-scroll-wrap {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  margin-top: 1.5rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-testimonials 22s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-testimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 270px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Device card with img --- */
.device-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
}

.device-card-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* --- Feature section img --- */
.sport-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Sport channels swipe strip --- */
.sport-ch-strip {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1.5rem 0 0.5rem;
  cursor: grab;
  user-select: none;
}
.sport-ch-strip::-webkit-scrollbar { display: none; }
.sport-ch-strip.dragging { cursor: grabbing; }

.sport-ch-card {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  scroll-snap-align: start;
  transition: background 0.2s, border-color 0.2s;
}
.sport-ch-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(45, 212, 191, 0.3);
}
.sport-ch-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.feature-img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 280px;
  object-fit: cover;
}

/* --- Contact icon buttons --- */
.contact-icon-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-icon-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-icon-btn strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.contact-icon-btn p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-icon-btn-wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
}

.contact-icon-btn-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.4);
}

.contact-icon-circle {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
}

.contact-icon-circle-wa {
  background: rgba(255, 255, 255, 0.92);
}

.contact-icon-circle-wa img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}

/* Email contact button — same shape/feel as the WhatsApp one but in the
   template's primary teal. Inline SVG keeps it crisp without a new asset. */
.contact-icon-btn-email {
  background: rgba(45, 212, 191, 0.10);
  border-color: rgba(45, 212, 191, 0.25);
  margin-top: 0.75rem;
}
.contact-icon-btn-email:hover {
  background: rgba(45, 212, 191, 0.18);
  border-color: rgba(45, 212, 191, 0.4);
}
.contact-icon-circle-email {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.95), rgba(56, 189, 248, 0.95));
  color: #06101a;
}
.contact-icon-circle-email svg {
  width: 1.45rem;
  height: 1.45rem;
}

/* --- Devices section --- */
.device-hero-wrap {
  margin: 1.5rem 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-main-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

.device-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.device-card {
  display: grid;
  place-items: center;
  gap: 0.6rem;
  aspect-ratio: 1;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.device-card:hover {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.15);
}

.device-emoji {
  font-size: 2.2rem;
}

/* --- Contact page --- */
.contact-page-section {
  padding: 4rem 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-page-desc {
  color: var(--muted);
  margin: 0.5rem 0 2rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0;
}

.contact-info-items {
  display: grid;
  gap: 0.6rem;
}

.contact-info-item {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* --- Device pages --- */
.device-page-hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(ellipse at top, rgba(45, 212, 191, 0.1), transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.device-page-hero-inner {
  max-width: 720px;
}

.device-page-icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
  object-fit: contain;
  display: block;
}

.device-page-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}

.device-page-hero-inner p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.device-page-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.device-page-content {
  padding: 4rem 0;
}

.device-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.device-page-grid h2 {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
}

.device-page-grid h2:not(:first-child) {
  margin-top: 2.5rem;
}

.setup-steps {
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.setup-steps li strong {
  color: var(--text);
}

.device-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.device-features li {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 0.5rem;
  font-size: 0.97rem;
}

.device-features li::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 700;
}

.device-page-sidebar {
  display: grid;
  gap: 1.5rem;
}

.device-other-links {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.device-other-links p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.device-other-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
  text-decoration: none;
}

.device-other-links a img {
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
  flex-shrink: 0;
}

.device-other-links a:hover {
  background: rgba(45, 212, 191, 0.1);
  color: var(--primary);
}

/* --- Apps download page --- */
.apps-grid {
  display: grid;
  gap: 1.5rem;
}

.app-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.app-card:hover {
  border-color: rgba(45, 212, 191, 0.3);
}

.app-card-inner {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: flex-start;
}

.app-icon-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.app-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.app-icon-emoji {
  font-size: 2.2rem;
}

.app-info {
  flex: 1;
}

.app-info h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.app-platforms {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.app-desc {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #06101a;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s;
}

.app-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.25);
}

.app-guide {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.app-guide strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.app-guide ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Shared features block — hidden on desktop, shown on mobile via media query */
.plan-shared-features { display: none; }

/* --- Contact side (in contact.html) --- */
.contact-side {
  display: grid;
  gap: 1.5rem;
}

/* =========================================================
   RESPONSIVE — Tablet & Mobile
   Mobile-first refinements for < 960px, < 720px, < 480px
   ========================================================= */

/* ---------- Tablet (≤ 960px) ---------- */
@media (max-width: 960px) {
  /* minmax(0, 1fr) prevents columns from expanding past container when a child has max-content (e.g. marquee chip rows) */
  .hero-grid,
  .feature-grid,
  .faq-grid,
  .contact-grid,
  .device-page-grid,
  .contact-page-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-section.reverse .feature-grid { direction: ltr; }

  /* On mobile, heading goes above the image for non-reverse sections (e.g. Sports) */
  .feature-section:not(.reverse) .feature-image { order: 2; }
  .feature-section:not(.reverse) .feature-copy  { order: 1; }

  /* Contain any wide-content (marquee chips) so it can't push the section off-axis */
  .feature-section { overflow-x: clip; }

  .device-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    text-align: center;
  }
}

/* ---------- Mobile-drawer header (≤ 960px) ---------- */
@media (max-width: 960px) {
  /* Disable backdrop-filter on mobile:
     1) it creates a containing block that traps fixed-positioned children (drawer)
     2) it's expensive to render on phones — perf win */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(5, 11, 20, 0.94);
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: .6rem;
    padding: .75rem 0;
    justify-content: flex-start;
  }

  /* Push "My account" + hamburger to the right, next to each other */
  .header-inner > .button-link { margin-left: auto; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 1.25rem;
    transition: background .2s, border-color .2s;
  }
  .nav-toggle:hover { background: rgba(45,212,191,.12); border-color: rgba(45,212,191,.25); }
  .nav-toggle:active { transform: scale(.96); }

  /* When drawer is open, lift header above the drawer so the close button (✕) stays clickable */
  body.nav-open .site-header { z-index: 35; }
  body.nav-open .nav-toggle  {
    background: rgba(45,212,191,.12);
    border-color: rgba(45,212,191,.30);
    color: var(--primary);
  }

  /* Slide-in drawer from the right */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 340px);
    margin: 0;
    padding: 5.5rem 1.75rem 2rem;
    background: linear-gradient(180deg, #0a1322 0%, #050b14 100%);
    border-left: 1px solid rgba(255,255,255,.08);
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .25rem;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    z-index: 30;
    border-radius: 0;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav a {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    font-weight: 600;
    padding: .9rem 1rem;
    border-radius: 12px;
    transition: background .2s, color .2s, transform .2s;
    border: 1px solid transparent;
  }
  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(45,212,191,.10);
    color: var(--primary);
    border-color: rgba(45,212,191,.20);
  }

  /* Backdrop */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2,7,15,.62);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 25;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }

  /* "My Account" button */
  .header-inner > .button-link {
    padding: .55rem 1rem;
    font-size: .88rem;
  }
}

/* ---------- Phone (≤ 720px) ---------- */
@media (max-width: 720px) {
  /* Container side padding */
  .container {
    width: min(1160px, calc(100% - 1.6rem));
  }

  /* Body & global */
  body { line-height: 1.55; }

  /* Header */
  .brand { gap: .55rem; font-size: .98rem; }
  .logo-placeholder, .brand-logo { width: 38px; height: 38px; border-radius: 10px; }

  /* Hero — flatten and lighten */
  .hero {
    min-height: auto;
    padding: 3rem 1rem 2.5rem;
    background-attachment: scroll;            /* fixed kills perf on iOS */
  }
  .hero-content {
    padding: 1.75rem 1.25rem;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,.28);
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    line-height: 1.1;
    text-shadow: 0 4px 14px rgba(0,0,0,.5);
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0 1.25rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    margin-top: 1.3rem;
  }
  .hero-ctas .btn,
  .hero-ctas .button-link {
    width: 260px;
    max-width: 100%;
    text-align: center;
    padding: .8rem 1.4rem;
    font-size: .92rem;
  }

  .eyebrow,
  .hero-copy .eyebrow {
    font-size: .78rem;
    padding: .45rem .8rem;
  }

  /* Section heads */
  .hero-copy h1,
  .feature-copy h2,
  .section-head h2,
  .blog-hero h1,
  .post-copy h2 {
    font-size: clamp(1.7rem, 6vw, 2.1rem);
    line-height: 1.15;
  }
  .section-head { gap: .5rem; margin-bottom: 1.25rem; }

  /* Section paddings */
  .feature-section,
  .testimonials-section,
  .faq-section,
  .devices-section,
  .blog-preview,
  .contact-section,
  .channels-section,
  .subscription-section { padding: 2.25rem 0; }

  /* Plan cards — horizontal strips on mobile */
  .plan-grid,
  .plan-grid-4 {
    grid-template-columns: 1fr;
    gap: .65rem;
    padding-top: .5rem;
  }

  /* Reorder: 12 months becomes 3rd choice on mobile */
  .plan-basic    { order: 1; }
  .plan-plus     { order: 2; }
  .plan-business { order: 3; }   /* 12 months — popular */
  .plan-ultra    { order: 4; }   /* 6 months — last */

  /* Colored left border to separate cards visually */
  .plan-basic    { border-left: 3px solid #38bdf8; }
  .plan-plus     { border-left: 3px solid #2dd4bf; }
  .plan-business { border-left: 3px solid #ff4d97; }
  .plan-ultra    { border-left: 3px solid #a855f7; }

  .plan-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "banner  banner"
      "name    btn"
      "price   btn"
      "sub     btn";
    gap: .15rem .65rem;
    padding: .6rem .9rem;
    border-radius: 12px;
    align-items: start;
    overflow: visible;
  }

  .plan-popular-banner { grid-area: banner; border-radius: 8px; font-size: .72rem; padding: .3rem .65rem; transform: none; position: static; margin-bottom: .15rem; }
  .plan-card-top   { grid-area: name; display: flex !important; flex-direction: row !important; justify-content: flex-start !important; align-items: center; gap: .45rem; flex-wrap: nowrap; width: 100%; min-width: 0; }
  .plan-name       { font-size: .88rem; white-space: nowrap; flex-shrink: 0; }
  .plan-price-old  { font-size: .78rem; white-space: nowrap; text-decoration: line-through; color: rgba(255,255,255,0.55); flex-shrink: 0; }
  .plan-badge      { background: transparent; color: #ff4d97; font-size: .73rem; font-weight: 800; padding: 0; letter-spacing: .02em; white-space: nowrap; flex-shrink: 0; }
  .plan-old-row    { display: none; }
  .plan-price-block { grid-area: price; }
  .plan-subtitle   { grid-area: sub;   font-size: .72rem; margin: 0; line-height: 1.3; color: var(--muted); }
  .plan-features   { display: none; }
  .plan-card .btn  { grid-area: btn;   width: auto; margin: 0; padding: .55rem .85rem; font-size: .78rem; white-space: nowrap; align-self: center; }
  .plan-status     { display: none; }

  .plan-price-block strong { font-size: 1.35rem; }
  .plan-price-block span   { font-size: .78rem; }

  /* Shared features block — visible only on mobile */
  .plan-shared-features {
    display: block;
    margin-top: 1rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
  }
  .plan-shared-title {
    margin: 0 0 .75rem;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--primary);
  }
  .plan-shared-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .45rem .75rem;
  }
  .plan-shared-grid p {
    margin: 0;
    font-size: .8rem;
    color: rgba(255,255,255,.75);
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    line-height: 1.4;
  }
  .plan-shared-grid p::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; }

  .plan-promo-row { flex-wrap: nowrap; gap: .5rem; }
  .plan-promo { font-size: .75rem; padding: .45rem .65rem; white-space: nowrap; }

  /* Comparison table */
  .plan-comparison { margin-top: 2rem; border-radius: 16px; }
  .comparison-table { font-size: .85rem; }
  .comparison-table th,
  .comparison-table td { padding: .65rem .8rem; }

  /* Feature grid */
  .feature-grid { gap: 1.25rem; }
  .image-placeholder, .placeholder-box { min-height: 220px; padding: 1.25rem; border-radius: 22px; }
  .feature-img, .hero-image { min-height: auto; border-radius: 22px; }

  /* Posters & strips — force symmetric centering with explicit widths */
  /* Mobile posters: 2 cards visible per row of the horizontal marquee.
     `width: calc(50vw - 1.5rem)` makes each card occupy ~half the viewport
     so exactly two sit side-by-side in the visible area; the marquee keeps
     scrolling as before. */
  .poster-strip {
    gap: 0.75rem;
    /* Force the animation to run on mobile no matter what. iOS Safari's
       "sticky hover" after a tap was the main culprit for posters appearing
       to need a tap to start moving — animation-play-state: paused would
       latch and never reset. !important guarantees no rule resets it. */
    animation-play-state: running !important;
    /* Pure horizontal CSS transform — vertical scroll always wins on touch. */
    touch-action: pan-y;
  }
  .poster-strip-panel { padding: 1rem 0.75rem; }
  .poster-card {
    min-width: 0;
    width: calc(50vw - 1.5rem);
    max-width: calc(50vw - 1.5rem);
    gap: 0.55rem;
  }
  .poster-card img { height: 240px; border-radius: 16px; }
  .poster-card h3 { font-size: 0.85rem; }
  /* Same hardening for the channel logo strip — same iOS Safari quirk. */
  .channel-logos.scrolling {
    animation-play-state: running !important;
    touch-action: pan-y;
  }
  .feature-image {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .poster-strip-panel {
    padding: .85rem;
    border-radius: 22px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .poster-icons-panel {
    border-radius: 18px;
    padding: .85rem 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  /* Smooth fade at left/right edges of the marquee chips */
  .cat-chip-wrap {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 1.25rem, #000 calc(100% - 1.25rem), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 1.25rem, #000 calc(100% - 1.25rem), transparent 100%);
  }

  /* Channel logo cards — slim down on mobile so the marquee feels compact.
     Previously the base `min-width: 120px` survived (the override here only
     hit `.logo-card` aliases on some breakpoints) and made each card too
     wide for the narrow viewport. Force them small. */
  .channel-logo-card,
  .logo-card {
    min-height: 64px;
    min-width: 88px;
    border-radius: 14px;
    padding: .55rem .6rem;
  }
  .channel-logo-card img { max-height: 44px; }
  .channel-logos { gap: .6rem; }

  /* Inset the "Premium Channels" hero card on mobile so it reads as a
     self-contained card, not a full-bleed banner stretching edge-to-edge.
     16px (1rem) on each side gives breathing room without wasting space. */
  .premium-channels-hero {
    margin: 0 1rem;
    border-radius: 18px;
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
  }
  /* The channel-logos scroll lives below the hero card; keep it inset by the
     same amount so the visual rhythm stays consistent. */
  .channel-scroll {
    padding: .25rem 1rem 0;
    margin: 0;
  }

  /* Sport channel strip */
  .sport-ch-strip {
    padding: 1rem 0 .25rem;
    gap: .65rem;
    margin-left: -.8rem;
    margin-right: -.8rem;
    padding-left: .8rem;
    padding-right: .8rem;
  }
  .sport-ch-card {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    padding: .55rem;
  }

  /* Channels hero overlay — eyebrow top, title+desc bottom */
  .channels-hero-text {
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    padding: 1rem 1.25rem 6.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
  }
  .channels-hero-text h3 { margin-top: auto; margin-bottom: .5rem; }
  .channels-hero-text p  { margin: 0; }
  .channels-hero-text h3 {
    font-size: 1rem;
    line-height: 1.25;
  }
  .channels-hero-text p { font-size: .8rem; line-height: 1.5; }

  /* Cat chip row a touch smaller */
  .cat-chip { font-size: .75rem; padding: .35rem .75rem; }

  /* Premium channels hero */
  .premium-channels-hero { border-radius: 18px; }
  .channel-cta-ghost {
    position: static;
    margin: .85rem 1rem 1rem;
    width: calc(100% - 2rem);
    justify-content: center;
    padding: .7rem 1rem .7rem .55rem;
    font-size: .82rem;
  }
  .channel-cta-ghost .whatsapp-icon { width: 2rem; height: 2rem; }
  .channel-cta-ghost .whatsapp-icon img { width: 1.05rem; height: 1.05rem; }

  /* Devices grid: lock to exactly 3 cards per row on mobile.
     The base `.device-card` rule sets `min-width: 120px` which on phones
     <360px was forcing the grid to wrap to 2 per row — override here so
     each card can shrink to its grid track's fair share. */
  .device-logos { grid-template-columns: repeat(3, 1fr); gap: .55rem; }
  .device-card {
    min-width: 0;
    padding: .55rem .35rem;
    font-size: 11px;
    border-radius: 14px;
    letter-spacing: .03em;
  }
  .device-emoji { font-size: 1.5rem; }
  .device-icon-wrap,
  .device-card-img { width: 52px; height: 52px; }

  /* Testimonial cards */
  .testimonial-card { width: 240px; border-radius: 18px; }

  /* FAQ */
  .faq-list details { padding: .85rem 1rem; border-radius: 14px; margin-bottom: .65rem; }
  .faq-list summary { font-size: .95rem; }

  /* Contact / forms */
  .contact-card,
  .contact-icon-btn { padding: 1rem 1.1rem; border-radius: 16px; }
  .contact-icon-circle { width: 2.6rem; height: 2.6rem; font-size: 1.2rem; }
  .form-group input,
  .form-group textarea {
    padding: .85rem 1rem;
    font-size: 16px;                          /* prevent iOS zoom on focus */
    border-radius: 12px;
  }

  /* Blog */
  .blog-hero { padding: 2.5rem 0 1.25rem; }
  .blog-grid,
  .blog-list { gap: 1rem; }
  .blog-card,
  .post-card { padding: 1.25rem; border-radius: 20px; }

  /* Devices pages */
  .device-page-hero { padding: 3rem 0 2rem; }
  .device-page-content { padding: 2.5rem 0; }
  .device-page-grid { gap: 2rem; }
  .device-page-icon { width: 4rem; height: 4rem; }
  .device-page-hero-inner h1 { font-size: 1.85rem; }
  .device-page-hero-inner p { font-size: 1rem; }
  .device-page-ctas { flex-direction: column; align-items: stretch; gap: .65rem; }
  .device-page-ctas .btn,
  .device-page-ctas .button-link { width: 100%; text-align: center; }

  /* Contact page */
  .contact-page-section { padding: 2.5rem 0; }
  .contact-page-grid { gap: 2rem; }

  /* Apps page */
  .app-card { border-radius: 20px; }
  .app-card-inner { padding: 1.1rem; gap: 1rem; }
  .app-icon-wrap, .app-icon { width: 56px; height: 56px; border-radius: 14px; }
  .app-info h3 { font-size: 1.05rem; }
  .app-platforms { font-size: .72rem; }
  .app-desc { font-size: .88rem; }
  .app-guide { padding: .85rem 1.1rem 1.1rem; }
  .app-guide ol { font-size: .85rem; }

  /* Footer */
  .footer-grid {
    padding: 2rem 0 .75rem;
    gap: 1.5rem;
  }
  .footer-links { justify-items: center; gap: .65rem; }

  /* Buttons — bigger touch target */
  .btn,
  .button-link {
    padding: .9rem 1.4rem;
    font-size: .95rem;
  }
  /* Disable hover-lift on touch (transform looks broken when tapped) */
  .btn:hover,
  .button-link:hover,
  .plan-card:hover,
  .device-card:hover,
  .contact-icon-btn:hover {
    transform: none;
  }

  /* Floating WhatsApp — collapse to bubble */
  .whatsapp-float { right: .9rem; bottom: .9rem; }
  .whatsapp-float a {
    padding: .55rem .55rem;
    border-radius: 999px;
    gap: 0;
    box-shadow: 0 14px 30px rgba(37,211,102,.28);
  }
  .whatsapp-float a > span:not(.whatsapp-icon) { display: none; }
  .whatsapp-icon { width: 2.2rem; height: 2.2rem; }
  .whatsapp-icon img { width: 1.2rem; height: 1.2rem; }
}

/* ---------- Small phone (≤ 480px) ---------- */
@media (max-width: 480px) {
  .container { width: min(1160px, calc(100% - 1.25rem)); }

  /* Brand stays visible — compact sizing */
  .brand { font-size: .9rem; gap: .45rem; }
  .brand-logo, .logo-placeholder { width: 34px; height: 34px; border-radius: 9px; }

  /* Compact "My account" pill */
  .header-inner > .button-link {
    padding: .45rem .75rem;
    font-size: .78rem;
  }
  .nav-toggle { width: 40px; height: 40px; font-size: 1.15rem; }

  /* Hero still smaller */
  .hero { padding: 2.25rem .8rem 2rem; }
  .hero-content {
    padding: 1.4rem 1rem;
    border-radius: 18px;
  }
  .hero h1 { font-size: clamp(1.65rem, 8.5vw, 2.05rem); }
  .hero-subtitle { font-size: .95rem; margin: .85rem 0 1rem; }

  /* Section heads */
  .hero-copy h1,
  .feature-copy h2,
  .section-head h2,
  .blog-hero h1,
  .post-copy h2 {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
  }

  /* Plan card */
  .plan-card { padding: 1.2rem 1rem; border-radius: 18px; }
  .plan-price-block strong { font-size: 2.1rem; }
  .plan-name { font-size: 1rem; }

  /* Devices on very small screens: keep grid (3 cols), just shrink everything.
     Flex-wrap was the older layout — grid behaves better with the new
     `min-width: 0` override from the 720px breakpoint. */
  .device-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
  .device-card { min-width: 0; padding: .5rem .25rem; font-size: 10px; }
  .device-card-img { width: 44px; height: 44px; }

  /* Sport strip a touch smaller */
  .sport-ch-card { width: 64px; height: 64px; border-radius: 14px; }

  /* Cat chip row even smaller */
  .cat-chip { font-size: .72rem; padding: .3rem .7rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .poster-strip,
  .channel-logos.scrolling,
  .testimonial-track,
  .cat-chip-row { animation: none !important; }
}
