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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #0a0a0a;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        button {
            cursor: pointer;
            border: none;
            outline: none;
            font-family: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: #FF8C00;
            color: #fff;
        }

        .btn-primary:hover {
            background: #FF7A00;
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 140, 0, 0.3);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
        }

        .btn-gold {
            background: #FFD700;
            color: #000;
        }

        .btn-gold:hover {
            background: #FFC700;
            transform: scale(1.05);
        }

        .btn-lg {
            padding: 1.25rem 2.5rem;
            font-size: 1.125rem;
        }

        .btn-whatsapp {
            background: #25D366;
            color: #fff;
        }

        .btn-whatsapp:hover {
            background: #128C7E;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1698002478007-ccef4f73afbb?w=1920&q=80') center/cover no-repeat;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.95));
        }

        .hero-overlay-side {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent, rgba(0, 0, 0, 0.8));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 2rem;
            max-width: 1200px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 140, 0, 0.2);
            color: #FF8C00;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 700;
            border: 1px solid rgba(255, 140, 0, 0.3);
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            display: block;
            background: linear-gradient(to right, #FF8C00, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 0.5rem;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.25rem);
            color: #e5e5e5;
            max-width: 800px;
            margin: 0 auto 2.5rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .hero-links a,
        .hero-links span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s;
        }

        .hero-links a:hover {
            color: #FF8C00;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 9999px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
            cursor: pointer;
        }

        .scroll-dot {
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: scrollBounce 1.5s infinite;
        }

        @keyframes scrollBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(12px);
            }
        }

        /* Section Base */
        section {
            padding: 5rem 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #9ca3af;
            font-size: 1.125rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .bg-dark {
            background: #0a0a0a;
        }

        .bg-darker {
            background: #1a1a1a;
        }

        .text-orange {
            color: #FF8C00;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .pricing-card {
            background: #2d2d2d;
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid #404040;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.popular {
            border: 2px solid #FFD700;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
        }

        .popular-badge {
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            background: #FFD700;
            color: #000;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .pricing-price .currency {
            color: #9ca3af;
            font-size: 1.125rem;
        }

        .pricing-price .amount {
            font-size: 3rem;
            font-weight: 800;
            color: #FF8C00;
        }

        .pricing-price .period {
            color: #9ca3af;
        }

        .pricing-screens {
            text-align: center;
            color: #d1d5db;
            margin-bottom: 1.5rem;
        }

        .pricing-features {
            list-style: none;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            color: #d1d5db;
            margin-bottom: 0.75rem;
        }

        .pricing-features li i {
            color: #FF8C00;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pricing-card .btn {
            width: 100%;
            padding: 1rem;
        }

        /* Info Section (What is IPTV) */
        .info-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .info-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .info-content h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .info-content p {
            color: #d1d5db;
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .info-features {
            margin-bottom: 2rem;
        }

        .info-feature {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .info-feature-icon {
            background: rgba(255, 140, 0, 0.2);
            padding: 0.75rem;
            border-radius: 0.5rem;
            height: fit-content;
        }

        .info-feature-icon i {
            color: #FF8C00;
        }

        .info-feature h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .info-feature p {
            color: #9ca3af;
            font-size: 1rem;
            margin: 0;
        }

        .info-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #FF8C00;
            font-weight: 600;
            font-size: 1.125rem;
            transition: color 0.3s;
        }

        .info-link:hover {
            color: #FFD700;
        }

        .info-image {
            position: relative;
        }

        .info-image-glow {
            position: absolute;
            inset: -1rem;
            background: linear-gradient(to right, #FF8C00, #FFD700);
            border-radius: 1rem;
            opacity: 0.2;
            filter: blur(20px);
        }

        .info-image img {
            position: relative;
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 1rem;
            border: 1px solid #404040;
        }

        .info-image-overlay {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            right: 1.5rem;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem;
            border-radius: 0.75rem;
            border: 1px solid #404040;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-image-overlay i {
            color: #FF8C00;
        }

        .info-image-overlay h4 {
            font-weight: 700;
            margin-bottom: 0.125rem;
        }

        .info-image-overlay p {
            color: #9ca3af;
            font-size: 0.875rem;
            margin: 0;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .benefit-card {
            background: #1f1f1f;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid #404040;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: scale(1.03);
            background: #2d2d2d;
            border-color: #FF8C00;
        }

        .benefit-header {
            display: flex;
            gap: 1rem;
        }

        .benefit-icon {
            background: rgba(255, 140, 0, 0.1);
            padding: 0.75rem;
            border-radius: 0.5rem;
            height: fit-content;
            transition: background 0.3s;
        }

        .benefit-card:hover .benefit-icon {
            background: rgba(255, 140, 0, 0.2);
        }

        .benefit-icon i {
            color: #FF8C00;
        }

        .benefit-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .benefit-card:hover .benefit-content h3 {
            color: #FF8C00;
        }

        .benefit-content p {
            color: #9ca3af;
            font-size: 0.875rem;
            line-height: 1.7;
        }

        /* Devices Grid */
        .devices-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .devices-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .devices-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        .device-card {
            background: #1a1a1a;
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid #404040;
            text-align: center;
            transition: all 0.3s ease;
        }

        .device-card:hover {
            border-color: #FF8C00;
        }

        .device-card i {
            color: #FF8C00;
            margin-bottom: 1rem;
        }

        .device-card h3 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .device-card p {
            color: #6b7280;
            font-size: 0.75rem;
        }

        /* Quality Section */
        .quality-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .quality-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .quality-content h2 {
            font-size: clamp(2rem, 5vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .quality-content>p {
            color: #d1d5db;
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .quality-item {
            background: #2d2d2d;
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid;
        }

        .quality-item.premium {
            border-color: #FF8C00;
        }

        .quality-item.standard {
            border-color: #6b7280;
        }

        .quality-item.economy {
            border-color: #404040;
        }

        .quality-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .quality-item h3 {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .quality-item .badge {
            font-size: 0.875rem;
            font-weight: 700;
        }

        .quality-item.premium .badge {
            color: #FFD700;
        }

        .quality-item.standard .badge {
            color: #9ca3af;
        }

        .quality-item.economy .badge {
            color: #6b7280;
        }

        .quality-item p {
            color: #9ca3af;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .quality-item .internet {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.75rem;
        }

        .quality-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .quality-stat {
            background: #0a0a0a;
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid #404040;
            text-align: center;
        }

        .quality-stat:nth-child(2),
        .quality-stat:nth-child(4) {
            margin-top: 2rem;
        }

        .quality-stat i {
            margin-bottom: 1rem;
        }

        .quality-stat h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .quality-stat p {
            color: #6b7280;
            font-size: 0.875rem;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .testimonial-card {
            background: #2d2d2d;
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid #404040;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: scale(1.03);
            border-color: #FF8C00;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            background: #FF8C00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .testimonial-header h3 {
            font-weight: 600;
        }

        .testimonial-stars {
            display: flex;
            gap: 2px;
        }

        .testimonial-stars i {
            color: #FFD700;
        }

        .testimonial-card p {
            color: #d1d5db;
            font-size: 0.875rem;
            line-height: 1.7;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .faq-item {
            background: #2d2d2d;
            border: 1px solid #404040;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item.active {
            border-color: #FF8C00;
        }

        .faq-question {
            width: 100%;
            padding: 1.25rem 1.5rem;
            background: transparent;
            color: #fff;
            font-size: 1.125rem;
            font-weight: 600;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: #FF8C00;
        }

        .faq-question i {
            transition: transform 0.3s;
        }

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

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

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.25rem;
            color: #d1d5db;
            line-height: 1.7;
        }

        .faq-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(255, 140, 0, 0.1), rgba(255, 215, 0, 0.1));
        }

        .cta-card {
            position: relative;
            background: linear-gradient(to bottom right, #1a1a1a, #2d2d2d);
            border: 1px solid #404040;
            border-radius: 1.5rem;
            padding: 3rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .cta-icon {
            color: #FFD700;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .cta-card h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cta-card>p {
            font-size: clamp(1rem, 3vw, 1.25rem);
            color: #d1d5db;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        .cta-note {
            color: #6b7280;
            font-size: 0.875rem;
            margin-top: 1.5rem;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            border-top: 1px solid #404040;
            padding: 3rem 1rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: #9ca3af;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #9ca3af;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #FF8C00;
        }

        .footer-contact {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            color: #9ca3af;
            margin-bottom: 0.5rem;
        }

        .footer-contact i {
            color: #FF8C00;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #404040;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #6b7280;
            font-size: 0.875rem;
        }

        /* Why Choose Section */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .why-card {
            background: #2d2d2d;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid #404040;
            transition: all 0.3s ease;
        }

        .why-card:hover {
            transform: translateY(-5px);
            border-color: #FF8C00;
        }

        .why-icon {
            width: 56px;
            height: 56px;
            background: #0a0a0a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }

        .why-card:hover .why-icon {
            transform: scale(1.1);
        }

        .why-icon i {
            color: #FF8C00;
        }

        .why-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .why-card:hover h3 {
            color: #FF8C00;
        }

        .why-card p {
            color: #9ca3af;
            line-height: 1.7;
        }

        /* Utility */
        .text-center {
            text-align: center;
        }

        @media (max-width: 640px) {
            .hero-buttons .btn {
                width: 100%;
            }

            .scroll-indicator {
                display: none;
            }
        }
