
        /* ============================================
           MAX TV GO - LIGHT BACKGROUND THEME
           NO ANIMATIONS - STATIC WEBSITE
           FULLY RESPONSIVE - NO HORIZONTAL SCROLL
        ============================================ */
        :root {
            --primary: #E67E22;
            --primary-dark: #D35400;
            --primary-light: #F39C12;
            --primary-soft: #FEF3E8;
            --bg-white: #FFFFFF;
            --bg-light: #FFF9F5;
            --bg-card: #FFFFFF;
            --text-dark: #1F2937;
            --text-muted: #6B7280;
            --border-light: #F0E4D8;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 35px -12px rgba(230, 126, 34, 0.12);
            --gradient: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
            --gradient-soft: linear-gradient(135deg, #FEF3E8 0%, #FFF9F5 100%);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }

        /* Fix horizontal scroll */
        .container, .container-fluid {
            overflow-x: hidden;
            width: 100%;
        }
        
        .row {
            margin-left: 0;
            margin-right: 0;
        }
        
        [class*="col-"] {
            padding-left: 12px;
            padding-right: 12px;
        }
        
        img, iframe, video, .img-fluid {
            max-width: 100%;
            height: auto;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #F0E8DC; border-radius: 10px; }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

        /* Spinner */
        #spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-light);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .custom-spinner {
            width: 56px;
            height: 56px;
            border: 3px solid rgba(230, 126, 34, 0.2);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* Navbar - Light Theme */
        .navbar-sama {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(230, 126, 34, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-link-sama {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.6rem;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            position: relative;
        }
        .nav-link-sama:hover {
            color: var(--primary) !important;
        }
        .nav-link-sama.active {
            color: var(--primary) !important;
        }
        .nav-link-sama.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        /* Button Styles */
        .btn-primary-sama {
            background: var(--gradient);
            color: white;
            padding: 8px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-block;
            border: none;
            box-shadow: 0 2px 8px rgba(230, 126, 34, 0.2);
        }
        .btn-primary-sama:hover {
            background: var(--primary-dark);
            color: white;
        }
        
        .btn-outline-sama {
            background: transparent;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            padding: 8px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-block;
        }
        .btn-outline-sama:hover {
            background: var(--primary);
            color: white;
        }

        /* Hero Section */
        .hero-split {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--gradient-soft);
            width: 100%;
        }
        .hero-full-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        .hero-full-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.35) contrast(1.05);
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255,249,240,0.92) 0%, rgba(255,249,240,0.75) 50%, rgba(255,249,240,0.6) 100%);
            z-index: 1;
        }
        .hero-content-left {
            position: relative;
            z-index: 3;
            padding: 3rem 0;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(230, 126, 34, 0.12);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .hero-content-left h1 {
            font-size: 4.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .hero-content-left h1 span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .hero-desc {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-primary-lg {
            background: var(--gradient);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            padding: 14px 38px;
            color: white;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.25);
            font-size: 1rem;
            display: inline-block;
            cursor: pointer;
        }
        .btn-primary-lg:hover {
            background: var(--primary-dark);
            color: white;
        }
        
        .btn-outline-lg {
            background: white;
            border: 1.5px solid var(--primary);
            border-radius: 8px;
            padding: 14px 38px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            display: inline-block;
            cursor: pointer;
        }
        .btn-outline-lg:hover {
            background: var(--primary);
            color: white;
            border-color: transparent;
        }

        .btn-app {
            background: rgba(230, 126, 34, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            text-decoration: none;
            margin: 3px;
            display: inline-block;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .btn-app:hover {
            background: var(--primary);
            color: white;
        }

        /* Stats Bar */
        .stats-wrapper {
            position: relative;
            z-index: 10;
            margin-top: -50px;
            margin-bottom: 30px;
        }
        .stats-grid {
            background: var(--bg-white);
            border-radius: 24px;
            padding: 1.5rem 1rem;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-lg);
            width: 100%;
        }
        
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
            width: 100%;
        }
        
        .stat-card-mini {
            text-align: center;
            flex: 1;
            min-width: 100px;
            padding: 8px 5px;
        }
        
        .stat-number {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
        }
        .stat-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        /* Card Modern */
        .card-modern {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border-light);
            transition: all 0.2s ease;
            box-shadow: var(--shadow-sm);
        }
        .card-modern:hover {
            border-color: var(--primary);
        }

        /* Apps Section */
        .apps-section {
            background: var(--bg-white);
            padding: 5rem 0;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        .underline {
            width: 70px;
            height: 3px;
            background: var(--gradient);
            margin: 1rem auto 2rem;
            border-radius: 2px;
        }
        .apps-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .app-card {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 1.5rem 1rem;
            text-align: center;
            width: 180px;
            transition: all 0.2s ease;
            border: 1px solid var(--border-light);
        }
        .app-card:hover {
            border-color: var(--primary);
        }
        .app-card h5 {
            margin: 1rem 0 0.8rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        /* Feature Lines */
        .feature-section {
            padding: 4rem 0;
            background: var(--bg-light);
        }
        .feature-line-item {
            margin-bottom: 4rem;
        }
        .feature-line-item:last-child {
            margin-bottom: 0;
        }
        .feature-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        .feature-content p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .feature-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .feature-image img {
            border-radius: 20px;
            max-width: 100%;
            height: auto;
            box-shadow: var(--shadow-sm);
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--bg-white);
            padding: 5rem 0;
        }
        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.8rem;
        }
        .pricing-card-modern {
            background: var(--bg-white);
            border-radius: 28px;
            padding: 2rem 1.5rem;
            width: 250px;
            text-align: center;
            transition: all 0.2s ease;
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }
        .pricing-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .pricing-card-modern:hover::before {
            transform: scaleX(1);
        }
        .pricing-card-modern:hover {
            border-color: var(--primary-light);
        }
        .pricing-card-modern.featured {
            border: 2px solid var(--primary);
            background: linear-gradient(135deg, #FFFFFF 0%, #FEFAF5 100%);
        }
        .price-amount {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        .price-amount small {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
        }
        .price-duration {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--border-light);
        }
        .price-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 1.8rem;
            text-align: left;
        }
        .price-features li {
            font-size: 0.8rem;
            margin: 0.8rem 0;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .price-features li i {
            color: var(--primary);
            font-size: 0.85rem;
            width: 20px;
            flex-shrink: 0;
        }
        .btn-price {
            background: var(--gradient);
            display: block;
            padding: 12px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 700;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }
        .btn-price:hover {
            background: var(--primary-dark);
        }
        .pricing-note {
            text-align: center;
            margin-top: 2.5rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-light);
            padding: 5rem 0;
        }
        .faq-item {
            background: var(--bg-white);
            border-radius: 20px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
        }
        .faq-item:hover {
            border-color: var(--primary);
        }
        .faq-question {
            padding: 1.3rem 1.8rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--bg-white);
            color: var(--text-dark);
        }
        .faq-question i {
            color: var(--primary);
            transition: 0.2s;
        }
        .faq-answer {
            padding: 0 1.8rem;
            max-height: 0;
            overflow: hidden;
            transition: 0.3s ease;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .faq-item.active .faq-answer {
            padding: 0 1.8rem 1.3rem 1.8rem;
            max-height: 280px;
        }

        /* Footer */
        .footer-sama {
            background: #2C2418;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--primary);
            color: #DCCFBC;
        }
        .footer-heading {
            color: var(--primary-light);
            font-weight: 700;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .footer-links-list {
            list-style: none;
            padding: 0;
        }
        .footer-links-list li {
            margin-bottom: 0.5rem;
        }
        .footer-links-list li a {
            color: #DCCFBC;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        .footer-links-list li a:hover { 
            color: var(--primary-light);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4A3B2C;
            font-size: 0.8rem;
            color: #B8A68C;
        }
        .footer-bottom a {
            color: var(--primary-light);
            text-decoration: none;
        }

        /* WhatsApp & Back to Top */
        .whatsapp-float {
            position: fixed;
            bottom: 80px;
            right: 24px;
            background: #25D366;
            border-radius: 50%;
            padding: 12px;
            z-index: 99;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.2s ease;
        }
        .whatsapp-float:hover { transform: scale(1.05); }
        .whatsapp-float img { width: 32px; height: 32px; }
        .back-to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--primary);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            opacity: 0;
            transition: all 0.2s ease;
            z-index: 99;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .back-to-top:hover { 
            background: var(--primary-dark);
        }
        .back-to-top.show { opacity: 1; }
        
        /* Responsive */
        @media (min-width: 992px) {
            .stat-card-mini {
                border-right: 1px solid var(--border-light);
            }
            .stat-card-mini:last-child {
                border-right: none;
            }
        }
        
        @media (min-width: 768px) and (max-width: 991px) {
            .stat-card-mini {
                flex: 0 0 33.333%;
                border-right: 1px solid var(--border-light);
                border-bottom: 1px solid var(--border-light);
            }
            .stat-card-mini:nth-child(3) { border-right: none; }
            .stat-card-mini:nth-child(4), .stat-card-mini:nth-child(5), .stat-card-mini:nth-child(6) { border-bottom: none; }
            .stat-card-mini:nth-child(4), .stat-card-mini:nth-child(5) { border-right: 1px solid var(--border-light); }
            .stat-card-mini:nth-child(6) { border-right: none; }
        }
        
        @media (max-width: 767px) {
            .stats-wrapper { margin-top: -40px; }
            .stats-grid { padding: 0.8rem; }
            .stat-card-mini {
                flex: 0 0 50%;
                border-right: 1px solid var(--border-light);
                border-bottom: 1px solid var(--border-light);
                padding: 10px 5px;
            }
            .stat-card-mini:nth-child(even) { border-right: none; }
            .stat-card-mini:nth-child(5), .stat-card-mini:nth-child(6) { border-bottom: none; }
            .stat-number { font-size: 1.3rem; }
            .stat-label { font-size: 0.65rem; }
            .hero-content-left h1 { font-size: 2.2rem; }
            .hero-desc { font-size: 0.9rem; }
            .btn-primary-lg, .btn-outline-lg { padding: 10px 24px; font-size: 0.85rem; }
            .app-card { width: 150px; }
            .pricing-card-modern { width: 200px; }
            .price-amount { font-size: 1.8rem; }
        }
        
        @media (max-width: 576px) {
            .hero-content-left h1 { font-size: 1.8rem; }
            .app-card { width: calc(50% - 0.8rem); min-width: 140px; }
            .pricing-card-modern { width: calc(100% - 1rem); max-width: 280px; margin: 0 auto; }
            .feature-content h3 { font-size: 1.2rem; }
        }
    