/* TvEver - Inspired by greatestiptv.com */
/* Teal primary, white bg, Poppins font, clean modern professional */

:root {
  --primary: #0D9488;
  --primary-dark: #0F766E;
  --primary-opacity: rgba(13, 148, 136, 0.15);
  --secondary: #F59E0B;
  --secondary-dark: #D97706;
  --on-primary: #FFFFFF;
  --on-secondary: #1E293B;
  --background: #FFFFFF;
  --surface: #F7FAFC;
  --on-background: #334155;
  --on-surface: #334155;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --error: #E11D48;
  --success: #22C55E;
  --info: #3B82F6;
  --hero-gradient: linear-gradient(135deg, #000000 0%, #0D9488 100%);
  --radius: 15px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --focus-ring: rgba(13, 148, 136, 0.4);
  --font-main: "Poppins", sans-serif;
  --max-width: 1200px;
  --nav-height: 70px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background-color: var(--background); color: var(--on-background); line-height: 1.7; font-size: 16px; padding-top: var(--nav-height); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--surface { background-color: var(--surface); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
h1, h2, h3, h4, h5, h6 { color: var(--on-background); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 14px; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 10px; }
p { margin-bottom: 16px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--background); box-shadow: 0 2px 8px rgba(0,0,0,0.08); height: var(--nav-height); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.nav__logo a { font-size: 1.6rem; font-weight: 800; color: var(--on-background); text-decoration: none; }
.nav__logo span { color: var(--primary); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: 0.92rem; font-weight: 600; color: var(--on-background); text-decoration: none; transition: color 0.2s; }
.nav__links a:hover { color: var(--primary); }
.nav__cta { display: inline-block; padding: 10px 22px; background: var(--secondary); color: var(--on-secondary); border-radius: var(--radius-xs); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; transition: background 0.2s, transform 0.2s; text-decoration: none; }
.nav__cta:hover { background: var(--secondary-dark); transform: translateY(-1px); color: var(--on-secondary); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle svg { width: 28px; height: 28px; fill: var(--on-background); }
@media (max-width: 900px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--background); padding: 20px; box-shadow: var(--shadow); gap: 16px; }
  .nav__links.active { display: flex; }
  .nav__toggle { display: block; }
}

/* BUTTONS */
.btn { display: inline-block; padding: 14px 28px; border-radius: var(--radius-xs); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; text-align: center; text-decoration: none; border: none; cursor: pointer; transition: background 0.3s, transform 0.2s, box-shadow 0.2s; font-family: var(--font-main); }
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(13,148,136,0.3); color: var(--on-primary); }
.btn--secondary { background: var(--secondary); color: var(--on-secondary); }
.btn--secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); color: var(--on-secondary); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--on-primary); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--block { display: block; width: 100%; }

/* HERO */
.hero { background: var(--hero-gradient); color: #f3f4f6; min-height: 75vh; display: flex; align-items: center; border-radius: var(--radius); max-width: 1100px; margin: 30px auto; padding: 50px 60px; position: relative; overflow: hidden; }
.hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%; }
.hero__content { flex: 1; max-width: 550px; }
.hero__content h1 { color: #fff; font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 20px; }
.hero__content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 24px; }
.hero__checks { list-style: none; margin-bottom: 28px; }
.hero__checks li { padding: 6px 0; font-size: 1rem; color: rgba(255,255,255,0.9); }
.hero__checks li::before { content: "\2713"; color: var(--success); font-weight: 700; margin-right: 10px; }
.hero__visual { flex: 0 0 420px; text-align: right; }
.hero__visual img { border-radius: var(--radius); max-width: 100%; }
.hero__trust { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.hero__trust img { height: 28px; width: auto; }
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 40px 24px; margin: 16px; min-height: auto; }
  .hero__inner { flex-direction: column; text-align: center; }
  .hero__visual { flex: none; width: 100%; text-align: center; }
  .hero__trust { justify-content: center; }
  .hero__checks { text-align: left; }
}

/* FEATURES */
.features-bar { padding: 60px 0; }
.features-bar__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card { background: var(--surface); border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow); transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-card__icon { width: 60px; height: 60px; border-radius: 50%; background: var(--primary-opacity); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: var(--primary); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }

/* BENEFITS */
.benefits { padding: 80px 0; }
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.benefit-card { background: var(--background); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 28px; text-align: center; transition: box-shadow 0.2s; }
.benefit-card:hover { box-shadow: var(--shadow-lg); }
.benefit-card__number { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.benefit-card h3 { font-size: 1rem; margin-bottom: 6px; }
.benefit-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0; }

/* DEVICES */
.devices { padding: 80px 0; text-align: center; }
.devices__img { max-width: 800px; margin: 30px auto 0; border-radius: var(--radius); }

/* PRICING */
.pricing { padding: 80px 0; }
.pricing__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.price-card { background: var(--background); border: 2px solid var(--border-color); border-radius: var(--radius); padding: 32px 24px; text-align: center; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card--popular { border-color: var(--primary); }
.price-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--on-primary); font-size: 0.78rem; font-weight: 700; padding: 4px 18px; border-radius: 20px; text-transform: uppercase; }
.price-card__duration { font-size: 1.1rem; font-weight: 700; color: var(--on-background); margin-bottom: 8px; }
.price-card__price { font-size: 2.4rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.price-card__price small { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.price-card__per { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }
.price-card__features { margin-bottom: 24px; text-align: left; }
.price-card__features li { padding: 6px 0; font-size: 0.88rem; color: var(--on-background); border-bottom: 1px solid var(--border-color); }
.price-card__features li:last-child { border-bottom: none; }
.price-card__features li::before { content: "\2713"; color: var(--success); font-weight: 700; margin-right: 8px; }

/* TESTIMONIALS */
.testimonials { padding: 80px 0; background: var(--surface); }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.testimonial-card { background: var(--background); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.testimonial-card__stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card__text { font-size: 0.95rem; color: var(--on-background); font-style: italic; margin-bottom: 16px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-opacity); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.testimonial-card__name { font-weight: 600; font-size: 0.92rem; }
.testimonial-card__date { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ */
.faq { padding: 80px 0; }
.faq__list { max-width: 800px; margin: 40px auto 0; }
.faq__item { border-bottom: 1px solid var(--border-color); }
.faq__question { width: 100%; background: none; border: none; padding: 20px 0; font-family: var(--font-main); font-size: 1.05rem; font-weight: 600; color: var(--on-background); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq__question::after { content: "+"; font-size: 1.4rem; color: var(--primary); transition: transform 0.3s; }
.faq__question.active::after { content: "\2212"; }
.faq__answer { padding: 0 0 20px; font-size: 0.95rem; color: var(--text-muted); display: none; line-height: 1.7; }
.faq__answer.active { display: block; }

/* CTA */
.cta-banner { background: var(--hero-gradient); padding: 60px 40px; border-radius: var(--radius); text-align: center; color: #fff; max-width: 900px; margin: 0 auto; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* FOOTER */
.footer { background: #0F172A; color: #CBD5E1; padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 10px; }
.footer__col a { color: #CBD5E1; font-size: 0.9rem; display: block; padding: 4px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--primary); }
.footer__payment { margin-top: 16px; }
.footer__payment img { height: 32px; width: auto; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.85rem; }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--on-background); margin-bottom: 6px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: var(--radius-sm); font-family: var(--font-main); font-size: 0.95rem; color: var(--on-background); background: var(--background); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--focus-ring); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-honeypot { position: absolute; left: -9999px; }
.form-message { padding: 12px 16px; border-radius: var(--radius-sm); margin-top: 12px; font-size: 0.9rem; }
.form-message--success { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.3); }
.form-message--error { background: rgba(225,29,72,0.1); color: #dc2626; border: 1px solid rgba(225,29,72,0.3); }
.form-trust { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; display: flex; align-items: center; gap: 6px; }

/* CHANNELS */
.channels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 30px; }
.channel-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border-color); transition: box-shadow 0.2s; }
.channel-item:hover { box-shadow: var(--shadow); }
.channel-item img { width: 28px; height: 20px; object-fit: cover; border-radius: 2px; }
.channel-item__name { font-weight: 600; font-size: 0.88rem; }
.channel-item__count { color: var(--text-muted); font-size: 0.8rem; }

/* PAGE HEADER */
.page-header { background: var(--hero-gradient); color: #fff; padding: 50px 0; text-align: center; }
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255,255,255,0.85); }
.breadcrumbs { padding: 12px 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; }

/* CONTENT */
.content-page { padding: 60px 0; }
.content-page h2 { margin-top: 32px; }
.content-page h3 { margin-top: 24px; }
.content-page ul, .content-page ol { margin-left: 20px; margin-bottom: 16px; }
.content-page li { list-style: disc; padding: 4px 0; }
.content-page ol li { list-style: decimal; }
.content-page table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.content-page th, .content-page td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-color); }
.content-page th { background: var(--surface); font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.reseller-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin: 30px 0; }
.reseller-card { background: var(--surface); border-radius: var(--radius); padding: 24px; }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin: 40px 0; }
.stat-card { text-align: center; padding: 24px; }
.stat-card__num { font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.stat-card__label { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }
.setup-guide { padding: 60px 0; }
.setup-guide .toc { background: var(--surface); border-radius: var(--radius); padding: 24px; margin-bottom: 40px; }
.setup-guide .toc a { display: block; padding: 6px 0; color: var(--primary); font-size: 0.92rem; }
.setup-guide h2 { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.setup-guide img { border-radius: var(--radius-sm); margin: 20px 0; box-shadow: var(--shadow); }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.checkout-summary { background: var(--surface); border-radius: var(--radius); padding: 28px; }
@media (max-width: 768px) { .checkout-grid { grid-template-columns: 1fr; } }
.trial-section { padding: 80px 0; }
.trial-form-wrapper { max-width: 600px; margin: 0 auto; background: var(--surface); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
