/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #08080d; color: #d0d0d0; line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.accent { color: #ff8c00; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(8,8,13,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,140,0,.1);
    transition: background .3s;
}
.nav-content {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.logo { font-size: 24px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 6px; }
.logo-icon {
    background: linear-gradient(135deg, #ff8c00, #ff6000);
    color: #fff; width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: #999; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #ff8c00; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all .25s; border: none; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, #ff8c00, #e07000); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,140,0,.35); }
.btn-outline { border: 1.5px solid #ff8c00; color: #ff8c00; background: transparent; }
.btn-outline:hover { background: rgba(255,140,0,.1); }
.btn-gold { background: linear-gradient(135deg, #ffc107, #ff8c00); color: #000; font-weight: 700; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,193,7,.35); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1fb855; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ========== HERO ========== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding-top: 64px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,140,0,.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(100,50,200,.06) 0%, transparent 50%);
}
.hero-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero-text h1 { font-size: 52px; font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; color: #999; margin-bottom: 24px; max-width: 480px; }
.hero-features { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-features span { font-size: 14px; color: #bbb; display: flex; align-items: center; gap: 6px; }
.hero-features i { color: #ff8c00; font-size: 12px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Card */
.hero-card {
    background: rgba(22,22,30,.85); border: 1px solid rgba(255,140,0,.15);
    border-radius: 16px; padding: 28px; backdrop-filter: blur(10px);
    position: relative;
}
.live-badge {
    position: absolute; top: -12px; right: 20px;
    background: #e02020; color: #fff; padding: 4px 14px; border-radius: 20px;
    font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }
.hero-card-content { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.channel-preview {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,.04); padding: 14px 16px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.05); transition: border-color .2s;
}
.channel-preview:hover { border-color: rgba(255,140,0,.3); }
.cp-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: linear-gradient(135deg, #ff8c00, #e07000);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.channel-preview strong { color: #fff; font-size: 15px; display: block; }
.channel-preview small { color: #888; font-size: 12px; }

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.hero-scroll a { color: #666; font-size: 24px; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ========== STATS ========== */
.stats { padding: 50px 0; border-bottom: 1px solid #1a1a25; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-number { font-size: 42px; font-weight: 900; color: #ff8c00; }
.stat-label { font-size: 14px; color: #888; margin-top: 4px; }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-dark { background: #0c0c14; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.section-header p { font-size: 16px; color: #888; max-width: 500px; margin: 0 auto; }

/* ========== CHANNELS ========== */
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.channel-cat {
    background: #111119; border: 1px solid #1e1e2e; border-radius: 12px;
    padding: 24px; text-align: center; transition: all .3s;
}
.channel-cat:hover { border-color: #ff8c00; transform: translateY(-4px); }
.cat-icon { font-size: 32px; color: #ff8c00; margin-bottom: 12px; }
.channel-cat h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.channel-cat p { font-size: 13px; color: #888; margin-bottom: 12px; }
.cat-count {
    display: inline-block; background: rgba(255,140,0,.1); color: #ff8c00;
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}

/* ========== PRICING ========== */
.price-badges { display: flex; justify-content: center; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.price-badges span { font-size: 14px; color: #aaa; display: flex; align-items: center; gap: 6px; }
.price-badges i { color: #ff8c00; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.price-card {
    background: #111119; border: 1px solid #1e1e2e; border-radius: 14px;
    padding: 32px 24px; text-align: center; position: relative; transition: all .3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: #ff8c00; box-shadow: 0 0 30px rgba(255,140,0,.1); }
.price-card.gold { border-color: #ffc107; }
.price-badge-top {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: #ff8c00; color: #fff; padding: 4px 18px; border-radius: 20px;
    font-size: 12px; font-weight: 700;
}
.price-tag { color: #ff8c00; font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
.price-card.gold .price-tag { color: #ffc107; }
.price-period { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.price-amount { font-size: 48px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.price-amount span { font-size: 18px; color: #888; font-weight: 400; }
.price-save { font-size: 13px; color: #4caf50; margin-bottom: 20px; }
.price-features { margin-bottom: 24px; }
.price-features li { padding: 8px 0; font-size: 14px; color: #bbb; display: flex; align-items: center; gap: 8px; justify-content: center; }
.price-features i { color: #4caf50; font-size: 12px; }

/* ========== DEVICES ========== */
.devices-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.device-card {
    background: #111119; border: 1px solid #1e1e2e; border-radius: 12px;
    padding: 24px 16px; text-align: center; transition: all .3s;
}
.device-card:hover { border-color: #ff8c00; transform: translateY(-3px); }
.device-card i { font-size: 36px; color: #ff8c00; margin-bottom: 12px; }
.device-card h4 { color: #fff; font-size: 14px; margin-bottom: 4px; }
.device-card p { font-size: 12px; color: #888; }
.devices-note {
    text-align: center; margin-top: 24px; padding: 16px;
    background: rgba(255,140,0,.05); border-radius: 8px; border: 1px solid rgba(255,140,0,.1);
}
.devices-note p { font-size: 14px; color: #999; }
.devices-note i { color: #ff8c00; }

/* ========== FAQ ========== */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
    background: #111119; border: 1px solid #1e1e2e; border-radius: 10px;
    margin-bottom: 10px; overflow: hidden;
}
.faq-q {
    padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; transition: background .2s; font-size: 15px; color: #ddd;
}
.faq-q:hover { background: rgba(255,140,0,.04); }
.faq-q span { display: flex; align-items: center; gap: 10px; }
.faq-q span i { color: #ff8c00; width: 20px; }
.faq-arrow { color: #666; font-size: 12px; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: #ff8c00; }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s;
    padding: 0 20px; font-size: 14px; color: #999; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ========== DOWNLOAD ========== */
.download-box {
    display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center;
    background: #111119; border: 1px solid #1e1e2e; border-radius: 16px; padding: 40px;
}
.download-info h2 { font-size: 30px; color: #fff; margin-bottom: 12px; }
.download-info h2 i { color: #ff8c00; }
.download-info p { color: #888; margin-bottom: 20px; }
.download-features { margin-bottom: 24px; }
.download-features li { padding: 6px 0; font-size: 14px; color: #bbb; display: flex; align-items: center; gap: 8px; }
.download-features i { color: #4caf50; }
.download-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

/* Phone Mockup */
.phone-mockup {
    width: 200px; height: 380px;
    background: #1a1a25; border: 3px solid #333; border-radius: 28px;
    padding: 16px 10px; overflow: hidden;
}
.phone-screen { height: 100%; display: flex; flex-direction: column; gap: 8px; }
.phone-header {
    text-align: center; color: #ff8c00; font-weight: 800; font-size: 16px;
    padding-bottom: 10px; border-bottom: 1px solid #2a2a3a;
}
.phone-channel {
    background: #16161e; padding: 12px; border-radius: 8px;
    font-size: 13px; color: #ccc; display: flex; align-items: center; gap: 8px;
}
.phone-channel span { color: #ff8c00; }
.phone-channel.active { border: 1px solid #ff8c00; background: rgba(255,140,0,.08); }

/* ========== FOOTER ========== */
.footer {
    padding: 40px 0; border-top: 1px solid #1a1a25;
    text-align: center;
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #888; font-size: 14px; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-links a:hover { color: #ff8c00; }
.footer-copy { font-size: 12px; color: #555; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px; box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: transform .3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
    .devices-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
        background: rgba(8,8,13,.98); flex-direction: column; align-items: center;
        justify-content: center; gap: 28px; }
    .nav-links.active { display: flex; }
    .burger { display: block; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-text h1 { font-size: 36px; }
    .hero-subtitle { margin: 0 auto 20px; }
    .hero-features { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
    .download-box { grid-template-columns: 1fr; text-align: center; }
    .download-buttons { justify-content: center; }
    .phone-mockup { margin: 0 auto; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .section-header h2 { font-size: 28px; }
}
