/* ============================================
   SWISH IPTV — MAIN STYLESHEET
   ============================================ */

/* Latest News widget */
.latest-news { padding: 2.5rem 1rem; }
.latest-news .container { max-width: 960px; margin: 0 auto; }
.latest-news .news-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; }
.latest-news .news-header h2 { font-size: 1.5rem; margin: 0; }
.latest-news .news-rss { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; background: #ee802f; color: #fff; text-decoration: none; transition: transform .15s ease, opacity .15s ease; }
.latest-news .news-rss:hover { transform: scale(1.08); opacity: .9; }
.latest-news .news-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.02); padding: .5rem; }
.latest-news .news-item { margin: 0; }
.latest-news .news-item a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem .75rem; border-radius: 6px; color: inherit; text-decoration: none; transition: background .15s ease; }
.latest-news .news-item a:hover { background: rgba(255,255,255,.06); }
.latest-news .news-title { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .95rem; }
.latest-news .news-date { flex: 0 0 auto; font-size: .8rem; opacity: .65; font-variant-numeric: tabular-nums; }
.latest-news .news-loading, .latest-news .news-empty { padding: .75rem; opacity: .65; font-size: .9rem; text-align: center; list-style: none; }
@media (max-width: 540px) {
  .latest-news .news-title { white-space: normal; }
}


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

:root {
  --primary: #f0a500;
  --primary-dark: #c8880a;
  --primary-glow: rgba(240, 165, 0, 0.3);
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #16161f;
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --text-muted: #9ca3af;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: 'Inter', sans-serif;
  background:
    linear-gradient(rgba(10,10,15,0.91), rgba(10,10,15,0.91)),
    url('/images/SWISHBANNER.png') center/cover fixed no-repeat;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary {
  background: var(--primary);
  color: #000;
  font-weight: 700;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--primary-glow); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(240,165,0,0.4);
}
.btn-outline:hover { background: var(--primary); color: #000; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #f0a500, #ff6b00);
  color: #000;
  font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,0.5); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============ PROMO BANNER ============ */
.promo-banner {
  background: linear-gradient(90deg, #f0a500, #ff6b00);
  color: #000;
  text-align: center;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.close-banner {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  font-weight: 700;
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; display: block; flex-shrink: 0; }
.footer-brand .logo-img { height: 130px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a {
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active {
  color: #fff;
  background: rgba(240,165,0,0.10);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Currency switcher — navbar pill */
.currency-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.cur-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 4px 9px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.cur-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
.cur-btn.active { background: var(--primary); color: #fff; }

/* Section-level currency switcher (pricing header) */
.pricing-currency {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.pricing-currency .currency-switcher {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.pricing-currency .cur-btn { font-size: 12px; padding: 5px 14px; }

/* Rate note */
.currency-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background: #111118;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.07); }

/* ============ HERO ============ */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
}
.hero-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(240,165,0,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.highlight { color: var(--primary); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

/* Trust badges below hero CTAs */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 40px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust span i {
  color: var(--primary);
  font-size: 12px;
}
@media (max-width: 900px) {
  .hero-trust { justify-content: center; }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 26px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* TV MOCKUP */
.hero-devices { display: flex; justify-content: center; align-items: center; }
.device-mockup {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 16px;
  border: 2px solid rgba(240,165,0,0.3);
  box-shadow: 0 0 60px rgba(240,165,0,0.1), 0 40px 80px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.device-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}
.tv-screen {
  width: 88%;
  height: 82%;
  background: url('/images/movie-avengers-doomsday.jpg') top center/cover no-repeat;
  border-radius: 8px;
  border: 1px solid rgba(240,165,0,0.2);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.tv-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}
.tv-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px;
  color: var(--primary);
}
.tv-content i { font-size: 22px; animation: pulse 2s infinite; }
.tv-content span { font-size: 13px; font-weight: 700; color: #fff; }
.tv-content small { font-size: 10px; color: rgba(255,255,255,0.55); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* ============ SERVICES MARQUEE ============ */
.services-marquee-wrap {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 44px;
}
.services-marquee-label {
  padding: 0 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(240,165,0,0.05);
  flex-shrink: 0;
}
.services-marquee {
  flex: 1;
  overflow: hidden;
}
.services-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}
.services-track span {
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}
.services-track span:hover { color: #fff; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ ALL-IN-ONE VISUAL SECTION ============ */
.all-in-one {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.all-in-one-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.all-in-one-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.all-in-one-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.all-in-one-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,165,0,0.08), transparent);
  pointer-events: none;
}
.all-in-one-text .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.all-in-one-text h2 { font-size: 38px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.all-in-one-text p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.all-in-one-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.all-in-one-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.all-in-one-list li i {
  width: 22px;
  height: 22px;
  background: rgba(240,165,0,0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .all-in-one-inner { grid-template-columns: 1fr; gap: 36px; }
  .all-in-one-text h2 { font-size: 28px; }
}

/* ============ SPORTS CARD VISUAL ============ */
.cat-card-livetv, .cat-card-movies, .cat-card-sports,
.cat-card-series, .cat-card-ppv, .cat-card-catchup {
  position: relative;
  overflow: hidden;
}
.cat-card-livetv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/news-tv.jpg') center/cover no-repeat;
  opacity: 0.12;
  transition: opacity 0.3s;
}
.cat-card-movies::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/movie-avengers-doomsday.jpg') top center/cover no-repeat;
  opacity: 0.18;
  transition: opacity 0.3s;
}
.cat-card-sports::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/sports-stadium.jpg') center/cover no-repeat;
  opacity: 0.12;
  transition: opacity 0.3s;
}
.cat-card-series::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/tv-the-boys-s5.jpg') top center/cover no-repeat;
  opacity: 0.18;
  transition: opacity 0.3s;
}
.cat-card-ppv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/sports-action.jpg') center/cover no-repeat;
  opacity: 0.12;
  transition: opacity 0.3s;
}
.cat-card-catchup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/streaming-laptop.jpg') center/cover no-repeat;
  opacity: 0.12;
  transition: opacity 0.3s;
}
.cat-card-livetv:hover::before, .cat-card-movies:hover::before, .cat-card-sports:hover::before,
.cat-card-series:hover::before, .cat-card-ppv:hover::before, .cat-card-catchup:hover::before { opacity: 0.22; }
.cat-card-livetv > *, .cat-card-movies > *, .cat-card-sports > *,
.cat-card-series > *, .cat-card-ppv > *, .cat-card-catchup > * { position: relative; z-index: 1; }

/* ============ FEATURES STRIP ============ */
.features-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.strip-item i {
  font-size: 28px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.strip-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.strip-item p { font-size: 13px; color: var(--text-muted); }

/* ============ CATEGORIES ============ */
.categories { padding: 100px 24px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(240,165,0,0.1);
}
.cat-icon {
  width: 64px;
  height: 64px;
  background: rgba(240,165,0,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--primary);
}
.cat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.cat-card p { font-size: 14px; color: var(--text-muted); }

/* ============ PRICING ============ */
.pricing {
  padding: 100px 0;
  background: linear-gradient(rgba(13,13,13,0.96), rgba(13,13,13,0.96)), url('/images/4k-tv-room.jpg') center/cover no-repeat fixed;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 24px;
}
.pricing-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(240,165,0,0.05), var(--bg-card2));
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.plan-header { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan-header h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.plan-price { font-size: 42px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.currency { font-size: 0.55em; vertical-align: super; line-height: 1; }
.period { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.plan-header p { font-size: 13px; color: var(--text-muted); }
.plan-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.plan-features li i { color: var(--primary); font-size: 12px; flex-shrink: 0; }

/* TRIAL BOX */
.trial-box {
  margin: 48px 24px 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88), rgba(10,10,10,0.88)), url('/images/couch-remote.jpg') center/cover no-repeat;
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.trial-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trial-content > i { font-size: 48px; color: var(--primary); flex-shrink: 0; }
.trial-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.trial-content p { font-size: 15px; color: var(--text-muted); }
.trial-content .btn { margin-left: auto; flex-shrink: 0; }

/* ============ ADD-ONS & BUNDLES ============ */
.addons-header { margin: 48px 24px 28px; }
.addons-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.addons-divider::before,
.addons-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 24px;
  margin-bottom: 32px;
}

.addon-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}
.addon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.addon-card-featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(240,165,0,0.05), var(--bg-card2));
}
.addon-card-stick {
  border-color: rgba(56,189,248,0.35);
  background: linear-gradient(135deg, rgba(56,189,248,0.04), var(--bg-card2));
}

.addon-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(240,165,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-icon i { color: var(--primary); font-size: 20px; }
.addon-icon-stick { background: rgba(56,189,248,0.1); }
.addon-icon-stick i { color: #38bdf8; }

.addon-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.addon-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin: 0; }

.addon-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px;
}
.addon-price .currency { font-size: 20px; margin-top: 6px; }
.addon-price em { font-size: 14px; font-style: normal; color: var(--text-muted); font-weight: 500; margin-left: 4px; }
.addon-price-gold { color: #f0a500; }

.addon-card > p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.addon-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.addon-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #ccc; }
.addon-features li i { color: var(--primary); font-size: 11px; flex-shrink: 0; }

.addon-badge-primary { background: var(--primary); color: #000; }
.addon-gift-icon { color: var(--primary); font-size: 11px; flex-shrink: 0; }
.addon-was { color: #555; font-size: 11px; }
.addon-was .currency { font-size: inherit; vertical-align: baseline; margin-top: 0; }
.addon-price-note { font-size: 12px; display: block; margin-top: 4px; color: #888; font-style: normal; font-weight: 400; }
.addon-details-link { display: block; text-align: center; font-size: 12px; color: #555; margin-top: 10px; text-decoration: none; }
.addon-details-link:hover { color: var(--text-muted); }
.text-primary { color: var(--primary); }

.addons-grid-single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

@media (max-width: 900px) {
  .addons-grid { grid-template-columns: 1fr; }
  .addons-grid-single { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .addons-grid { padding: 0 12px; gap: 12px; }
  .addon-card { padding: 20px 16px; }
  .addon-price { font-size: 30px; }
}

/* ============ DEVICES ============ */
/* ── Compact device compatibility strip (inside pricing section) ── */
.compat-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 32px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  flex-wrap: wrap;
}
.compat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.compat-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  flex: 1;
}
.compat-icons span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.compat-icons i { color: var(--primary); font-size: 13px; }
.compat-setup-link {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.8;
}
.compat-setup-link:hover { opacity: 1; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 100px 24px;
  background: linear-gradient(rgba(10,10,15,0.93), rgba(10,10,15,0.93)), url('/images/family-tv.jpg') center/cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(240,165,0,0.3); transform: translateY(-4px); }
.stars { color: var(--primary); margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }
.testimonial-card > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

/* ============ FAQ ============ */
.faq { padding: 100px 24px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ============ CONTACT ============ */
.contact { padding: 100px 24px; }

/* Centered live-chat-only contact section */
.contact-solo {
  display: flex;
  justify-content: center;
}
.contact-solo-inner {
  text-align: center;
  max-width: 560px;
}
.contact-solo-icon {
  width: 80px;
  height: 80px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  margin: 0 auto 24px;
}
.contact-solo-inner h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.contact-solo-inner > p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.contact-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.cf-item i { font-size: 20px; color: var(--primary); }

/* CONTACT FORM */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group select option { background: #111118; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  font-size: 14px;
  color: #22c55e;
}

/* ============ FOOTER ============ */
.footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 80px 24px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-links a:hover { color: var(--primary); border-color: var(--primary); }
.footer-links h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-newsletter h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.footer-newsletter > p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: var(--primary);
  border: none;
  padding: 0 16px;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--primary-dark); }
.newsletter-success {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  color: #22c55e;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 14px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--primary); }

/* ============ EMBY VOD SECTION ============ */
.emby-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.97) 0%, rgba(13,13,26,0.95) 50%, rgba(10,10,15,0.97) 100%), url('/images/cinema-vod.jpg') center/cover no-repeat fixed;
}
.emby-section .section-header { margin-bottom: 60px; }
.emby-announce-badge {
  display: inline-block;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.35);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* 4-column feature highlights */
.emby-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.emby-feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.emby-feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  margin: 0 auto 16px;
}
.emby-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.emby-feat p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Two pricing cards */
.emby-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.emby-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.emby-plan-featured {
  border-color: rgba(240,165,0,0.4);
  background: linear-gradient(160deg, #111118, #141210);
  box-shadow: 0 0 40px rgba(240,165,0,0.07);
}
.emby-plan-label {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  width: fit-content;
}
.emby-plan-label-gold {
  background: rgba(240,165,0,0.12);
  color: var(--primary);
}
.emby-plan-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.emby-plan-price {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 14px;
}
.emby-plan-price .currency { vertical-align: super; color: inherit; }
.emby-plan-price em { display: block; font-size: 13px; font-style: normal; font-weight: 500; color: var(--text-muted); margin-top: 4px; }
.emby-price-gold { color: var(--primary); }
.emby-plan-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.emby-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.emby-plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.emby-plan-features li i { color: var(--primary); font-size: 11px; flex-shrink: 0; }
.emby-plan-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* Highlighted feature row (Emby VOD in Silver/Gold) */
.plan-features .feature-highlight {
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(240,165,0,0.15);
}
.plan-features .feature-highlight i { color: var(--primary); }

/* Emby VOD pricing card in main grid */
.emby-pricing-card {
  border-color: rgba(240,165,0,0.25);
  background: linear-gradient(135deg, #111118, #141210);
}
.emby-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.btn-emby {
  background: var(--primary);
  color: #000;
  border: none;
  font-weight: 700;
}
.btn-emby:hover { background: var(--primary-dark); color: #000; }

/* ============ PRICING — LAUNCH DEAL ============ */
.starter-deal-box {
  background: linear-gradient(135deg, rgba(240,165,0,0.08), rgba(240,165,0,0.03));
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 40px;
}
.starter-deal-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.starter-deal-label {
  background: var(--primary);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.starter-deal-left { flex: 1; min-width: 200px; }
.starter-deal-left h3 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.starter-deal-left p { font-size: 13px; color: var(--text-muted); }
.starter-deal-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
}
.starter-deal-price .period { font-size: 15px; font-weight: 500; color: var(--text-muted); }

.launch-badge {
  display: inline-block;
  background: rgba(240,165,0,0.1);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.btc-badge {
  background: rgba(247,147,26,0.15) !important;
  color: #f7931a !important;
  border: 1px solid rgba(247,147,26,0.3);
}
.btc-deal-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(247,147,26,0.08);
  border: 1px solid rgba(247,147,26,0.3);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  color: #e5e7eb;
  margin: 16px auto 0;
  max-width: 600px;
  line-height: 1.5;
}
.btc-deal-banner .btc-icon {
  font-size: 22px;
  color: #f7931a;
  flex-shrink: 0;
}
.plan-was {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.plan-was s { color: var(--text-muted); }
.plan-was .currency { font-size: inherit; vertical-align: baseline; }
.plan-save {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 4px;
}

/* ============ HIRING SECTION ============ */
.hiring-section {
  padding: 100px 0;
  background: linear-gradient(rgba(8,8,8,0.94), rgba(8,8,8,0.94)), url('/images/multiscreen.jpg') center/cover no-repeat fixed;
  border-top: 1px solid var(--border);
}
.hiring-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.hiring-badge {
  display: inline-block;
  background: rgba(99,179,237,0.1);
  border: 1px solid rgba(99,179,237,0.3);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hiring-left h2 { font-size: 36px; font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.hiring-left > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
.hiring-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hiring-perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.hiring-perks li i { color: #22c55e; font-size: 14px; flex-shrink: 0; }
.hiring-right { display: flex; flex-direction: column; gap: 20px; }
.hiring-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.hiring-card:hover { border-color: rgba(96,165,250,0.35); }
.hiring-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(99,179,237,0.08);
  border: 1px solid rgba(99,179,237,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 18px;
  flex-shrink: 0;
}
.hiring-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.hiring-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--primary-glow);
  transition: all 0.2s;
  z-index: 999;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); background: var(--primary-dark); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .emby-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Narrow-desktop breakpoint — nav stays on one line but drops the
   secondary Get Trial button and tightens the currency switcher so
   8 nav links + Buy Now still fit comfortably. */
@media (max-width: 1100px) {
  .nav-actions .btn-outline { display: none; }
  .cur-btn { padding: 4px 7px; font-size: 10px; }
  .nav-links a { padding: 8px 9px; font-size: 12.5px; }
}

@media (max-width: 900px) {
  .emby-grid { grid-template-columns: 1fr; }
  .emby-text h2 { font-size: 28px; }
  .hiring-inner { grid-template-columns: 1fr; }
  .hiring-left h2 { font-size: 28px; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-devices { display: none; }
  .nav-links { display: none; }
  .nav-actions .btn:not(.hamburger) { display: none; }
  .nav-actions .currency-switcher { display: none; }
  .hamburger { display: block; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trial-content { flex-direction: column; text-align: center; }
  .trial-content .btn { margin-left: 0; }
}

@media (max-width: 640px) {
  /* Layout */
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; padding: 0 12px; }
  .emby-features-grid { grid-template-columns: 1fr; }
  .emby-plans { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 16px; }

  /* Pricing cards — compact on mobile */
  .pricing { padding: 48px 0; }
  .pricing-card { padding: 20px 16px; }
  .pricing-card.popular { transform: none; }
  .plan-header { margin-bottom: 16px; padding-bottom: 16px; }
  .plan-header h3 { font-size: 16px; margin-bottom: 8px; }
  .plan-price { font-size: 30px; }
  .currency { font-size: 0.55em; }
  .period { font-size: 13px; }
  .plan-header p { font-size: 12px; }
  .plan-features { gap: 8px; margin-bottom: 18px; }
  .plan-features li { font-size: 13px; gap: 8px; }
  .popular-badge { font-size: 11px; padding: 3px 14px; top: -12px; }
  .trial-box { margin: 24px 12px 0; padding: 24px 20px; }
  .trial-content h3 { font-size: 18px; }
  .trial-content p { font-size: 13px; }
  .section-header h2 { font-size: 26px; }
}

/* ============ LIVE CHAT WIDGET ============ */
/* When any host page toggles html.swish-playing (active media playback),
   hide the chat widget completely so it doesn't overlap the video. */
html.swish-playing #chat-widget { display: none !important; }

#chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
#chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#chat-toggle:hover { transform: scale(1.1); background: var(--primary-dark); }
@keyframes chat-toggle-shake {
  0%, 100% { transform: rotate(0deg) scale(1.0); }
  10%       { transform: rotate(-18deg) scale(1.1); }
  25%       { transform: rotate(18deg)  scale(1.1); }
  40%       { transform: rotate(-14deg) scale(1.05); }
  55%       { transform: rotate(14deg)  scale(1.05); }
  70%       { transform: rotate(-8deg)  scale(1.02); }
  85%       { transform: rotate(8deg)   scale(1.02); }
}
.chat-toggle-shake { animation: chat-toggle-shake 0.7s ease-in-out; }
.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}
#chat-box {
  width: 340px;
  height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  flex-direction: column;
  overflow: hidden;
}
#chat-header {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; flex: 1; }
.chat-header-actions { display: flex; align-items: center; gap: 4px; }
.chat-header-icon-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 13px;
  transition: color 0.2s, background 0.2s;
}
.chat-header-icon-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
.chat-avatar {
  width: 38px;
  height: 38px;
  background: rgba(240,165,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
}
.chat-header-info strong { display: block; font-size: 14px; }
.chat-status { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #22c55e; }
.status-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.chat-close:hover { color: #fff; }
#chat-name-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  gap: 24px;
}
.chat-welcome { text-align: center; }
.chat-welcome i { font-size: 40px; color: var(--primary); margin-bottom: 12px; }
.chat-welcome h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.chat-welcome p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.chat-name-form { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.chat-name-form input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.chat-name-form input:focus { outline: none; border-color: var(--primary); }
.chat-name-form input::placeholder { color: var(--text-muted); }
.chat-name-form button {
  background: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 12px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.chat-name-form button:hover { background: var(--primary-dark); }
/* Proactive teaser */
.chat-proactive-teaser {
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #e5e7eb;
  line-height: 1.5;
  margin-bottom: 4px;
  text-align: center;
}

/* Return visitor skip-email button */
.chat-skip-btn {
  background: transparent !important;
  color: var(--text-muted) !important;
  border: 1px solid var(--border) !important;
  font-size: 12px !important;
  padding: 8px 14px !important;
}
.chat-skip-btn:hover { color: #fff !important; border-color: rgba(255,255,255,0.3) !important; }

/* Queue banner */
.chat-queue-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.10);
  border-bottom: 1px solid rgba(240,165,0,0.25);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}
.chat-warning-box {
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 4px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.chat-warning-box i { margin-top: 1px; flex-shrink: 0; }
#chat-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#chat-messages::-webkit-scrollbar { width: 4px; }
#chat-messages::-webkit-scrollbar-track { background: transparent; }
#chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.chat-msg { display: flex; flex-direction: column; max-width: 85%; }
.chat-msg span {
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}
.chat-msg.visitor { align-self: flex-end; }
.chat-msg.visitor span { background: var(--primary); color: #000; border-bottom-right-radius: 4px; }
.chat-msg.agent { align-self: flex-start; }
.chat-msg.agent span { background: var(--bg-card2); color: #fff; border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.chat-msg.agent .chat-img {
  max-width: 220px;
  border-radius: 10px;
  display: block;
  margin-top: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.chat-msg.agent .chat-img:hover { opacity: 0.88; }
#chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
}
#chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}
#chat-input:focus { outline: none; border-color: var(--primary); }
#chat-input::placeholder { color: var(--text-muted); }
#chat-input-area button {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
#chat-input-area button:hover { background: var(--primary-dark); }

/* Upload button */
.chat-upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.chat-upload-btn:hover { color: var(--primary); background: rgba(240,165,0,0.08); }

/* Character counter */
.chat-char-count {
  font-size: 10px;
  color: var(--text-muted);
  flex-shrink: 0;
  align-self: center;
  min-width: 22px;
  text-align: right;
}

/* Typing indicator */
.chat-typing-msg { align-items: center; }
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: chat-bounce 1.2s infinite ease-in-out;
  padding: 0 !important;
  border: none !important;
  background-color: var(--text-muted) !important;
}
.chat-typing span:nth-child(1) { animation-delay: 0s; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chat-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.chat-seen-indicator {
  text-align: center;
  font-size: 11px;
  color: var(--primary);
  padding: 4px 0;
  opacity: 0.8;
  animation: fadeIn .3s ease;
}

/* Message timestamps */
.chat-msg { flex-direction: column; }
.chat-msg-time {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.2s;
  margin-top: 3px;
  line-height: 1;
}
.chat-msg.visitor .chat-msg-time { align-self: flex-end; }
.chat-msg.agent .chat-msg-time { align-self: flex-start; }
.chat-msg:hover .chat-msg-time { opacity: 1; }

/* Quick-start chips */
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 10px;
}
.chat-chips button {
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 20px;
  padding: 6px 12px;
  color: var(--primary);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.chat-chips button:hover { background: rgba(240,165,0,0.18); border-color: var(--primary); }

/* Bot message label */
.chat-msg.bot-msg > span::before {
  content: '⚡ SwishBot';
  display: block;
  font-size: 10px;
  color: #f0a500;
  font-weight: 700;
  margin-bottom: 4px;
  opacity: 0.8;
}

/* Satisfaction rating widget */
.chat-rating {
  align-self: center;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
}
.chat-rating p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.chat-rating-btns { display: flex; justify-content: center; gap: 16px; }
.chat-rating-btns button {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.chat-rating-btns button:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

/* ============ FAQ SECTION ============ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 16px; font-weight: 600; text-align: left; gap: 12px;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 22px 18px;
}

/* ============ TRUST STRIP ============ */
.trust-strip { padding: 32px 0; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; padding: 8px 20px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.trust-item i { color: var(--primary); font-size: 16px; }
.trust-divider { width: 1px; height: 28px; background: var(--border); }
@media (max-width: 768px) { .trust-divider { display: none; } .trust-item { width: 50%; justify-content: center; } }

/* ============ URGENCY TAG ============ */
.urgency-tag {
  font-size: 12px; color: #ef4444; font-weight: 600;
  display: flex; align-items: center; gap: 5px; margin-bottom: 8px;
  animation: pulse-urgency 2s infinite;
}
@keyframes pulse-urgency { 0%,100%{opacity:1} 50%{opacity:0.6} }

/* ============ EXIT INTENT POPUP ============ */
.exit-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.exit-popup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.exit-popup-box {
  position: relative; z-index: 1; background: var(--card-bg);
  border: 1px solid rgba(240,165,0,0.3); border-radius: 20px;
  padding: 48px 40px; text-align: center; max-width: 440px; width: 90%;
  box-shadow: 0 0 60px rgba(240,165,0,0.15);
  animation: popIn .4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from{transform:scale(0.8);opacity:0} to{transform:scale(1);opacity:1} }
.exit-popup-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: var(--text-muted); font-size: 18px; cursor: pointer; padding: 4px;
}
.exit-popup-emoji { font-size: 48px; margin-bottom: 16px; }
.exit-popup-box h3 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.exit-popup-box p { color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.exit-popup-sub { font-size: 12px; color: var(--text-muted); margin-top: 12px; margin-bottom: 0; }

/* ============================================
   BTC CHECKOUT MODAL
   ============================================ */

/* Overlay */
#btc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#btc-modal-overlay.open { display: flex; }

/* Modal box */
.btc-modal {
  background: #111118;
  border: 1px solid rgba(247, 147, 26, 0.25);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: 0 0 60px rgba(247, 147, 26, 0.12);
  animation: btcModalIn 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes btcModalIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.btc-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.btc-modal-close:hover { color: #fff; }

/* Header */
.btc-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.btc-modal-icon {
  font-size: 28px;
  line-height: 1;
}
.btc-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.btc-modal-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 2px 0 0;
}

/* Steps */
.btc-step { display: none; }
.btc-step.active { display: block; }

/* Step labels */
.btc-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f7931a;
  margin-bottom: 16px;
}

/* Email step */
.btc-email-field {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a0f;
  transition: border-color 0.2s;
  margin-bottom: 8px;
}
.btc-email-field:focus-within { border-color: #f7931a; }
.btc-email-field input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  padding: 14px 16px;
  font-family: inherit;
}
.btc-email-field input::placeholder { color: #4b5563; }
.btc-field-error {
  font-size: 12px;
  color: #ef4444;
  margin-bottom: 12px;
  min-height: 16px;
}

/* Plan summary row */
.btc-plan-summary {
  background: rgba(247, 147, 26, 0.07);
  border: 1px solid rgba(247, 147, 26, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.btc-plan-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.btc-plan-price {
  font-size: 18px;
  font-weight: 900;
  color: #f0a500;
  white-space: nowrap;
}

/* BTC address box */
.btc-address-box {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.btc-address-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b7280;
  margin-bottom: 8px;
}
.btc-address-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btc-address-val {
  flex: 1;
  font-size: 13px;
  color: #e5e7eb;
  word-break: break-all;
  font-family: 'Courier New', monospace;
  line-height: 1.4;
}
.btc-copy-btn {
  background: rgba(247, 147, 26, 0.12);
  border: 1px solid rgba(247, 147, 26, 0.3);
  border-radius: 6px;
  color: #f7931a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: inherit;
  flex-shrink: 0;
}
.btc-copy-btn:hover { background: rgba(247, 147, 26, 0.22); }
.btc-copy-btn.copied { color: #22c55e; border-color: rgba(34, 197, 94, 0.4); background: rgba(34, 197, 94, 0.08); }

/* QR code */
.btc-qr-wrap {
  text-align: center;
  margin: 16px 0;
}
.btc-qr-wrap img {
  border-radius: 8px;
  border: 3px solid #fff;
  background: #fff;
  width: 160px;
  height: 160px;
}
.btc-qr-hint {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

/* Amount row */
.btc-amount-box {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

/* Timer */
.btc-timer {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 16px;
}
.btc-timer span {
  color: #f7931a;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.btc-timer.expired span { color: #ef4444; }

/* Status */
.btc-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #9ca3af;
  transition: all 0.3s;
}
.btc-status.confirming {
  border-color: rgba(247, 147, 26, 0.3);
  background: rgba(247, 147, 26, 0.06);
  color: #f7931a;
}
.btc-status.confirmed {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.07);
  color: #22c55e;
}
.btc-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6b7280;
  flex-shrink: 0;
  animation: btcPulse 1.8s ease-in-out infinite;
}
.btc-status.confirming .btc-status-dot { background: #f7931a; }
.btc-status.confirmed .btc-status-dot  { background: #22c55e; animation: none; }
@keyframes btcPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Manual fallback notice */
.btc-manual-notice {
  background: rgba(247, 147, 26, 0.06);
  border: 1px solid rgba(247, 147, 26, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 16px;
}
.btc-manual-notice strong { color: #f7931a; }

/* Primary CTA button */
.btc-btn-primary {
  display: block;
  width: 100%;
  background: #f7931a;
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.btc-btn-primary:hover { background: #e8841a; }
.btc-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

/* Confirmation step */
.btc-confirm-icon {
  font-size: 56px;
  text-align: center;
  margin-bottom: 16px;
}
.btc-confirm-title {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}
.btc-confirm-text {
  font-size: 14px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 24px;
}
.btc-confirm-email {
  color: #f0a500;
  font-weight: 600;
}

/* Divider */
.btc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 20px 0;
}

/* Mobile full-screen */
@media (max-width: 520px) {
  #btc-modal-overlay { padding: 0; align-items: flex-end; }
  .btc-modal {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 95vh;
    padding: 28px 20px 32px;
  }
}
/* END BTC CHECKOUT */

/* ===== Hero animations (agent A) ===== */

/* Animated soft gradient bg — GPU-only (transform/opacity).
   We layer two pseudo blobs that drift slowly. The .hero-bg base gradients
   stay static so we never animate background-position. */
.hero-bg { overflow: hidden; }
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-bg::before {
  top: -10%; left: -10%;
  background: radial-gradient(circle, rgba(240,165,0,0.35) 0%, rgba(240,165,0,0) 60%);
  animation: heroBlobA 18s ease-in-out infinite alternate;
}
.hero-bg::after {
  bottom: -15%; right: -10%;
  background: radial-gradient(circle, rgba(99,102,241,0.30) 0%, rgba(99,102,241,0) 60%);
  animation: heroBlobB 22s ease-in-out infinite alternate;
}
@keyframes heroBlobA {
  0%   { transform: translate3d(0,0,0) scale(1);    opacity: 0.50; }
  100% { transform: translate3d(8%,6%,0) scale(1.15); opacity: 0.70; }
}
@keyframes heroBlobB {
  0%   { transform: translate3d(0,0,0) scale(1);    opacity: 0.40; }
  100% { transform: translate3d(-6%,-4%,0) scale(1.10); opacity: 0.65; }
}

/* Hero entrance — staggered fade + lift. Uses transform/opacity only,
   so no CLS. Hidden state only applies after JS marks <html>.anim-ready;
   without JS the noscript fallback shows everything. */
.anim-ready .hero-content > .hero-badge,
.anim-ready .hero-content > h1,
.anim-ready .hero-content > .hero-sub,
.anim-ready .hero-content > .hero-buttons,
.anim-ready .hero-content > .hero-trust,
.anim-ready .hero-content > .hero-stats,
.anim-ready .hero-devices {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: heroIn 0.7s cubic-bezier(.22,.61,.36,1) forwards;
  will-change: transform, opacity;
}
.anim-ready .hero-content > .hero-badge   { animation-delay: 0.05s; }
.anim-ready .hero-content > h1            { animation-delay: 0.15s; }
.anim-ready .hero-content > .hero-sub     { animation-delay: 0.30s; }
.anim-ready .hero-content > .hero-buttons { animation-delay: 0.45s; }
.anim-ready .hero-content > .hero-trust   { animation-delay: 0.60s; }
.anim-ready .hero-content > .hero-stats   { animation-delay: 0.75s; }
.anim-ready .hero-devices                 { animation-delay: 0.40s; animation-duration: 0.9s; }
@keyframes heroIn {
  to { opacity: 1; transform: translate3d(0,0,0); }
}

/* Highlight gets a soft sheen (transform-only, infinite but slow) */
.hero-content h1 .highlight {
  background-image: linear-gradient(110deg, var(--primary) 0%, #ffce5c 45%, var(--primary) 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroSheen 6s ease-in-out infinite;
}
@keyframes heroSheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Stat numbers — subtle pop on viewport entry via the count-up JS adding text */
.stat-num { transition: transform 0.3s ease; }

/* Features-strip — magnetic-pull hover with gradient border pulse */
.strip-item {
  position: relative;
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.015);
  border: 1px solid transparent;
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.strip-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(240,165,0,0.0), rgba(240,165,0,0.45), rgba(99,102,241,0.35), rgba(240,165,0,0.0));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.strip-item:hover {
  transform: translate3d(0,-4px,0);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 12px 30px -18px rgba(240,165,0,0.45);
}
.strip-item:hover::before {
  opacity: 1;
  animation: stripPulse 3s ease-in-out infinite;
}
.strip-item:hover i { transform: scale(1.08); }
.strip-item i { transition: transform 0.35s cubic-bezier(.22,.61,.36,1); }
@keyframes stripPulse {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Scroll-reveal helper — used on .all-in-one and other above-fold blocks */
.reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1),
              transform 0.7s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
.reveal.reveal-delay-1 { transition-delay: 0.08s; }
.reveal.reveal-delay-2 { transition-delay: 0.16s; }

/* Scroll-driven navbar blur intensification (set via IntersectionObserver) */
.navbar { transition: backdrop-filter 0.3s ease, background 0.3s ease, border-color 0.3s ease; }
.navbar.nav-condensed {
  background: rgba(10,10,15,0.78);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Reduced-motion: kill every animation/transition introduced here */
@media (prefers-reduced-motion: reduce) {
  .hero-bg::before,
  .hero-bg::after { animation: none !important; }
  .anim-ready .hero-content > *,
  .anim-ready .hero-devices {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
  }
  .hero-content h1 .highlight {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--primary);
    animation: none;
  }
  .strip-item, .strip-item:hover, .strip-item i, .strip-item:hover i {
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .navbar { transition: none; }
  /* Marquee — static when reduced-motion requested */
  .services-track { animation: none !important; transform: none !important; }
}

/* Marquee — pause on hover for accessibility / readability */
.services-marquee:hover .services-track { animation-play-state: paused; }
/* ===== /Hero animations (agent A) ===== */

/* ===== Mid-page animations (agent B) ===== */

/* Off-screen rendering optimization — stable layout via contain-intrinsic-size */
.cv-auto {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* Stagger delay driven by inline --reveal-delay var on each .reveal child */
.reveal { transition-delay: var(--reveal-delay, 0ms); }

/* Channels — 3D-lift hover (overrides existing translateY(-6px) with rotateX) */
.cat-card {
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1),
              box-shadow 0.45s cubic-bezier(.22,.61,.36,1),
              border-color 0.3s ease;
  will-change: transform;
}
@media (hover: hover) {
  .cat-card:hover {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow: 0 24px 48px rgba(240,165,0,0.18), 0 6px 14px rgba(0,0,0,0.35);
  }
}

/* VOD parallax-lite layer — translate via JS, transform-only animation */
.has-parallax { position: relative; overflow: hidden; isolation: isolate; }
.has-parallax > .container { position: relative; z-index: 1; }
.parallax-layer {
  position: absolute;
  inset: -10% 0 -10% 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 360px at 20% 0%, rgba(240,165,0,0.08), transparent 60%),
    radial-gradient(700px 280px at 85% 100%, rgba(120,80,255,0.07), transparent 60%);
  will-change: transform;
}

/* VOD poster strip — shimmer placeholder for loading posters */
.vod-poster-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 0 24px 32px;
  max-width: 1100px;
  margin-inline: auto;
}
.vod-poster {
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}
.vod-poster.shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 45%,
    rgba(240,165,0,0.10) 50%,
    rgba(255,255,255,0.06) 55%,
    rgba(255,255,255,0) 100%
  );
  background-size: 200% 100%;
  animation: vodShimmer 2.4s linear infinite;
  will-change: background-position;
}
@keyframes vodShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (max-width: 720px) {
  .vod-poster-strip { grid-template-columns: repeat(4, 1fr); }
  .vod-poster:nth-child(n+5) { display: none; }
}

/* Pricing — 3D tilt baseline (transform applied via JS from --data-tilt) */
.pricing-card[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1),
              box-shadow 0.45s cubic-bezier(.22,.61,.36,1),
              border-color 0.3s ease;
  will-change: transform;
}
.pricing-card[data-tilt] > * { transform: translateZ(0); }

/* Popular-card pulse glow ring — uses :has() for clarity */
.pricing-card:has(.popular-badge) {
  position: relative;
}
.pricing-card:has(.popular-badge)::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(240,165,0,0.55);
  animation: popularPulse 2.6s ease-out infinite;
  z-index: 0;
}
.pricing-card:has(.popular-badge) > * { position: relative; z-index: 1; }
@keyframes popularPulse {
  0%   { box-shadow: 0 0 0 0 rgba(240,165,0,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(240,165,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,165,0,0); }
}

/* View-transition progressive enhancement — keyed by inline style */
@supports (view-transition-name: a) {
  .pricing-card[style*="view-transition-name"] { contain: layout paint; }
}

/* Reduced-motion: kill every mid-page animation/transition introduced here */
@media (prefers-reduced-motion: reduce) {
  .cat-card,
  .cat-card:hover,
  .pricing-card[data-tilt],
  .parallax-layer {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }
  .vod-poster.shimmer::before { animation: none !important; background: none !important; }
  .pricing-card:has(.popular-badge)::after { animation: none !important; box-shadow: none !important; }
  .reveal { transition-delay: 0ms !important; }
}
/* ===== /Mid-page animations (agent B) ===== */

/* ===== Below-fold animations + global polish (agent C) ===== */

/* Body typography polish (apply if not already set elsewhere) */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scroll-progress bar — sits flush under sticky navbar. */
.scroll-progress {
  position: sticky;
  top: 72px;          /* matches .nav-container height */
  left: 0;
  height: 2px;
  z-index: 999;
  pointer-events: none;
  background: transparent;
  overflow: hidden;
}
.scroll-progress > span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--primary, #f0a500), #ff6a00);
  will-change: transform;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress > span {
    animation: sp-fill linear both;
    animation-timeline: scroll(root block);
  }
  @keyframes sp-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* Reveal-on-scroll (used by .reveal-up sections + footer)
   With a self-revealing animation fallback: if IntersectionObserver never
   fires (slow network, JS error, dev-proxy quirks, content-visibility issue),
   sections still appear at 2.5s instead of staying invisible. */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
  animation: reveal-up-fallback 0.6s ease 2.5s forwards;
}
@keyframes reveal-up-fallback {
  to { opacity: 1; transform: none; }
}
.reveal-up.is-visible {
  opacity: 1;
  transform: none;
  animation: none;        /* IO got there first — let the transition handle it */
}

/* Long sections — paint savings via content-visibility */
.faq-section,
.testimonials,
.hiring-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}

/* ============ FAQ — grid-template-rows expand trick + view transitions ============ */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none;          /* override legacy max-height transition */
  padding: 0 22px;
  transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              padding 0.4s ease;
}
.faq-a > .faq-a-inner {
  min-height: 0;
  overflow: hidden;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  padding: 0 22px 18px;
}
.faq-item {
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.faq-item:hover { border-color: rgba(240,165,0,0.35); }
.faq-item.open  { border-color: rgba(240,165,0,0.55); }
@supports (view-transition-name: a) {
  .faq-item { contain: layout paint; }
}

/* ============ TRUST STRIP — counter ticker marquee ============ */
.trust-ticker {
  margin-top: 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-ticker-track {
  display: inline-flex;
  gap: 14px;
  padding: 6px 0;
  white-space: nowrap;
  animation: tt-scroll 38s linear infinite;
  will-change: transform;
}
.trust-ticker:hover .trust-ticker-track { animation-play-state: paused; }
.tt-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border, rgba(255,255,255,0.08));
  font-size: 13px; color: var(--text-muted, #9ca3af);
}
.tt-pill i { color: var(--primary, #f0a500); font-size: 13px; }
.tt-pill strong { color: #fff; font-weight: 800; }
@keyframes tt-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* ============ TESTIMONIALS — infinite marquee, pause on hover ============ */
.testimonial-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tm-scroll 60s linear infinite;
  will-change: transform;
}
.testimonial-track > .testimonial-card { flex: 0 0 340px; }
.testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }
@keyframes tm-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* Reduced-motion fallback: render testimonials as a static grid (4 originals only) */
@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee { -webkit-mask-image: none; mask-image: none; overflow: visible; }
  .testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: auto;
    animation: none;
  }
  .testimonial-track > .testimonial-card[aria-hidden="true"] { display: none; }
  .testimonial-track > .testimonial-card { flex: initial; }
  .trust-ticker-track { animation: none; transform: none; white-space: normal; flex-wrap: wrap; justify-content: center; }
}

/* ============ Reseller CTA — gradient sweep on hover ============ */
.reseller-cta { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.reseller-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.7s ease;
  pointer-events: none;
  border-radius: inherit;
}
.reseller-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(240,165,0,0.55); }
.reseller-cta:hover::before { transform: translateX(110%); }

/* ============ CONTACT / NEWSLETTER — input focus border sweep ============ */
.input-glow { position: relative; }
.input-glow input {
  transition: border-color 0.25s ease, box-shadow 0.35s ease, background 0.25s ease;
}
.input-glow input:focus,
.input-glow input:focus-visible {
  outline: none;
  border-color: var(--primary, #f0a500) !important;
  box-shadow:
    0 0 0 2px rgba(240,165,0,0.22),
    0 0 22px -2px rgba(240,165,0,0.45);
}
.contact-features .cf-item,
.hiring-perks li {
  transition: transform 0.25s ease, color 0.25s ease;
}
.contact-features .cf-item:hover,
.hiring-perks li:hover { transform: translateX(4px); color: #fff; }

/* ===== /Below-fold animations (agent C) ===== */

/* ===== GLOBAL prefers-reduced-motion safety net (canonical, last in file) ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
