/* MoziStream — Design DNA cloned from iptv-uk.london */
/* Clean white corporate with blue #046bd2 primary + orange #ff6900 CTA */
:root {
  --bg-white: #ffffff;
  --bg-light: #f0f5fa;
  --bg-section: #fbfbfb;
  --bg-dark: #111827;
  --bg-card: #ffffff;
  --primary: #046bd2;
  --primary-dark: #045cb4;
  --cta: #ff6900;
  --cta-dark: #e55f00;
  --text-dark: #111111;
  --text-body: #475569;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --border-light: #eee;
  --success: #25d366;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --font: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: .3s ease;
  --container: 1200px;
  --container-narrow: 800px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: transparent; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); line-height: 1.25; font-weight: 800; }

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--primary); color: #fff; padding: 12px 24px;
  border-radius: var(--radius); font-weight: 700; z-index: 9999;
}
.skip-link:focus { top: 16px; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: var(--container-narrow); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius-pill); font-weight: 700;
  font-size: 1rem; transition: all var(--transition); border: 2px solid transparent;
  cursor: pointer; text-align: center; gap: 8px; line-height: 1.4;
  text-decoration: none; min-height: 48px;
}
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(4,107,210,.35); }
.btn--cta { background: var(--cta); color: #fff; border-color: var(--cta); }
.btn--cta:hover { background: var(--cta-dark); border-color: var(--cta-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,105,0,.35); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--primary); border-color: #fff; }
.btn--white:hover { background: var(--bg-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 18px 42px; font-size: 1.1rem; }
.btn--sm { padding: 10px 24px; font-size: .9rem; }
.btn--full { width: 100%; }

/* Navbar */
.navbar {
  background: var(--bg-white); position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border); transition: box-shadow var(--transition);
}
.navbar .container {
  display: flex; justify-content: space-between; align-items: center; min-height: 72px;
}
.navbar.scrolled { box-shadow: var(--shadow); background: rgba(255,255,255,.98); backdrop-filter: blur(10px); }
.navbar-brand { font-size: 1.75rem; font-weight: 900; color: var(--text-dark); letter-spacing: -.5px; text-decoration: none; }
.navbar-brand span { color: var(--primary); }
.nav-links {
  display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
  background: var(--bg-white); padding: 20px; border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow); gap: 0;
}
.nav-links.active { display: flex; }
.nav-links a {
  color: var(--text-body); font-weight: 600; font-size: .95rem; padding: 12px 0;
  border-bottom: 1px solid var(--border); transition: color var(--transition);
}
.nav-links a:last-child { border-bottom: none; }
.nav-links a.active, .nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--cta); color: #fff !important; padding: 10px 24px !important; border-radius: var(--radius-pill); text-align: center; border-bottom: none !important; }
.nav-cta:hover { background: var(--cta-dark); color: #fff !important; }
.mobile-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001;
  width: 44px; height: 44px; justify-content: center; align-items: center;
}
.mobile-toggle span { display: block; width: 26px; height: 3px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }
.mobile-toggle.active span:first-child { transform: rotate(45deg) translate(5px,6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #046bd2 0%, #0693e3 50%, #045cb4 100%);
  color: #fff; padding: 5rem 0 4rem; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; padding: 8px 20px; border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem); color: #fff; margin-bottom: 1rem;
  max-width: 750px; margin-left: auto; margin-right: auto;
}
.hero h1 em { font-style: normal; color: #ff6900; }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 620px;
  margin: 0 auto 2rem; line-height: 1.8;
}
.hero-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .9rem; }
.hero-trust-item .icon { font-size: 1.2rem; }

/* Highlight strip (3 feature cards under hero) */
.highlights {
  background: var(--bg-white); padding: 3rem 0; border-bottom: 1px solid var(--border);
}
.highlights-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.highlight-card {
  text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg-white);
  transition: all var(--transition);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.highlight-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: var(--bg-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.highlight-card p { font-size: .95rem; color: var(--text-muted); }

/* Section */
.section { padding: 4rem 0; }
.section--light { background: var(--bg-light); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p, .section--dark .section-sub { color: var(--text-muted); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; color: var(--primary); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem;
}
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feature-card {
  background: var(--bg-white); padding: 2rem; border-radius: var(--radius);
  border: 1px solid var(--border); transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.feature-icon {
  width: 50px; height: 50px; background: var(--bg-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }
.section--dark .feature-card { background: #1e293b; border-color: rgba(255,255,255,.08); }
.section--dark .feature-card:hover { border-color: var(--primary); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; }
.step-card { padding: 2rem; }
.step-num {
  width: 56px; height: 56px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: .95rem; color: var(--text-muted); max-width: 300px; margin: 0 auto; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-white); border-radius: var(--radius-lg); padding: 2rem;
  border: 2px solid var(--border); text-align: center;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--popular { border-color: var(--primary); box-shadow: 0 0 30px rgba(4,107,210,.2); }
.pricing-card--popular::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--cta));
}
.pricing-badge {
  display: inline-block; background: var(--cta); color: #fff; padding: 6px 16px;
  border-radius: var(--radius-pill); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.75rem; font-weight: 900; color: var(--text-dark); line-height: 1; margin-bottom: 4px; }
.pricing-card .price sup { font-size: 1.25rem; vertical-align: super; }
.pricing-card .period { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.pricing-card .old-price { text-decoration: line-through; color: var(--text-muted); font-size: .9rem; }
.pricing-features { text-align: left; margin-bottom: 1.5rem; }
.pricing-features li {
  padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--success); font-weight: 700; flex-shrink: 0; }
.section--dark .pricing-card { background: #1e293b; border-color: rgba(255,255,255,.08); }
.section--dark .pricing-card--popular { border-color: var(--primary); }
.section--dark .pricing-card h3, .section--dark .pricing-card .price { color: #fff; }
.section--dark .pricing-features li { border-color: rgba(255,255,255,.08); color: var(--text-muted); }

/* Devices */
.devices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.device-card {
  background: var(--bg-light); border-radius: var(--radius); padding: 1.5rem;
  text-align: center; border: 1px solid var(--border); transition: all var(--transition);
}
.device-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.device-icon { font-size: 2rem; margin-bottom: .5rem; }
.device-card span { font-weight: 700; font-size: .9rem; color: var(--text-dark); }

/* Why us cards */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.why-card {
  background: var(--bg-white); padding: 2rem; border-radius: var(--radius);
  border: 1px solid var(--border); transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }

/* Stats */
.stats-bar { background: var(--bg-white); padding: 3rem 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }

/* Sports */
.sports-slider { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.sport-card {
  min-width: 200px; border-radius: var(--radius); overflow: hidden;
  flex-shrink: 0; scroll-snap-align: start; position: relative;
}
.sport-card img { width: 100%; height: 150px; object-fit: cover; }
.sport-card .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8)); color: #fff;
  padding: 1rem; font-weight: 700; font-size: .9rem;
}

/* FAQ */
.faq-list { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; transition: border-color var(--transition); }
.faq-item.active { border-color: var(--primary); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px; font-size: 1rem; font-weight: 700;
  color: var(--text-dark); display: flex; justify-content: space-between; align-items: center;
  gap: 16px; background: var(--bg-white); transition: background var(--transition);
  cursor: pointer; font-family: inherit;
}
.faq-question:hover { background: var(--bg-light); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary); transition: all var(--transition); flex-shrink: 0;
}
.faq-item.active .faq-toggle { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-body); line-height: 1.7; font-size: .95rem; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta p { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Channels grid */
.channels-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.channel-card {
  background: var(--bg-white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border); text-align: center; transition: all var(--transition);
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.channel-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.channel-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.channel-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; }
.channel-list { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.channel-tag { background: var(--bg-light); color: var(--text-body); padding: 4px 12px; border-radius: var(--radius-pill); font-size: .8rem; font-weight: 600; }

/* Page header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 4rem 0 3rem; text-align: center; position: relative; overflow: hidden;
}
.page-header h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 1rem; font-size: .85rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.5); }
.breadcrumb .current { color: #fff; }

/* Form styles */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 700; font-size: .9rem; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border);
  border-radius: 8px; font-size: 1rem; color: var(--text-dark);
  background: var(--bg-white); transition: border-color var(--transition); min-height: 48px;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(4,107,210,.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-message { padding: 14px 20px; border-radius: 8px; font-weight: 600; font-size: .95rem; margin-top: 1rem; text-align: center; }
.form-message--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message--error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.form-page-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.form-info h2 { margin-bottom: 1rem; }
.form-info p { margin-bottom: 1rem; line-height: 1.8; }
.form-info-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.form-info-item { display: flex; align-items: flex-start; gap: 14px; }
.form-info-icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(4,107,210,.1); border-radius: 8px; font-size: 1.2rem; }
.form-panel { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }

/* Trust signals */
.trust-badges { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.trust-badge {
  display: flex; align-items: center; gap: 6px; background: var(--bg-light);
  padding: 8px 16px; border-radius: var(--radius-pill); font-size: .8rem;
  font-weight: 600; color: var(--text-body);
}

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; line-height: 1.8; }

/* Setup guide */
.setup-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.setup-card { background: var(--bg-white); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); }
.setup-card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; margin-bottom: 1rem; }
.setup-steps { counter-reset: step; }
.setup-steps li {
  counter-increment: step; padding: 10px 0 10px 36px; position: relative;
  border-bottom: 1px solid var(--border-light); font-size: .95rem; line-height: 1.6;
}
.setup-steps li:last-child { border-bottom: none; }
.setup-steps li::before {
  content: counter(step); position: absolute; left: 0; width: 24px; height: 24px;
  background: var(--primary); color: #fff; border-radius: 50%; font-size: .75rem;
  font-weight: 700; display: flex; align-items: center; justify-content: center; top: 12px;
}

/* Reseller tiers */
.tiers-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.tier-card {
  background: var(--bg-white); border-radius: var(--radius); padding: 2rem;
  border: 2px solid var(--border); text-align: center; transition: all var(--transition);
}
.tier-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.tier-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.tier-card .discount { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: .5rem; }
.tier-card p { font-size: .9rem; color: var(--text-muted); }

/* Legal */
.legal-content { padding: 4rem 0; }
.legal-content h2 {
  font-size: 1.35rem; margin-top: 2rem; margin-bottom: 1rem;
  padding-bottom: 8px; border-bottom: 2px solid var(--primary); display: inline-block;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1rem; margin-bottom: 8px; }
.legal-content p { margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul, .legal-content ol { margin-bottom: 1rem; padding-left: 24px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; line-height: 1.7; }
.legal-content ol li { list-style: decimal; margin-bottom: 6px; line-height: 1.7; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.legal-content th, .legal-content td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; font-size: .9rem; }
.legal-content th { background: var(--bg-light); font-weight: 700; }

/* Footer */
.footer { background: var(--bg-dark); color: var(--text-muted); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand { font-size: 1.75rem; font-weight: 900; color: #fff; margin-bottom: 1rem; display: inline-block; }
.footer-brand span { color: var(--primary); }
.footer-desc { font-size: .9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-muted); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .9rem; }
.footer-contact-item .icon { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem; text-align: center; font-size: .85rem;
}
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--primary); }

/* Responsive */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .setup-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .form-row { grid-template-columns: 1fr 1fr; }
  .form-page-grid { grid-template-columns: 1fr 1.2fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .hero-btns { flex-direction: row; justify-content: center; }
  .hero { padding: 6rem 0 5rem; }
  .page-header { padding: 5rem 0 3rem; }
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex; flex-direction: row; position: static; background: transparent;
    padding: 0; border: none; box-shadow: none; gap: 1.5rem; align-items: center;
  }
  .nav-links a { padding: 0; border-bottom: none; font-size: .95rem; }
  .mobile-toggle { display: none; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .channels-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .devices-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* Print */
@media print {
  .navbar, .footer, .cta, .hero-btns, .mobile-toggle, .skip-link { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .hero { background: none !important; color: #000 !important; padding: 1rem 0; }
  .hero h1 { color: #000 !important; }
  .section { padding: 1rem 0; }
}
