/* Muxito.com — Shared Stylesheet */
/* Colors derived from eaglecast.tv reference: dark bg + coral accent */
:root {
  --bg-primary: #0B0B0F;
  --bg-secondary: #121218;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --accent: #FF4E5B;
  --accent-hover: #E8434F;
  --accent-glow: rgba(255,78,91,0.25);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.70);
  --text-muted: rgba(255,255,255,0.50);
  --border: rgba(255,255,255,0.08);
  --font: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1200px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
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 24px; }

/* ───── HEADER / NAV ───── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,11,15,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 72px;
}
.logo { font-size: 1.6rem; font-weight: 700; color: var(--text-primary); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.95rem; font-weight: 500;
  transition: color var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 1px;
}
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 10px 22px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-toggle span {
  width: 24px; height: 2px; background: var(--text-primary);
  transition: all var(--transition); border-radius: 2px;
}

/* ───── HERO ───── */
.hero {
  padding: 160px 0 100px; text-align: center;
  background: linear-gradient(180deg, rgba(255,78,91,0.08) 0%, var(--bg-primary) 70%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem;
  color: var(--text-secondary); margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.hero h1 .accent { color: var(--accent); }
.hero p {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 1rem; cursor: pointer; border: none; transition: all var(--transition);
  font-family: var(--font);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); color: #fff; }
.btn-secondary {
  background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-card-hover); color: var(--text-primary); }

/* ───── SECTIONS ───── */
section { padding: 80px 0; }
.section-dark { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 16px;
}
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ───── FEATURES GRID ───── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: all var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-hover); border-color: rgba(255,78,91,0.2);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px; background: rgba(255,78,91,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ───── PRICING ───── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: all var(--transition); position: relative;
}
.pricing-card.popular {
  border-color: var(--accent); background: rgba(255,78,91,0.06);
}
.pricing-card.popular::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 4px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-duration { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 8px; font-weight: 500; }
.pricing-amount { font-size: 2.8rem; font-weight: 700; margin-bottom: 4px; }
.pricing-amount .currency { font-size: 1.2rem; vertical-align: super; }
.pricing-period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0; font-size: 0.95rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '\2713'; color: var(--accent); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ───── CHANNELS ───── */
.channels-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.channel-category {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px; text-align: center;
}
.channel-category h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.channel-category p { font-size: 0.85rem; color: var(--text-muted); }
.channel-logos {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-top: 32px;
}
.channel-logos img { height: 48px; width: auto; opacity: 0.85; transition: opacity var(--transition); }
.channel-logos img:hover { opacity: 1; }

/* ───── FAQ ───── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden; background: var(--bg-card);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--text-primary);
  padding: 20px 24px; font-size: 1rem; font-weight: 600; text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font);
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ───── TESTIMONIALS ───── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent);
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.8rem; }

/* ───── ABOUT / CONTENT ───── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-image { border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; object-fit: cover; }
.about-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; }
.about-list { list-style: none; }
.about-list li {
  padding: 8px 0; display: flex; align-items: center; gap: 10px;
  color: var(--text-secondary); font-size: 0.95rem;
}
.about-list li::before { content: '\2713'; color: var(--accent); font-weight: 700; }

/* ───── FORMS ───── */
.form-grid { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 0.95rem; font-family: var(--font);
  transition: border-color var(--transition);
}
.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-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message { padding: 12px 16px; border-radius: var(--radius-sm); margin-top: 16px; font-size: 0.9rem; }
.form-message--success { background: rgba(34,197,94,0.15); color: #22c55e; }
.form-message--error { background: rgba(239,68,68,0.15); color: #ef4444; }
.honeypot { position: absolute; left: -9999px; }

/* ───── CHECKOUT ───── */
.checkout-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 900px; margin: 0 auto; align-items: start;
}
.order-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: sticky; top: 96px;
}
.order-summary h3 { font-size: 1.2rem; margin-bottom: 20px; }
.order-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-secondary); font-size: 0.95rem; }
.order-total { display: flex; justify-content: space-between; padding: 16px 0 0; font-size: 1.2rem; font-weight: 700; }

/* ───── PAGE HERO (inner pages) ───── */
.page-hero {
  padding: 140px 0 60px; text-align: center;
  background: linear-gradient(180deg, rgba(255,78,91,0.06) 0%, var(--bg-primary) 100%);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 20px;
  font-size: 0.85rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ───── LEGAL / CONTENT PAGES ───── */
.legal-content {
  max-width: 800px; margin: 0 auto; padding: 60px 24px;
}
.legal-content h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.2rem; font-weight: 600; margin: 28px 0 12px; }
.legal-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul, .legal-content ol {
  color: var(--text-secondary); margin: 0 0 20px 24px; line-height: 1.8;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--accent); }

/* ───── SETUP GUIDE ───── */
.setup-content { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
.setup-content h2 { font-size: 1.5rem; font-weight: 700; margin: 48px 0 16px; color: var(--text-primary); }
.setup-content h3 { font-size: 1.2rem; font-weight: 600; margin: 32px 0 12px; }
.setup-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.setup-content img { border-radius: var(--radius-sm); margin: 24px 0; }
.setup-content ul, .setup-content ol {
  color: var(--text-secondary); margin: 0 0 20px 24px; line-height: 1.8;
}
.setup-content li { margin-bottom: 6px; }
.setup-content .toc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 40px;
}
.setup-content .toc h3 { margin: 0 0 12px; font-size: 1.1rem; }
.setup-content .toc ul { margin-bottom: 0; }
.setup-content .toc a { color: var(--text-secondary); }
.setup-content .toc a:hover { color: var(--accent); }

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

/* ───── CTA BANNER ───── */
.cta-banner {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, rgba(255,78,91,0.12) 0%, var(--bg-secondary) 100%);
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 16px; }
.cta-banner p { color: var(--text-secondary); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ───── FOOTER ───── */
.site-footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--text-muted);
}

/* ───── STATS BAR ───── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 700; color: var(--accent); }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* ───── RESPONSIVE ───── */
@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--bg-primary);
    border-bottom: 1px solid var(--border); padding: 24px;
    gap: 16px;
  }
  .mobile-toggle { display: flex; }
  .hero { padding: 130px 0 70px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .hero { padding: 60px 0 40px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
@media (max-width: 640px) {
  .container { padding: 0 16px; }
@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
@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; }
}
