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

        body {
            font-family: 'Open Sans', sans-serif;
            background: #ffffff;
            color: #333333;
            overflow-x: hidden;
            width: 100%;
        }

        :root {
            --max-red: #cc0000;
            /* true red */
            --max-red-dark: #990000;
            --max-red-light: #ffeeee;
            --max-navy: #000080;
            /* navy blue */
            --max-navy-dark: #000066;
            --max-navy-light: #e6e6ff;
            --max-text-dark: #1e293b;
            --max-text-light: #475569;
            --max-border: #e2e8f0;
            --max-bg-light: #f8fafc;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--max-text-dark);
        }

        /* Custom Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Animation Classes */
        .animate-fade-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        .animate-fade-left {
            animation: fadeInLeft 0.8s ease forwards;
        }

        .animate-fade-right {
            animation: fadeInRight 0.8s ease forwards;
        }

        .animate-scale {
            animation: scaleIn 0.6s ease forwards;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-pulse-slow {
            animation: pulse 2s ease-in-out infinite;
        }

        .delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
        .delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
        .delay-3 { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }
        .delay-4 { animation-delay: 0.8s; opacity: 0; animation-fill-mode: forwards; }

        /* ===== BUTTON STYLES ===== */
        .btn-red {
            background: var(--max-red);
            color: white;
            font-weight: 700;
            border-radius: 40px;
            padding: 0.6rem 1.8rem;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 8px 18px -6px rgba(204, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            cursor: pointer;
            text-align: center;
        }

        .btn-red:hover {
            background: var(--max-red-dark);
            color: white;
            transform: scale(1.03);
            box-shadow: 0 12px 24px -8px rgba(204, 0, 0, 0.4);
        }

        .btn-red:active {
            transform: scale(0.98);
        }

        .btn-navy {
            background: var(--max-navy);
            color: white;
            font-weight: 700;
            border-radius: 40px;
            padding: 0.6rem 1.8rem;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 8px 18px -6px rgba(0, 0, 128, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            cursor: pointer;
            text-align: center;
        }

        .btn-navy:hover {
            background: var(--max-navy-dark);
            color: white;
            transform: scale(1.03);
            box-shadow: 0 12px 24px -8px rgba(0, 0, 128, 0.4);
        }

        .btn-navy:active {
            transform: scale(0.98);
        }

        .btn-outline-red {
            background: transparent;
            border: 2px solid var(--max-red);
            color: var(--max-red);
            font-weight: 600;
            border-radius: 40px;
            padding: 0.6rem 1.8rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-outline-red:hover {
            background: var(--max-red-light);
            color: var(--max-red-dark);
            border-color: var(--max-red-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px -5px rgba(204, 0, 0, 0.2);
        }

        .btn-outline-red:active {
            transform: translateY(-1px);
        }

        .btn-outline-navy {
            background: transparent;
            border: 2px solid var(--max-navy);
            color: var(--max-navy);
            font-weight: 600;
            border-radius: 40px;
            padding: 0.6rem 1.8rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-outline-navy:hover {
            background: var(--max-navy-light);
            color: var(--max-navy-dark);
            border-color: var(--max-navy-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px -5px rgba(0, 0, 128, 0.2);
        }

        .btn-outline-navy:active {
            transform: translateY(-1px);
        }

        /* Button ripple effect */
        .btn-red::before, .btn-navy::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }

        .btn-red:hover::before, .btn-navy:hover::before {
            width: 300px;
            height: 300px;
        }

        /* navbar */
        .navbar-modern {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--max-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            width: 100%;
        }

        .navbar-modern .nav-link {
            color: var(--max-text-light);
            font-weight: 500;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
            padding: 0.5rem 1rem;
        }

        .navbar-modern .nav-link:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--max-red);
            transition: width 0.3s ease;
        }

        .navbar-modern .nav-link:hover:after,
        .navbar-modern .nav-link.active:after {
            width: 80%;
        }

        .navbar-modern .nav-link:hover,
        .navbar-modern .nav-link.active {
            color: var(--max-red);
        }

        /* hero */
        .hero-max {
            display: flex;
            align-items: center;
            min-height: 90vh;
            position: relative;
            padding: 2rem 0;
            background: linear-gradient(135deg, #fff0f0 0%, #ffffff 50%, #f0f0ff 100%);
            width: 100%;
            overflow-x: hidden;
        }

        .hero-content-max {
            z-index: 3;
            max-width: 700px;
        }

        .hero-title-max {
            font-size: 4.2rem;
            font-weight: 800;
            line-height: 1.1;
            background: linear-gradient(to right, var(--max-red), var(--max-navy));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            animation: fadeInLeft 1s ease;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 40px -15px rgba(0, 0, 128, 0.2);
            border: 1px solid var(--max-border);
            animation: fadeInRight 1s ease, float 6s ease-in-out infinite;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), rgba(0, 0, 128, 0.1));
            pointer-events: none;
        }

        /* Stats Section */
        .stats-container {
            background: white;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            margin-top: -2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--max-border);
            animation: scaleIn 0.8s ease;
            width: 100%;
        }

        .stats-grid-simple {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
        }

        .stat-item-simple {
            text-align: center;
            padding: 1rem 0.3rem;
            transition: all 0.3s ease;
            border-right: 1px solid var(--max-border);
        }

        .stats-grid-simple > div:last-child .stat-item-simple {
            border-right: none;
        }

        .stat-item-simple h5 {
            color: var(--max-red);
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .stat-item-simple p {
            color: var(--max-text-light);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            font-weight: 500;
        }

        .stat-item-simple i {
            color: var(--max-navy);
            font-size: 1rem;
            margin-right: 3px;
            transition: all 0.3s ease;
        }

        .stat-item-simple a {
            text-decoration: none;
        }

        .stat-item-simple a h5 {
            color: #25D366;
            margin-bottom: 0;
        }

        .stat-item-simple:hover {
            transform: translateY(-5px);
            background: rgba(0, 0, 128, 0.02);
            border-radius: 10px;
        }

        .stat-item-simple:hover h5 {
            color: var(--max-navy);
        }

        .stat-item-simple:hover i {
            color: var(--max-red);
            transform: scale(1.1);
        }

        /* Cards */
        .image-card-max, .feature-card-max, .price-card-max, .support-box-max, .glass-card-max {
            transition: all 0.3s ease;
            height: 100%;
        }

        .image-card-max:hover, .feature-card-max:hover, .price-card-max:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 40px -20px rgba(0, 0, 128, 0.2);
        }

        .feature-card-max {
            background: white;
            border-radius: 30px;
            padding: 1.5rem 1rem;
            text-align: center;
            border: 1px solid var(--max-border);
            box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .feature-icon-max i {
            font-size: 3.5rem;
            color: var(--max-navy);
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
        }

        .feature-card-max:hover .feature-icon-max i {
            transform: scale(1.1);
            color: var(--max-red);
        }

        .feature-card-max h4 {
            color: var(--max-red);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .feature-card-max .btn-red,
        .feature-card-max .btn-outline-navy,
        .feature-card-max .btn-navy,
        .feature-card-max .btn-outline-red {
            margin-top: 0.3rem;
            padding: 0.5rem;
            font-size: 0.85rem;
            width: 100%;
            display: block;
        }

        /* Price Cards */
        .price-card-max {
            background: white;
            border-radius: 35px;
            padding: 2rem 1.5rem;
            border: 1px solid var(--max-border);
            box-shadow: 0 25px 40px -25px rgba(0, 0, 0, 0.1);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .price-max {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--max-red);
            line-height: 1;
        }

        .price-card-max ul {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
            flex-grow: 1;
        }

        .price-card-max ul li {
            margin: 0.8rem 0;
            color: var(--max-text-light);
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

        .price-card-max ul li i {
            color: var(--max-navy);
            margin-right: 10px;
            transition: all 0.2s ease;
        }

        .price-card-max ul li:hover {
            transform: translateX(5px);
            color: var(--max-navy);
        }

        .price-card-max ul li:hover i {
            transform: scale(1.2);
        }

        .price-card-max .btn-red,
        .price-card-max .btn-navy {
            width: 100%;
            display: block;
        }

        /* accordion */
        .accordion-max {
            background: transparent;
        }

        .accordion-max .accordion-item {
            background: white;
            border: 1px solid var(--max-border);
            border-radius: 20px !important;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .accordion-max .accordion-button {
            background: white;
            color: var(--max-text-dark);
            font-weight: 600;
            padding: 1.5rem;
            font-size: 1.2rem;
        }

        .accordion-max .accordion-button:not(.collapsed) {
            background: var(--max-navy-light);
            color: var(--max-navy-dark);
        }

        .accordion-max .accordion-button:focus {
            box-shadow: none;
            border-color: var(--max-red);
        }

        .accordion-max .accordion-body {
            background: var(--max-bg-light);
            color: var(--max-text-light);
            padding: 1.5rem;
        }

        /* footer */
        .footer-max {
            background: var(--max-bg-light);
            border-top: 1px solid var(--max-border);
        }

        .footer-max a {
            color: var(--max-text-light);
            text-decoration: none;
            margin: 0.5rem 0;
            display: inline-block;
            transition: all 0.2s ease;
        }

        .footer-max a:hover {
            color: var(--max-red);
            transform: translateX(4px);
        }

        .footer-max p {
            margin: 0.5rem 0;
        }

        .footer-max p a {
            color: var(--max-text-light);
            margin: 0;
        }

        .footer-max p a:hover {
            color: var(--max-red);
            transform: none;
        }

        /* floating buttons */
        .whatsapp-float-max {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
            z-index: 99;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }

        .whatsapp-float-max:hover {
            transform: scale(1.1) rotate(10deg);
            background: #20bd5a;
            color: white;
        }

        .back-to-top-max {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: var(--max-navy);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 99;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 128, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

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

        .back-to-top-max:hover {
            transform: translateY(-5px);
            background: var(--max-red);
            color: white;
        }

        /* tooltip */
        .tooltip-simple {
            position: relative;
            cursor: help;
        }

        .tooltip-simple:hover:after {
            content: attr(data-tooltip);
            position: absolute;
            background: var(--max-navy);
            color: white;
            font-size: 0.7rem;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font-weight: 500;
            z-index: 10;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            animation: fadeInUp 0.3s ease;
        }

        /* section titles */
        .section-title-max {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title-max h2 {
            font-size: 3rem;
            color: var(--max-text-dark);
            margin-bottom: 0.5rem;
        }

        .section-title-max p {
            color: var(--max-text-light);
            font-size: 1.2rem;
        }

        .section-title-max.text-start {
            text-align: left;
        }

        /* image cards */
        .image-card-max {
            background: white;
            border-radius: 40px;
            padding: 1.5rem;
            border: 1px solid var(--max-border);
            box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.05);
        }

        .image-card-max img {
            width: 100%;
            height: auto;
            border-radius: 24px;
        }

        /* support boxes */
        .support-box-max {
            background: white;
            border-radius: 50px;
            padding: 3rem 2rem;
            border: 1px solid var(--max-border);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
        }

        .whatsapp-badge-max {
            background: #f0f9ff;
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            border-left: 4px solid #25D366;
            font-weight: 600;
            color: var(--max-text-dark);
            display: inline-block;
        }

        .glass-card-max {
            background: white;
            border-radius: 40px;
            padding: 2rem;
            border: 1px solid var(--max-border);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.05);
        }

        /* iframe */
        #partnersIframeMax {
            background: white;
            border-radius: 40px;
            min-height: 180px;
            border: 1px solid var(--max-border);
            width: 100%;
        }

        /* ===== FREE TRIAL SECTION - EXACT MATCH TO DIAGRAM ===== */
        .free-trial-section {
            background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #f0f0ff 100%);
            padding: 3rem 0;
            margin: 1rem 0;
            position: relative;
        }

        .free-trial-badge {
            background: var(--max-red);
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 60px;
            font-weight: 700;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
        }

        .free-trial-container {
            background: white;
            border: 2px solid var(--max-red);
            border-radius: 50px;
            padding: 3rem 2rem;
            box-shadow: 0 20px 40px -10px rgba(204, 0, 0, 0.2);
            max-width: 900px;
            margin: 0 auto;
        }

        /* Inner card styling */
        .trial-card {
            background: white;
            border: 2px solid var(--max-red-light);
            border-radius: 40px;
            padding: 2rem;
            margin: 1.5rem 0;
        }

        .phone-number {
            color: var(--max-red);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .verified-badge {
            background: var(--max-navy-light);
            border: 2px solid var(--max-navy);
            color: var(--max-navy-dark);
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            font-weight: 600;
            display: inline-block;
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            border: none;
            border-radius: 40px;
            padding: 1rem;
            font-weight: 700;
            width: 100%;
            text-align: center;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #20bd5a;
            transform: scale(1.02);
            color: white;
        }

        .response-badge {
            background: white;
            border: 2px solid var(--max-navy);
            border-radius: 60px;
            padding: 0.8rem 1.5rem;
            color: var(--max-text-dark);
            display: inline-block;
            margin: 1rem 0;
        }

        .response-badge .btn-red {
            display: inline-block;
            padding: 0.3rem 1rem;
            margin: 0 0.5rem;
            cursor: default;
        }

        .security-text {
            color: var(--max-red);
            font-size: 1.1rem;
            font-weight: 700;
            text-align: center;
            margin-top: 1rem;
        }

        .security-text i {
            margin-right: 0.5rem;
        }

        @media (max-width: 768px) {
            .phone-number {
                font-size: 2rem;
            }
            
            .free-trial-container {
                padding: 2rem 1rem;
            }
            
            .trial-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .phone-number {
                font-size: 1.5rem;
            }
            
            .response-badge small {
                display: block;
                margin-top: 0.5rem;
            }
        }

        /* ===== DOWNLOAD APPS SECTION ===== */
        .download-apps-section {
            background: var(--max-bg-light);
            padding: 4rem 0;
            border-top: 1px solid var(--max-border);
            border-bottom: 1px solid var(--max-border);
        }

        .download-badge {
            background: var(--max-navy);
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 60px;
            font-weight: 700;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 128, 0.3);
        }

        /* ===== MOBILE RESPONSIVE FIXES ===== */
        @media (max-width: 1200px) {
            .stats-grid-simple {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .stats-grid-simple > div:nth-child(4) .stat-item-simple {
                border-right: none;
            }
            
            .stats-grid-simple > div:nth-child(n+5) .stat-item-simple {
                border-top: 1px solid var(--max-border);
                border-right: 1px solid var(--max-border);
            }
            
            .stats-grid-simple > div:nth-child(7) .stat-item-simple {
                border-right: none;
            }
        }

        @media (max-width: 992px) {
            .hero-title-max {
                font-size: 3.5rem;
            }
            
            .navbar-collapse {
                background: white;
                padding: 1rem;
                border-radius: 20px;
                margin-top: 1rem;
                border: 1px solid var(--max-border);
            }
        }

        @media (max-width: 768px) {
            /* Hero section */
            .hero-max {
                min-height: auto;
                padding: 4rem 0 2rem;
            }
            
            .hero-title-max {
                font-size: 2.8rem;
            }
            
            .hero-content-max p {
                font-size: 1rem !important;
            }
            
            /* Stats section */
            .stats-container {
                padding: 1.5rem 1rem;
                margin-top: -1rem;
                border-radius: 15px;
            }
            
            .stats-grid-simple {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.3rem;
            }
            
            .stat-item-simple {
                border-right: none;
                border-bottom: 1px solid var(--max-border);
                padding: 0.8rem 0.2rem;
            }
            
            .stats-grid-simple > div:nth-child(odd) .stat-item-simple {
                border-right: 1px solid var(--max-border);
            }
            
            .stats-grid-simple > div:nth-child(7) .stat-item-simple {
                border-bottom: none;
                border-right: 1px solid var(--max-border);
            }
            
            .stats-grid-simple > div:nth-child(8) .stat-item-simple {
                border-bottom: none;
                border-right: none;
            }
            
            .stat-item-simple h5 {
                font-size: 1rem;
            }
            
            .stat-item-simple p {
                font-size: 0.7rem;
            }
            
            /* Cards */
            .feature-card-max {
                padding: 1rem;
            }
            
            .feature-icon-max i {
                font-size: 2.5rem;
            }
            
            .feature-card-max h4 {
                font-size: 1rem;
            }
            
            .feature-card-max .btn-red,
            .feature-card-max .btn-outline-navy,
            .feature-card-max .btn-navy,
            .feature-card-max .btn-outline-red {
                font-size: 0.75rem;
                padding: 0.4rem;
            }
            
            /* Price cards */
            .price-card-max {
                padding: 1.5rem 1rem;
            }
            
            .price-max {
                font-size: 2.5rem;
            }
            
            .price-card-max ul li {
                font-size: 0.85rem;
            }
            
            /* Section titles */
            .section-title-max h2 {
                font-size: 2rem;
            }
            
            .display-4 {
                font-size: 2rem;
            }
            
            /* QR section */
            .support-box-max {
                padding: 2rem 1rem;
            }
            
            .support-box-max img {
                width: 180px !important;
                height: 180px !important;
            }
            
            /* Footer */
            .footer-max {
                text-align: center;
            }
            
            .footer-max .col-md-6 {
                margin-bottom: 1.5rem;
            }
            
            /* Floating buttons */
            .whatsapp-float-max {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                right: 20px;
            }
            
            .back-to-top-max {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                bottom: 80px;
                right: 20px;
            }
            
            /* Button mobile sizing */
            .btn-red, .btn-navy, .btn-outline-red, .btn-outline-navy {
                padding: 0.5rem 1rem !important;
                font-size: 0.9rem;
            }
            
            /* Free trial section */
            .free-trial-section {
                padding: 2rem 0;
            }
        }

        @media (max-width: 576px) {
            .hero-title-max {
                font-size: 2.2rem;
            }
            
            .stats-grid-simple {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-item-simple h5 {
                font-size: 0.9rem;
            }
            
            .stat-item-simple p {
                font-size: 0.65rem;
            }
            
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .section-title-max h2 {
                font-size: 1.8rem;
            }
            
            .display-4 {
                font-size: 1.8rem;
            }
            
            .fs-5 {
                font-size: 0.95rem !important;
            }
            
            .price-card-max ul li {
                font-size: 0.8rem;
            }
        }

        /* Fix for very small devices */
        @media (max-width: 380px) {
            .stats-grid-simple {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-item-simple h5 {
                font-size: 0.8rem;
            }
            
            .stat-item-simple p {
                font-size: 0.6rem;
            }
            
            .hero-title-max {
                font-size: 1.8rem;
            }
        }

        /* Landscape mode */
        @media (max-height: 600px) and (orientation: landscape) {
            .hero-max {
                min-height: auto;
                padding: 3rem 0;
            }
            
            .hero-title-max {
                font-size: 2.5rem;
            }
        }

        /* Ensure images are responsive */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Fix for iframe */
        #partnersIframeMax {
            max-width: 100%;
        }

        /* Tooltip mobile fix */
        @media (hover: none) {
            .tooltip-simple:hover:after {
                display: none;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation for cards */
        .feature-card-max, .price-card-max {
            animation: scaleIn 0.6s ease;
            animation-fill-mode: both;
        }

        /* Stagger animations for cards */
        .feature-card-max:nth-child(1) { animation-delay: 0.1s; }
        .feature-card-max:nth-child(2) { animation-delay: 0.2s; }
        .feature-card-max:nth-child(3) { animation-delay: 0.3s; }
        .feature-card-max:nth-child(4) { animation-delay: 0.4s; }
        .feature-card-max:nth-child(5) { animation-delay: 0.5s; }
        .feature-card-max:nth-child(6) { animation-delay: 0.6s; }
        .feature-card-max:nth-child(7) { animation-delay: 0.7s; }
        .feature-card-max:nth-child(8) { animation-delay: 0.8s; }
        .feature-card-max:nth-child(9) { animation-delay: 0.9s; }
        .feature-card-max:nth-child(10) { animation-delay: 1s; }
        .feature-card-max:nth-child(11) { animation-delay: 1.1s; }
        .feature-card-max:nth-child(12) { animation-delay: 1.2s; }

        .price-card-max:nth-child(1) { animation-delay: 0.1s; }
        .price-card-max:nth-child(2) { animation-delay: 0.2s; }
        .price-card-max:nth-child(3) { animation-delay: 0.3s; }
        .price-card-max:nth-child(4) { animation-delay: 0.4s; }
        .price-card-max:nth-child(5) { animation-delay: 0.5s; }
    

      /* ========================================
   MAX TV ONE - COMPLETE MOBILE RESPONSIVE CSS
   Centered Sections | Fixed Navbar | No Horizontal Scroll
   ======================================== */

:root {
    --max-red: #E50914;
    --max-red-dark: #B81A24;
    --max-red-light: #FFE5E5;
    --max-navy: #000080;
    --max-navy-dark: #000066;
    --max-navy-light: #E6E6FF;
    --max-text-dark: #333333;
    --max-text-light: #666666;
    --max-bg-light: #F8F9FA;
    --max-bg-dark: #1A1A2E;
    --max-border: #E5E5E5;
    --max-white: #FFFFFF;
    --max-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --max-shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ========== PREVENT HORIZONTAL SCROLLING ========== */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* ========== MOBILE STYLES (max-width: 768px) ========== */
@media (max-width: 768px) {
    
    body {
        overflow-x: hidden !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container,
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100%;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
    
    [class*="col-"] {
        padding-left: 8px !important;
        padding-right: 8px !important;
        width: 100%;
    }
    
    /* ========== NAVBAR - STICKY ABOVE EVERYTHING ========== */
    .sticky-top {
        position: sticky !important;
        top: 0;
        z-index: 9999 !important;
        background: var(--max-white);
        width: 100%;
    }
    
    .navbar-modern {
        background: var(--max-white) !important;
        padding: 12px 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        margin: 0;
    }
    
    .navbar-modern .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-modern img {
        width: 70px !important;
        height: auto;
    }
    
    /* Navbar Toggler */
    .navbar-toggler {
        display: block !important;
        border: 2px solid var(--max-red) !important;
        background: transparent;
        padding: 8px 12px;
        border-radius: 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    /* Collapsible Menu */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--max-white);
        padding: 20px;
        border-radius: 0 0 16px 16px;
        box-shadow: var(--max-shadow);
        z-index: 9998;
        border-top: 3px solid var(--max-red);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar-collapse.collapse {
        display: none !important;
    }
    
    .navbar-collapse.collapse.show {
        display: block !important;
    }
    
    /* Nav Links */
    .navbar-nav {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 12px 0 !important;
        font-size: 15px;
        font-weight: 500;
        color: var(--max-text-dark) !important;
        border-bottom: 1px solid var(--max-border);
        width: 100%;
    }
    
    .nav-link.active {
        color: var(--max-red) !important;
    }
    
    /* Navbar Buttons */
    .d-flex.gap-2.mt-3.mt-lg-0.ms-lg-3 {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        margin-top: 20px !important;
        padding-top: 15px;
        border-top: 1px solid var(--max-border);
        width: 100%;
    }
    
    .d-flex.gap-2.mt-3.mt-lg-0.ms-lg-3 a {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 14px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
    }
    
    .btn-red {
        background: var(--max-red);
        color: var(--max-white);
        border: none;
    }
    
    .btn-navy {
        background: var(--max-navy);
        color: var(--max-white);
        border: none;
    }
    
    /* ========== HERO SECTION ========== */
    .hero-max {
        padding: 30px 0;
        text-align: center;
    }
    
    .hero-content-max {
        text-align: center;
        padding: 0 16px;
    }
    
    .hero-title-max {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content-max .fs-4 {
        font-size: 14px !important;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
    }
    
    .hero-image-wrapper img {
        max-width: 100%;
        height: auto;
    }
    
    /* ========== STATS SECTION - CENTERED ========== */
    .stats-container {
        padding: 20px 0;
    }
    
    .stats-grid-simple {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    
    .stats-grid-simple > div {
        flex: 0 0 calc(33.33% - 12px);
        min-width: 95px;
        text-align: center;
    }
    
    .stat-item-simple {
        background: var(--max-white);
        padding: 12px 8px;
        border-radius: 12px;
        box-shadow: var(--max-shadow-sm);
        text-align: center;
    }
    
    .stat-item-simple h5 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .stat-item-simple p {
        font-size: 11px;
        margin: 0;
    }
    
    /* ========== ABOUT & QR SECTION - CENTERED ========== */
    .container.py-5 {
        padding: 30px 0 !important;
    }
    
    .container.py-5 .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .container.py-5 .col-lg-6 {
        width: 100%;
        margin-bottom: 25px;
    }
    
    .section-title-max.text-start {
        text-align: center !important;
    }
    
    .image-card-max img {
        width: 100%;
        max-width: 280px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .d-flex.gap-3 {
        justify-content: center;
    }
    
    /* ========== QR SECTION ========== */
    .support-box-max {
        text-align: center;
    }
    
    .support-box-max img {
        width: 180px !important;
        height: 180px !important;
        margin: 0 auto;
        display: block;
    }
    
    /* ========== FREE TRIAL SECTION ========== */
    .free-trial-section {
        padding: 30px 0;
    }
    
    .free-trial-container {
        text-align: center;
    }
    
    .free-trial-container .display-5 {
        font-size: 24px !important;
    }
    
    .trial-card {
        padding: 20px;
        text-align: center;
    }
    
    .phone-number {
        font-size: 18px;
        word-break: break-all;
    }
    
    .d-flex.align-items-center.justify-content-between {
        justify-content: center !important;
        flex-direction: column;
        gap: 10px;
    }
    
    .whatsapp-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .response-badge {
        display: block;
        text-align: center;
    }
    
    /* ========== DOWNLOAD APPS SECTION - CENTERED ========== */
    .download-apps-section {
        padding: 40px 0;
    }
    
    .section-title-max {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .section-title-max h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .download-apps-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 0;
    }
    
    .download-apps-section .col-lg-4,
    .download-apps-section .col-md-6 {
        width: 100%;
        max-width: 320px;
        padding: 0;
        margin: 0 auto;
    }
    
    .feature-card-max {
        text-align: center;
        padding: 20px;
        margin: 0 auto;
        width: 100%;
    }
    
    .feature-icon-max img {
        width: 100px !important;
        height: auto;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .feature-card-max h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .feature-card-max .btn-red,
    .feature-card-max .btn-outline-navy {
        display: inline-block;
        margin: 5px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* ========== ABOUT SECTIONS - CENTERED ========== */
    .container.py-5 .row.align-items-center {
        text-align: center;
    }
    
    .container.py-5 .display-4 {
        font-size: 28px;
    }
    
    .container.py-5 .fs-5 {
        font-size: 14px !important;
    }
    
    /* ========== PRICING SECTION - CENTERED ========== */
    .container.py-5 .row.g-4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }
    
    .price-card-max {
        text-align: center;
        padding: 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }
    
    .price-max {
        font-size: 32px;
    }
    
    .price-card-max ul {
        text-align: left;
        padding-left: 20px;
    }
    
    .price-card-max ul li {
        font-size: 12px;
        padding: 5px 0;
    }
    
    /* ========== FAQ SECTION ========== */
    .faq-section .container.py-5 {
        padding: 30px 0;
    }
    
    .accordion-button {
        font-size: 14px;
        padding: 12px;
    }
    
    .accordion-body {
        font-size: 13px;
        padding: 12px;
    }
    
    /* ========== FEATURE ICONS - CENTERED ========== */
    .container-fluid.py-5 .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .container-fluid.py-5 .col-6 {
        text-align: center;
        margin-bottom: 20px;
        flex: 0 0 33.33%;
    }
    
    .container-fluid.py-5 img {
        width: 60px !important;
        height: 60px !important;
        display: inline-block;
    }
    
    .container-fluid.py-5 h5 {
        font-size: 12px;
        margin-top: 8px;
    }
    
    /* ========== PARTNERS SECTION ========== */
    .partners-container {
        padding: 20px 0;
    }
    
    #4thdimensionpartnersIframe {
        height: 200px;
        border-radius: 16px;
    }
    
    /* ========== FOOTER ========== */
    .footer-max {
        padding: 30px 0 20px;
        text-align: center;
    }
    
    .footer-max .row {
        text-align: center;
    }
    
    .footer-max .col-md-6,
    .footer-max .col-lg-3 {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .footer-max h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-max a.d-block {
        display: block;
        margin: 8px 0;
        font-size: 13px;
    }
    
    .footer-max img {
        width: 180px !important;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    /* ========== FLOATING BUTTONS ========== */
    .whatsapp-float-max {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        text-decoration: none;
        box-shadow: var(--max-shadow);
    }
    
    .whatsapp-float-max i {
        font-size: 28px;
        color: var(--max-white);
    }
    
    .back-to-top-max {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        background: var(--max-red);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 9999;
        box-shadow: var(--max-shadow);
    }
    
    .back-to-top-max i {
        color: var(--max-white);
        font-size: 20px;
    }
    
    .back-to-top-max.show {
        opacity: 1;
        visibility: visible;
    }
    
    /* ========== COPYRIGHT ========== */
    .container-fluid.py-3.text-center {
        padding: 15px !important;
    }
    
    .container-fluid.py-3.text-center p {
        font-size: 11px;
    }
}

/* ========== TABLET STYLES (769px - 1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid-simple {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .stats-grid-simple > div {
        flex: 0 0 calc(16.66% - 15px);
        min-width: 110px;
    }
    
    .download-apps-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-card-max {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .price-card-max {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-title-max {
        font-size: 48px;
    }
}

/* ========== SMALL MOBILE (max-width: 480px) ========== */
@media (max-width: 480px) {
    .stats-grid-simple > div {
        flex: 0 0 calc(50% - 10px);
        min-width: 130px;
    }
    
    .hero-title-max {
        font-size: 28px;
    }
    
    .display-4 {
        font-size: 24px !important;
    }
    
    .section-title-max h2 {
        font-size: 22px;
    }
    
    .price-max {
        font-size: 28px;
    }
    
    .free-trial-container .display-5 {
        font-size: 20px !important;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .container-fluid.py-5 .col-6 {
        flex: 0 0 50%;
    }
    
    .container-fluid.py-5 img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .whatsapp-float-max {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top-max {
        width: 40px;
        height: 40px;
        bottom: 15px;
        left: 15px;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center-mobile {
    text-align: center;
}

.mx-auto-mobile {
    margin-left: auto;
    margin-right: auto;
}

.w-100-mobile {
    width: 100%;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card-max,
.price-card-max,
.image-card-max,
.support-box-max {
    animation: fadeInUp 0.5s ease forwards;
}

/* ========== SAFE AREA INSETS ========== */
@supports (padding: max(0px)) {
    .whatsapp-float-max {
        right: max(20px, env(safe-area-inset-right));
        bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .back-to-top-max {
        left: max(20px, env(safe-area-inset-left));
        bottom: max(20px, env(safe-area-inset-bottom));
    }
}