/* Reset and Base Styles */
:root {
    --bg-main: #0b1120;
    --bg-card: #151f32;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --orange: #ff6b00;
    --orange-hover: #e66000;
    --blue: #0ea5e9;
    --green: #22c55e;
    --glow-blue: rgba(14, 165, 233, 0.3);
    --glow-green: rgba(34, 197, 94, 0.3);
    --glow-orange: rgba(255, 107, 0, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.text-blue {
    color: var(--blue);
}

.text-green {
    color: var(--green);
}

.text-orange {
    color: var(--orange);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-orange {
    background-color: var(--orange);
    color: white;
}

.btn-orange:hover {
    background-color: var(--orange-hover);
}

.btn-outline-blue {
    border: 1px solid var(--blue);
    color: var(--blue);
    background: transparent;
}

.btn-outline-blue:hover {
    background: var(--glow-blue);
}

.btn-outline-orange {
    border: 1px solid var(--orange);
    color: var(--orange);
    background: transparent;
}

.btn-outline-orange:hover {
    background: var(--glow-orange);
}

.btn-blue-solid { background-color: #1e3a8a; color: white; border: 1px solid var(--blue); padding: 12px; width: 100%; margin-top: 15px;}
.btn-green-solid { background-color: #14532d; color: white; border: 1px solid var(--green); padding: 12px; width: 100%; margin-top: 15px;}
.btn-orange-solid { background-color: #7c2d12; color: white; border: 1px solid var(--orange); padding: 12px; width: 100%; margin-top: 15px;}

/* Header */
.header {
    background-color: rgba(11, 17, 32, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    position: relative;
    color: var(--blue);
    font-size: 2rem;
}

.logo-s {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: white;
    font-weight: bold;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.logo-text .stream { color: var(--blue); }
.logo-text .tv { color: white; }
.logo-text .pro { color: var(--orange); display: flex; align-items: center; gap: 5px; }

.nav ul {
    display: flex;
    gap: 20px;
}

.nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav a:hover, .nav a.active {
    color: var(--blue);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background-color: var(--bg-main);
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--blue);
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-bottom: 0;
}

.hero-image-composite {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 450px;
}

.hero-bg-family {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.8;
}

.hero-tv {
    position: absolute;
    border: 4px solid #111;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    background: #000;
    overflow: hidden;
}

.hero-tv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-tv-back {
    width: 55%;
    height: 250px;
    top: 10%;
    left: 0;
    transform: perspective(1000px) rotateY(15deg);
    z-index: 1;
    filter: brightness(0.8);
}

.hero-tv-front {
    width: 75%;
    height: 300px;
    top: 25%;
    right: -5%;
    transform: perspective(1000px) rotateY(-5deg);
    z-index: 2;
    border-bottom: 8px solid #111;
}

/* Features */
.features {
    padding: 60px 0;
    background-color: #0f172a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-link {
    color: var(--blue);
    font-size: 0.8rem;
    text-decoration: underline;
}

/* Pricing */
.pricing {
    padding: 60px 0;
    background-color: #1a2233;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
}

.pricing-card.card-blue { border-color: var(--blue); box-shadow: 0 0 20px var(--glow-blue); }
.pricing-card.card-green { border-color: var(--green); box-shadow: 0 0 20px var(--glow-green); }
.pricing-card.card-orange { border-color: var(--orange); box-shadow: 0 0 20px var(--glow-orange); }

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-header .subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.badge-blue  { background: rgba(14,165,233,0.15); color: var(--blue);   border: 1px solid var(--blue);   }
.badge-green { background: rgba(34,197,94,0.15);  color: var(--green);  border: 1px solid var(--green);  }
.badge-orange{ background: rgba(255,107,0,0.15);  color: var(--orange); border: 1px solid var(--orange); }

.plan-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
}

.included-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: left;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.features-list i {
    margin-right: 8px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
}

.card-blue .price { color: var(--blue); }
.card-green .price { color: var(--green); }
.card-orange .price { color: var(--orange); }

.test-link {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    text-decoration: underline;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -20px;
    margin-bottom: 50px;
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.testimonial-card.featured {
    border-color: var(--green);
    box-shadow: 0 0 25px rgba(34,197,94,0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #15803d, #22c55e);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info strong {
    display: block;
    font-size: 0.95rem;
}

.location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.location i { margin-right: 3px; color: var(--blue); }

.verified {
    font-size: 0.7rem;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-plan {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.plan-blue   { background: rgba(14,165,233,0.12); color: var(--blue);   border: 1px solid rgba(14,165,233,0.3); }
.plan-green  { background: rgba(34,197,94,0.12);  color: var(--green);  border: 1px solid rgba(34,197,94,0.3);  }
.plan-orange { background: rgba(255,107,0,0.12);  color: var(--orange); border: 1px solid rgba(255,107,0,0.3);  }

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 30px 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.text-yellow { color: #f59e0b; }

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* Devices */
.devices {
    padding: 60px 0;
    background-color: #1e293b;
}

.devices-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.device-item {
    text-align: center;
}

.device-svg {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.device-svg:hover {
    transform: translateY(-4px) scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(14,165,233,0.4));
}

.device-svg-phone {
    height: 80px;
    width: auto;
}

/* Footer */
.footer {
    background-color: #0b1120;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.payment-methods, .social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; margin-bottom: 40px; }
    .hero-image-composite { max-width: 100%; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 15px; }
    .nav ul { flex-wrap: wrap; justify-content: center; }
    .hero-content h1 { font-size: 2rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .stats-bar { flex-direction: column; gap: 20px; }
    .stat-divider { width: 60px; height: 1px; }
    .cta-trust { flex-direction: column; gap: 10px; }
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, #7c2d12, #c2410c, #ff6b00);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 200;
}

.urgency-bar i { color: #fde68a; }

.urgency-bar a {
    color: #fde68a;
    font-weight: 700;
    text-decoration: underline;
}

.urgency-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 15px;
    opacity: 0.7;
}

.urgency-close:hover { opacity: 1; }

/* Scroll Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #0b1120;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--blue);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-question i {
    color: var(--blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, #1e3a5f 0%, #0b1120 70%);
    border-top: 1px solid rgba(14,165,233,0.15);
    border-bottom: 1px solid rgba(14,165,233,0.15);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue), #0369a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(14,165,233,0.4);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-content p strong { color: white; }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cta-main-btn {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}

.cta-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,0,0.5);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-trust span {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust i { color: var(--blue); }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 200;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--blue);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0369a1;
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    display: none; /* Flex via JS */
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-banner a {
    color: var(--blue);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-card);
        padding: 80px 30px 30px;
        transition: left 0.3s ease;
        z-index: 150;
        box-shadow: 5px 0 20px rgba(0,0,0,0.5);
    }
    .nav.active { left: 0; }
    .nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .header-cta { display: none; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 10px; }
}
