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

*, *::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; }

body {
  font-family: 'Inter', sans-serif;
  background: 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: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #000;
}
.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: 2px solid var(--primary);
}
.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: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 110px; width: auto; display: block; }
.footer-brand .logo-img { height: 130px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.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: 70px;
  left: 0;
  right: 0;
  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: 48px; }

.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: rgba(0,0,0,0.6);
  border-radius: 8px;
  border: 1px solid rgba(240,165,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}
.tv-content i { font-size: 48px; animation: pulse 2s infinite; }
.tv-content span { font-size: 14px; font-weight: 600; color: #fff; }
.tv-content small { font-size: 11px; color: var(--text-muted); }

@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-sports {
  position: relative;
  overflow: hidden;
}
.cat-card-sports::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/sports.jpg') center/cover no-repeat;
  opacity: 0.12;
  transition: opacity 0.3s;
}
.cat-card-sports:hover::before { opacity: 0.22; }
.cat-card-sports > * { 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: var(--bg-card);
  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: 24px; vertical-align: top; margin-top: 8px; display: inline-block; }
.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(240,165,0,0.1), rgba(99,102,241,0.1));
  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; }

/* ============ DEVICES ============ */
.devices-section { padding: 100px 24px; }
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.device-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.device-card i { font-size: 32px; color: var(--primary); }
.device-card span { font-size: 14px; font-weight: 600; }
.devices-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 100px 24px;
  background: var(--bg-card);
  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/vod-popcorn.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 span { font-size: 26px; 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 span { 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;
}
.plan-was {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.plan-was s { color: var(--text-muted); }
.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: var(--bg-dark);
  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); }
}

@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; }
  .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) {
  .pricing-grid { grid-template-columns: 1fr; }
  .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; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 16px; }
  .section-header h2 { font-size: 26px; }
}

/* ============ LIVE CHAT WIDGET ============ */
#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); }
.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; }
.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); }
#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; 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-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); }
