
        ./* ================= GLOBAL ================= */
        body {
            font-family: "Inter", sans-serif;
            background: #f8f9fc;
        }

        /* ================= HERO ================= */
        .hero-section {
            background: linear-gradient(135deg, #6a5cff, #8f7bff);
            color: #fff;
            padding: 100px 20px 80px;
        }

        .hero-section h1 {
            font-weight: 800;
            font-size: 2.5rem;
        }

        .hero-section h1 span {
            color: #ffeaa7;
        }

        .hero-section p {
            max-width: 600px;
            margin: 20px auto;
            opacity: 0.9;
        }

        .hero-buttons .btn {
            margin: 10px;
        }

        .hero-badge {
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 30px;
        }

        .network-icons span {
            background: rgba(255,255,255,0.2);
            padding: 6px 14px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
        }

        /* ================= TRUST ================= */
        .trust-strip {
            background: #fff;
            padding: 20px 0;
            font-weight: 600;
        }

        /* ================= SERVICES ================= */
        .services-section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .service-card {
            background: #fff;
            padding: 30px 20px;
            border-radius: 16px;
            text-align: center;
            height: 100%;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        }

        .service-card i {
            font-size: 36px;
            color: #6a5cff;
            margin-bottom: 15px;
        }

        /* ================= HOW ================= */
        .how-section {
            background: #fff;
            padding: 60px 0;
        }

        .step-card {
            padding: 30px;
        }

        .step-card span {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: #6a5cff;
            color: #fff;
            border-radius: 50%;
            line-height: 45px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* ================= RESELLER ================= */
        .reseller-section {
            background: linear-gradient(135deg, #f1f3ff, #ffffff);
            padding: 60px 20px;
        }

        .reseller-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .reseller-list li {
            margin: 10px 0;
            font-weight: 500;
        }

        /* ================= CTA ================= */
        .final-cta {
            background: #6a5cff;
            color: #fff;
            padding: 60px 20px;
        }

        /* ================= FOOTER ================= */
        .site-footer {
            background: #0f1222;
            color: #cbd0ff;
            padding: 50px 20px 30px;
        }

        .footer-title {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-text {
            font-size: 14px;
            line-height: 1.7;
            opacity: 0.85;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd0ff;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .site-footer hr {
            border-color: rgba(255,255,255,0.1);
            margin: 30px 0 15px;
        }

        .footer-bottom {
            text-align: center;
            font-size: 13px;
            opacity: 0.8;
        }


        /* ================= ABOUT ================= */
        .about-section {
            padding: 60px 0;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            margin: 8px 0;
            font-weight: 500;
        }

        .about-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .about-card i {
            font-size: 48px;
            color: #6a5cff;
            margin-bottom: 15px;
        }

        /* ================= DOWNLOAD ================= */
        .download-section {
            background: linear-gradient(135deg, #6a5cff, #8f7bff);
            color: #fff;
            padding: 60px 20px;
        }

        .download-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            color: #000;
            padding: 12px 18px;
            border-radius: 14px;
            text-decoration: none;
        }

        .store-btn i {
            font-size: 28px;
        }

        .phone-mockup {
            font-size: 100px;
            opacity: 0.8;
        }

        /* ================= FAQ ================= */
        .faq-section {
            background: #fff;
            padding: 60px 0;
        }

        .accordion-button {
            font-weight: 600;
        }


        /* ================= ANIMATION BASE ================= */
        .animate {
            opacity: 0;
            transform: translateY(25px);
            transition: all 0.7s ease;
        }

        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Variants */
        .animate-left {
            transform: translateX(-30px);
        }

        .animate-right {
            transform: translateX(30px);
        }

        .animate-scale {
            transform: scale(0.9);
        }

        .accordion-button {
            pointer-events: auto !important;
            z-index: 2;
        }

        .animate {
            will-change: transform, opacity;
        }

        .modal-content {
            border: none;
        }

        .modal-body h6 {
            margin-top: 20px;
            font-weight: 600;
        }

        .modal-dialog {
            padding-bottom: env(safe-area-inset-bottom);
        }




        @media (prefers-reduced-motion: reduce) {
            .animate {
                transition: none;
                transform: none;
                opacity: 1;
            }
        }
