/* FavoTV Global Stylesheet — cloned from iptv-uk.london color scheme */
/* Primary: #1B004E (deep purple)  Accent: #00E5B9 (teal/green)  Text: #ffffff on dark, #454545 on light */

:root {
  --primary: #1B004E;
  --primary-light: #2A0070;
  --accent: #00E5B9;
  --accent-hover: #00c9a2;
  --bg-dark: #0f0029;
  --bg-section: #140035;
  --text-light: #ffffff;
  --text-dark: #454545;
  --text-muted: #b8b8d0;
  --border: rgba(255,255,255,0.1);
  --card-bg: rgba(255,255,255,0.05);
  --success: #22c55e;
  --error: #ef4444;
  --radius: 12px;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ─── HEADER / NAV ─── */
.site-header {
  background: var(--primary);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { font-size: 1.6rem; font-weight: 700; color: #fff; text-decoration: none; }
.logo span { color: var(--accent); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #fff; font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent); color: var(--primary) !important; padding: 10px 24px;
  border-radius: 50px; font-weight: 600; font-size: .9rem;
  transition: background .2s, transform .1s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0; background: var(--primary);
    padding: 20px; gap: 16px; border-bottom: 2px solid var(--accent);
  }
  .nav-links.open { display: flex; }
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 50%, var(--bg-section) 100%);
  padding: 80px 0 60px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(0,229,185,.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(27,0,78,.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 20px; position: relative; line-height: 1.25; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 720px; margin: 0 auto 30px; position: relative; }
.hero .badge {
  display: inline-block; background: rgba(0,229,185,.15); color: var(--accent);
  padding: 6px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  margin-bottom: 20px; position: relative;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: all .25s; border: none; text-align: center;
}
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,229,185,.25); color: var(--primary); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--primary); }
.btn-sm { padding: 10px 24px; font-size: .9rem; }

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-section); }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 16px; }
.section-title span { color: var(--accent); }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 680px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ─── FEATURES GRID ─── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 30px; }
.feature-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: transform .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.feature-card .icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: .95rem; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.price-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 30px; text-align: center;
  transition: transform .3s, border-color .3s; position: relative;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: var(--accent); }
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%); background: var(--accent); color: var(--primary);
  padding: 4px 20px; border-radius: 50px; font-size: .8rem; font-weight: 700;
}
.price-card h3 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.price-card .price { font-size: 2.8rem; font-weight: 700; color: var(--accent); }
.price-card .price small { font-size: 1rem; color: var(--text-muted); }
.price-card .old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 4px; }
.price-card ul { list-style: none; text-align: left; margin: 24px 0; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .93rem; color: var(--text-muted); }
.price-card ul li::before { content: '\2713'; color: var(--accent); margin-right: 10px; font-weight: 700; }

/* ─── STEPS / HOW IT WORKS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 30px; text-align: center; }
.step-item .num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--accent);
  color: var(--primary); font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-item h3 { margin-bottom: 8px; }
.step-item p { color: var(--text-muted); font-size: .95rem; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: #fff;
  font-size: 1.05rem; font-weight: 600; padding: 20px 0;
  text-align: left; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform .3s; }
.faq-item.open .faq-q::after { content: '\2212'; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 0 20px; color: var(--text-muted); line-height: 1.7; }

/* ─── CHANNELS TABLE ─── */
.channels-table { width: 100%; border-collapse: collapse; }
.channels-table th {
  background: var(--primary-light); color: var(--accent);
  padding: 14px 20px; text-align: left; font-weight: 600;
}
.channels-table td { padding: 12px 20px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.channels-table tr:hover td { background: rgba(0,229,185,.04); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .95rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,.06);
  border: 1px solid var(--border); border-radius: 8px; color: #fff;
  font-size: 1rem; font-family: inherit; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.honeypot { position: absolute; left: -9999px; }
.form-message { padding: 12px 16px; border-radius: 8px; margin-top: 16px; font-size: .95rem; }
.form-message--success { background: rgba(34,197,94,.15); color: var(--success); }
.form-message--error { background: rgba(239,68,68,.15); color: var(--error); }

/* ─── CHECKOUT ─── */
.checkout-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.order-summary {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
}
.order-summary h3 { margin-bottom: 20px; }
.order-summary .line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.order-summary .total { font-size: 1.3rem; font-weight: 700; color: var(--accent); border-bottom: none; }
@media (max-width: 768px) { .checkout-wrap { grid-template-columns: 1fr; } 
  .hero { padding: 60px 0 40px; }
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 30px; }
.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
}
.testimonial-card .stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; margin-bottom: 16px; }
.testimonial-card .author { font-weight: 600; color: #fff; }
.testimonial-card .author span { color: var(--text-muted); font-weight: 400; font-size: .85rem; }

/* ─── SPORTS LOGOS ─── */
.sports-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; }
.sports-logos img { width: 100px; height: auto; border-radius: 8px; filter: brightness(1.1); transition: transform .3s; }
.sports-logos img:hover { transform: scale(1.08); }

/* ─── STATS ─── */
.stats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin: 40px 0; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.4rem; font-weight: 700; color: var(--accent); }
.stat-item .label { color: var(--text-muted); font-size: .9rem; margin-top: 4px; }

/* ─── DEVICE COMPAT ─── */
.devices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 20px; text-align: center; }
.device-item { padding: 20px; background: var(--card-bg); border-radius: var(--radius); border: 1px solid var(--border); }
.device-item .icon { font-size: 2rem; margin-bottom: 8px; }
.device-item p { font-size: .85rem; color: var(--text-muted); }

/* ─── FOOTER ─── */
.site-footer { background: var(--primary); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 16px; color: var(--accent); }
.footer-col p, .footer-col a { color: var(--text-muted); font-size: .9rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: .85rem; }

/* ─── LEGAL PAGES ─── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 2rem; margin-bottom: 24px; }
.legal-content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--accent); }
.legal-content p { color: var(--text-muted); margin-bottom: 16px; }
.legal-content ul, .legal-content ol { margin: 12px 0 20px 24px; color: var(--text-muted); }
.legal-content li { margin-bottom: 6px; }

/* ─── SETUP GUIDE ─── */
.guide-content { max-width: 800px; margin: 0 auto; }
.guide-content h2 { font-size: 1.5rem; margin: 36px 0 12px; color: var(--accent); }
.guide-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.guide-content p { color: var(--text-muted); margin-bottom: 14px; }
.guide-content ol, .guide-content ul { margin: 12px 0 20px 24px; color: var(--text-muted); }
.guide-content li { margin-bottom: 8px; }
.guide-content img { border-radius: 8px; margin: 16px 0; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px 40px; text-align: center; margin: 40px 0;
}
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 24px; }

/* ─── ABOUT TEAM / GRID ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-grid img { border-radius: var(--radius); }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ─── RESELLER ─── */
.reseller-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 24px; }
.benefit-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.benefit-card h3 { color: var(--accent); margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: .93rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 60px 0 40px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .stats-row { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 16px; }
}

/* Skip Link */
.skip-link { position: absolute; top: -100%; left: 16px; z-index: 9999; background: var(--accent, #00E5B9); color: var(--primary, #000); padding: 8px 16px; border-radius: 4px; font-weight: 600; font-size: .9rem; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 8px; }

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
@media (max-width: 640px) {
  .container { padding: 0 16px; }
@media (max-width: 360px) {
  .hero h1 { font-size: 1.25rem; }

/* ─── TOUCH & INTERACTION ─── */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, a, button { min-height: 44px; min-width: 44px; }
  .nav-links a { padding: 12px 8px; }
  .faq-question { padding: 16px; }
}

/* ─── REDUCED MOTION ─── */
@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; }
}

/* ─── PRINT ─── */
@media print {
  .site-header, .site-footer, .nav-toggle, .whatsapp-btn, .skip-link, footer, header, nav { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { background: none; padding: 20px 0; }
}
