:root {
            --primary: #1D4ED8;
            --primary-light: #60A5FA;
            --primary-dark: #1b399d;
            --secondary: #2563EB;
            --accent: #BFDBFE;
            --bg: #F8FAFC;
            --bg-light: #FFFFFF;
            --text: #1E293B;
            --text-muted: #64748B;
            --success: #10B981;
            --warning: #F59E0B;
            --border: #E2E8F0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* Header Custom - FIXED */
        .header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
            padding: 0 !important;
        }
        .header.scrolled {
            background: rgba(255,255,255,0.98);
            box-shadow: var(--shadow);
        }
        .header .container {
            padding-left: 0;
            padding-right: 0;
        }
        .navbar {
            height: 72px;
            padding: 0 1rem;
            text-align: center;
            justify-content: center;
            position: relative;
        }
        @media (min-width: 992px) {
            .navbar {
                padding: 0 2rem;
            }
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            padding: 0;
        }
        .logo-icon {
            max-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            color: var(--text);
            font-weight: 500;
            position: relative;
            transition: color 0.2s;
            text-decoration: none;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        /* Custom Buttons - FIXED */
        .btn-custom {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 0.875rem;
        }
        .btn-primary-custom {
            background: var(--gradient);
            color: white;
            box-shadow: var(--shadow);
            border: none;
        }
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .btn-secondary-custom {
            background: var(--bg);
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-secondary-custom:hover {
            background: var(--primary);
            color: white;
        }

        /* Hero Section - FIXED */
        .hero {
            padding: 7.5rem 0 5rem;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -6.25rem;
            left: -12.5rem;
            width: 37.5rem;
            height: 37.5rem;
            background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -6.25rem;
            right: -12.5rem;
            width: 37.5rem;
            height: 37.5rem;
            background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.75rem;
            align-items: center;
            position: relative;
            z-index: 1;
            gap: 3.75rem;
            align-items: center;
        }
        @media (max-width: 991.98px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .hero-image { order: -1; }
        }
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.25rem;
        }
        .hero p {
            font-size: clamp(1.125rem, 2.5vw, 1.5rem);
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 31.25rem;
        }
        .hero-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .hero-stats {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        .stat {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .stat-icon {
            width: 1.5rem;
            height: 1.5rem;
            background: var(--primary);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
        }
        .stat-text {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Phone Mockup - FIXED */
        .phone-mockup {
            width: 20.81rem;
            height: 36.8rem;
            background: linear-gradient(145deg, #f0f0f0, #ffffff);
            border-radius: 2.5rem;
            padding: 0;
            box-shadow: var(--shadow-xl);
            position: relative;
            border: 0.5rem solid #e0e0e0;
            border-bottom-width: 0.75rem;
            border-bottom-color: #c0c0c0;
            margin: 0 auto;
        }
        @media (max-width: 991.98px) {
            .phone-mockup {
                width: 15.625rem;
                height: 31.25rem;
            }
        }
        .phone-screen {
            width: 100%;
            height: 100%;
            background: var(--bg-light);
            border-radius: 1.875rem;
            overflow: hidden;
            position: relative;
        }
        .qr-preview {
            position: absolute;
            bottom: 1.25rem;
            right: 1.25rem;
            width: 6.25rem;
            height: 6.25rem;
            background: white;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            padding: 0.5rem;
        }

        /* Floating Icons - FIXED */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            top: 0;
            left: 0;
        }
        .floating-icon {
            position: absolute;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--gradient);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--shadow-lg);
            animation: float 6s ease-in-out infinite;
        }
        .floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
        .floating-icon:nth-child(3) { bottom: 30%; left: 8%; animation-delay: 2s; }
        .floating-icon:nth-child(4) { bottom: 15%; right: 5%; animation-delay: 3s; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-1.25rem); }
        }

        /* Section Headers */
        .section {
            padding: 6.25rem 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3.75rem;
        }
        .badge-custom {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--accent);
            color: var(--primary);
            border-radius: 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .section-header h2 {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .section-header p {
            color: var(--text-muted);
            max-width: 37.5rem;
            margin: 0 auto;
            font-size: 1.125rem;
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            border-radius: 1.25rem;
            padding: 2rem;
            border: 1px solid var(--border);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0.25rem;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-0.5rem);
            box-shadow: var(--shadow-xl);
        }
        .feature-card:hover::before { transform: scaleX(1); }
        .feature-icon {
            width: 3.75rem;
            height: 3.75rem;
            background: var(--gradient);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            box-shadow: var(--shadow);
        }
        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .feature-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Experience Section */
        .experience-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.75rem;
            align-items: center;
            min-width: 0;
        }
        .experience-content > * {
            min-width: 0;
        }
        @media (max-width: 991.98px) {
            .experience-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }
        .experience-image {
            position: relative;
            overflow: hidden;
            max-width: 100%;
            width: 100%;
        }
        .experience-image::before {
            content: '';
            position: absolute;
            inset: -1.25rem;
            background: var(--gradient);
            border-radius: 1.5rem;
            opacity: 0.1;
            z-index: -1;
        }
        .experience-text h2 {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            margin-bottom: 1.25rem;
        }
        .experience-text p {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        /* Benefits List */
        .benefits-list {
            list-style: none;
            padding: 0;
        }
        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 0.75rem;
            border: 1px solid var(--border);
        }
        .benefit-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--success);
            border-radius: 0.625rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }
        .benefit-text h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        .benefit-text p {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* Steps */
        .steps {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            margin-top: 3.75rem;
        }
        .step {
            display: grid;
            grid-template-columns: 5rem 1fr;
            gap: 1.875rem;
            align-items: flex-start;
        }
        @media (max-width: 767.98px) {
            .step {
                grid-template-columns: 3.75rem 1fr;
                gap: 1.25rem;
            }
        }
        .step-number {
            width: 3.75rem;
            height: 3.75rem;
            background: var(--gradient);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: var(--shadow);
        }
        .step-content h3 {
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .step-content p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 1.25rem;
            padding: 2rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            height: 100%;
        }
        .testimonial-card:hover { transform: translateY(-0.5rem); }
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }
        .testimonial-avatar {
            width: 3.75rem;
            height: 3.75rem;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            font-weight: 600;
        }
        .testimonial-info h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0;
        }
        .testimonial-info p {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin: 0;
        }
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text);
            font-style: italic;
            margin-bottom: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.25rem;
        }
        .star {
            width: 1.25rem;
            height: 1.25rem;
            background: var(--warning);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.625rem;
        }

        /* CTA Section */
        .cta {
            padding: 6.25rem 0;
            background: var(--gradient);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .cta-content {
            position: relative;
            z-index: 1;
        }
        .cta h2 {
            font-size: clamp(2rem, 5vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1.25rem;
        }
        .cta p {
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 37.5rem;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.25rem;
        }

        /* Footer */
        .footer {
            padding: 3.75rem 0 1.875rem;
            background: var(--text);
            color: white;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3.75rem;
            margin-bottom: 2.5rem;
        }
        @media (max-width: 991.98px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }
        @media (max-width: 767.98px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.875rem;
            }
        }
        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }
        .footer-links h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }
        .footer-links ul {
            padding-left: 0;
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.875rem;
            margin-top: 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        @media (max-width: 767.98px) {
            .footer-bottom {
                flex-direction: column;
                gap: 1.25rem;
                text-align: center;
            }
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 0.625rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-0.25rem);
        }

        /* Animations */
        .fade-in { opacity: 0; transform: translateY(1.25rem); transition: all 0.6s ease; }
        .slide-in-left { opacity: 0; transform: translateX(-3.125rem); transition: all 0.6s ease; }
        .slide-in-right { opacity: 0; transform: translateX(3.125rem); transition: all 0.6s ease; }
        .scale-in { opacity: 0; transform: scale(0.9); transition: all 0.6s ease; }
        .fade-in.visible, .slide-in-left.visible, .slide-in-right.visible, .scale-in.visible {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        /* Glossy Effect */
        .glossy::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
            border-radius: inherit;
            opacity: 0.7;
        }

        /* 3D Effect */
        .card-3d {
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }

        /* Navbar Toggler Styling */
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231D4ED8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 1.5rem;
            height: 1.5rem;
        }

        /* Mobile Responsive Navbar */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                margin-top: 1rem;
                border-radius:1rem 1rem;
                border:1px solid var(--border);
                padding: 1rem;
                position:absolute;
                width:100%;
                top:65px;
                box-shadow: var(--shadow);
            }
            .nav-links {
                flex-direction: column;
                gap: 1rem;
                margin: 1rem 0;
                padding-bottom: 1rem;
                border-bottom: 1px solid var(--border);
            }
            .nav-links li a {
                display: block;
                padding: 0.5rem 0;
            }
            .btn-custom {
                width: 100%;
                justify-content: center;
            }
        }

        /* ========== PRICING SECTION ========== */
.bg-gradient {
    background: var(--gradient) !important;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: 1rem;
}

.pricing-card {
    border-radius: 1.25rem !important;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl) !important;
}

.pricing-card-featured {
    transform: scale(1.03);
    border: 2px solid var(--primary) !important;
}

.pricing-badge {
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 1;
}

.pricing-features li i {
    font-size: 1.1rem;
}

.pricing-features li.text-muted i {
    color: var(--text-muted) !important;
}

.card-header {
    border-bottom: 1px solid var(--border) !important;
}
/* FAQ Accordion Styling */
#faqAccordion {
    max-width: 800px;
    margin: 0 auto;
}

#faqAccordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 0.75rem !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

#faqAccordion .accordion-item:last-child {
    margin-bottom: 0;
}

#faqAccordion .accordion-header {
    background: transparent;
    border-bottom: none !important;
}

#faqAccordion .accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text);
    background: white;
    border: none;
    box-shadow: none;
    font-size: 1.1rem;
    border-radius: 0.75rem !important;
    transition: all 0.3s ease;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background: var(--accent);
    color: var(--primary);
    box-shadow: none;
}

#faqAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231D4ED8'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    width: 1.25rem;
    height: 1.25rem;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

#faqAccordion .accordion-collapse {
    border: none;
}

#faqAccordion .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    background: white;
}