 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.5;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 3rem; letter-spacing: -0.02em; }
        h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; letter-spacing: -0.01em; }
        h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
        p { margin-bottom: 1rem; color: #64748b; font-size: 0.9rem; line-height: 1.6; }

        .text-center { text-align: center; }
        .text-gradient {
            background: linear-gradient(135deg, #6366F1, #10B981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 0.9rem;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #6366F1, #10B981);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4); }

        .btn-secondary {
            background: white;
            color: #6366F1;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }
        .btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

        .btn-outline {
            background: transparent;
            color: #6366F1;
            border: 2px solid #6366F1;
        }
        .btn-outline:hover { background: #6366F1; color: white; }

        /* Header */
        header {
            padding: 16px 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            height: 80px;
        }
        header.scrolled { padding: 12px 0; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1e293b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #6366F1, #10B981);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
        }

        .logo-img {
            height: 38px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links a {
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .nav-links a:hover { color: #6366F1; }

        .nav-actions { display: flex; gap: 12px; }
        .mobile-menu { display: none; font-size: 1.4rem; cursor: pointer; }

        /* Hero Section */
        .hero {
            padding-top: 140px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #F0F4FF 0%, #FDF2F8 50%, #F0F4FF 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg-shape {
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .hero-text { flex: 1; }
        .hero-text p { font-size: 1rem; margin-bottom: 1.8rem; max-width: 90%; }

        .hero-buttons { display: flex; gap: 15px; margin-bottom: 2.5rem; flex-wrap: wrap; }
        .hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
        .stat-value { font-size: 1.6rem; font-weight: 800; color: #6366F1; }
        .stat-label { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }

        .hero-visual { flex: 1; position: relative; min-height: 400px; }
        
        /* Credit Card */
        .credit-card {
            width: 323px;
            height: 204px;
            background: linear-gradient(135deg, #1E293B, #0F172A);
            border-radius: 16px;
            padding: 20px 24px;
            color: white;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .credit-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .credit-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
        
        .card-brand {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            opacity: 0.8;
        }
        
        .card-chip {
            width: 50px;
            height: 38px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 8px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .card-number {
            font-family: 'Courier New', monospace;
            font-size: 1.2rem;
            letter-spacing: 3px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            word-spacing: 5px;
        }
        
        .card-details {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .card-label {
            font-size: 0.65rem;
            opacity: 0.6;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        
        .card-value {
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .payment-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            border-radius: 20px;
            padding: 15px 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            min-width: 180px;
            animation: float 6s ease-in-out infinite 2s;
        }
        
        .payment-badge-icon {
            width: 45px;
            height: 45px;
            background: #10B981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .upi-badge {
            position: absolute;
            top: -20px;
            left: -20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 15px;
            padding: 12px 18px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            animation: float 6s ease-in-out infinite 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #6366F1, #10B981);
        }
        .feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6366F1, #10B981);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
        .feature-icon i { font-size: 1.8rem; color: white; }

        /* Subscription Plans */
        .subscription-plans { background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%); }
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .plan-card {
            background: white;
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            text-align: center;
        }
        .plan-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
        .plan-card.popular {
            border: 2px solid #6366F1;
            transform: scale(1.02);
        }
        .plan-card.popular:hover { transform: scale(1.03) translateY(-10px); }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: linear-gradient(135deg, #6366F1, #10B981);
            color: white;
            padding: 5px 35px;
            font-size: 0.7rem;
            font-weight: 700;
            transform: rotate(45deg);
            text-transform: uppercase;
        }

        .plan-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #6366F1, #10B981);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .plan-icon i { font-size: 1.8rem; color: white; }

        .plan-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
        .plan-price { font-size: 2.2rem; font-weight: 800; color: #6366F1; }
        .plan-price small { font-size: 0.8rem; font-weight: 500; color: #64748b; }
        .plan-expiry { font-size: 0.75rem; color: #64748b; margin: 15px 0; padding-bottom: 15px; border-bottom: 1px solid #CBD5E1; }
        
        .plan-features { list-style: none; margin: 20px 0; text-align: left; }
        .plan-features li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
        .plan-features li i { color: #10B981; font-size: 0.8rem; width: 20px; }

        .plan-btn { width: 100%; padding: 12px; font-size: 0.85rem; margin-top: 20px; }
        .plan-status {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 700;
            margin-top: 15px;
            background: #10B981;
            color: white;
        }

        /* Integration */
        .integration { background: white; }
        .integration-content {
            display: flex;
            align-items: center;
            gap: 70px;
        }

        .integration-steps { flex: 1; }
        .step {
            display: flex;
            margin-bottom: 35px;
            gap: 20px;
            align-items: flex-start;
        }
        .step-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #6366F1, #10B981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .step-content h3 { font-size: 1.2rem; margin-bottom: 5px; }
        .step-content p { font-size: 0.85rem; margin-bottom: 0; }

        .app-mockup {
            width: 280px;
            height: 520px;
            background: #0F172A;
            border-radius: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            margin: 0 auto;
        }
        .app-screen {
            background: linear-gradient(145deg, #667eea, #764ba2);
            padding: 30px 20px;
            height: 100%;
            color: white;
        }

        /* Security */
        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .security-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        .security-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
        
        .security-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6366F1, #10B981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .security-icon i { font-size: 1.8rem; color: white; }

        /* CTA */
        .cta {
            background: linear-gradient(135deg, #4F46E5, #059669);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .cta::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        .cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
        .cta h2 { color: white; margin-bottom: 1.2rem; }
        .cta p { color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; font-size: 1rem; }
        .cta .btn { background: white; color: #4F46E5; padding: 14px 35px; font-size: 1rem; }

        /* Footer */
        footer {
            background: #0F172A;
            color: white;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-column h3 { color: white; font-size: 1.1rem; margin-bottom: 20px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.85rem; transition: all 0.3s ease; }
        .footer-links a:hover { color: white; transform: translateX(5px); display: inline-block; }
        
        .social-links { display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
        .social-links a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .social-links a:hover { background: #6366F1; transform: translateY(-3px); }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* WhatsApp */
        .whatsapp-premium {
            position: fixed;
            right: 25px;
            bottom: 25px;
            padding: 12px 22px;
            border-radius: 50px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
            z-index: 9999;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        .whatsapp-premium:hover { transform: translateY(-5px) scale(1.05); }

        /* Responsive */
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .hero-content { flex-direction: column; text-align: center; }
            .hero-text p { max-width: 100%; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { display: flex; justify-content: center; margin-top: 40px; }
            .integration-content { flex-direction: column; }
            .footer-content { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-actions { display: none; }
            .mobile-menu { display: block; }
            section { padding: 50px 0; }
            .hero { padding-top: 110px; }
            .plans-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .footer-column .logo { justify-content: center; }
            .social-links { justify-content: center; }
            .credit-card { width: 280px; height: 177px; padding: 15px 18px; }
            .card-number { font-size: 1rem; letter-spacing: 2px; }
            .payment-badge, .upi-badge { display: none; }
        }

        @media (max-width: 576px) {
            .container { padding: 0 16px; }
            .credit-card { width: 100%; max-width: 323px; margin: 0 auto; }
            .hero-stats { gap: 20px; justify-content: center; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .hero-buttons .btn { width: 100%; max-width: 250px; }
        }
        
        .hero-new{
    padding:140px 0 100px;
    background:linear-gradient(
    135deg,
    #0f172a,
    #1e293b,
    #4f46e5
    );
    color:#fff;
}

.hero-new .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:50px;
    backdrop-filter:blur(10px);
    margin-bottom:20px;
}

.hero-new h1{
    font-size:65px;
    line-height:1.1;
}

.hero-new h1 span{
    color:#22c55e;
}

.hero-new p{
    color:#cbd5e1;
    font-size:18px;
    margin:25px 0;
}

.dashboard-card{
    width:400px;
    padding:30px;
    border-radius:25px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
}

.amount{
    font-size:42px;
    font-weight:700;
}

.success-box{
    background:#22c55e;
    padding:15px;
    border-radius:12px;
    margin:20px 0;
}
@media (max-width:768px){

    .hero-new .container{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero-new h1{
        font-size:36px;
        line-height:1.2;
    }

    .hero-new p{
        font-size:16px;
    }

    .dashboard-card{
        width:100%;
        max-width:350px;
        margin:auto;
    }

    .hero-btns{
        flex-direction:column;
        width:100%;
    }

    .hero-btns a{
        width:100%;
    }
}

.onboarding-section{
    padding:100px 0;
    background:#f8fafc;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.section-badge{
    background:#e0e7ff;
    color:#4f46e5;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.section-heading h2{
    margin-top:20px;
    font-size:48px;
    font-weight:800;
}

.section-heading h2 span{
    color:#4f46e5;
}

.onboarding-grid{
    display:grid;
    grid-template-columns:1fr 450px;
    gap:60px;
    align-items:center;
}

.steps-wrapper{
    display:grid;
    gap:25px;
}

.step-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    display:flex;
    gap:20px;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.step-card:hover{
    transform:translateY(-5px);
}

.step-icon{
    width:65px;
    height:65px;
    background:linear-gradient(135deg,#4f46e5,#22c55e);
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
}

.dashboard-card{
    background:#0f172a;
    color:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.dashboard-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
}

.live-badge{
    color:#22c55e;
    font-weight:700;
}

.dashboard-amount{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin:30px 0;
}

.stat-box{
    background:rgba(255,255,255,.08);
    padding:15px;
    border-radius:15px;
}

.stat-box strong{
    display:block;
    font-size:22px;
}

.success-alert{
    background:#22c55e;
    padding:15px;
    border-radius:12px;
    margin-top:20px;
}

.dashboard-btn{
    width:100%;
    margin-top:25px;
    border:none;
    background:#fff;
    color:#4f46e5;
    padding:15px;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
}

@media(max-width:768px){

    .onboarding-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:32px;
    }

    .dashboard-preview{
        order:-1;
    }

    .dashboard-card{
        padding:25px;
    }

    .dashboard-amount{
        font-size:32px;
    }
}
.security-section{
    padding:100px 0;
    background:#f8fafc;
}

.security-header{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.security-badge{
    background:#e0e7ff;
    color:#4f46e5;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.security-header h2{
    font-size:48px;
    font-weight:800;
    margin:20px 0;
}

.security-header span{
    color:#4f46e5;
}

.security-wrapper{
    display:grid;
    grid-template-columns:1fr 450px;
    gap:50px;
    align-items:center;
}

.security-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.security-box:hover{
    transform:translateY(-5px);
}

.security-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,#4f46e5,#22c55e);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.trust-card{
    background:#0f172a;
    color:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.trust-icon{
    font-size:55px;
    color:#22c55e;
    margin-bottom:20px;
}

.trust-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:30px 0;
}

.trust-item{
    background:rgba(255,255,255,.08);
    padding:15px;
    border-radius:15px;
}

.trust-item strong{
    display:block;
    font-size:22px;
}

.security-status{
    background:#22c55e;
    padding:12px;
    border-radius:12px;
    font-weight:600;
}

.pulse{
    width:10px;
    height:10px;
    background:#fff;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
    animation:pulse 1s infinite;
}

@keyframes pulse{
    0%{opacity:1;}
    50%{opacity:.3;}
    100%{opacity:1;}
}

@media(max-width:768px){

    .security-wrapper{
        grid-template-columns:1fr;
    }

    .security-header h2{
        font-size:32px;
    }

    .trust-stats{
        grid-template-columns:1fr;
    }
}
.premium-cta{
    padding:100px 0;
    background:#f8fafc;
}

.premium-cta-box{
    background:linear-gradient(135deg,#4f46e5,#7c3aed);
    border-radius:30px;
    padding:70px 40px;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.premium-cta-box::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.premium-cta-box::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}

.cta-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    font-size:14px;
    margin-bottom:20px;
}

.premium-cta h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
    color:#fff;
}

.premium-cta h2 span{
    color:#a7f3d0;
}

.premium-cta p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.9);
    font-size:18px;
}

.cta-stats{
    display:flex;
    justify-content:center;
    gap:40px;
    margin:40px 0;
    flex-wrap:wrap;
}

.cta-stat{
    min-width:120px;
}

.cta-stat h3{
    font-size:34px;
    margin:0;
    color:#fff;
}

.cta-stat span{
    color:rgba(255,255,255,.8);
    font-size:14px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn-primary{
    background:#fff;
    color:#4f46e5;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.cta-btn-outline{
    border:2px solid rgba(255,255,255,.4);
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.cta-btn-primary:hover,
.cta-btn-outline:hover{
    transform:translateY(-3px);
    transition:.3s;
}

@media(max-width:768px){

    .premium-cta-box{
        padding:50px 25px;
    }

    .premium-cta h2{
        font-size:32px;
        line-height:1.2;
    }

    .premium-cta p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-btn-primary,
    .cta-btn-outline{
        width:100%;
    }
}
.premium-features{
    padding:100px 0;
    background:#ffffff;
}

.feature-header{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.feature-badge{
    display:inline-block;
    background:#eef2ff;
    color:#4f46e5;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.feature-header h2{
    font-size:48px;
    font-weight:800;
    margin:20px 0;
}

.feature-header h2 span{
    color:#4f46e5;
}

.feature-header p{
    color:#64748b;
    font-size:18px;
}

.premium-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.premium-feature-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.premium-feature-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#4f46e5,#22c55e);
}

.premium-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.premium-feature-card i{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    background:linear-gradient(135deg,#4f46e5,#22c55e);
    margin-bottom:20px;
}

.premium-feature-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.premium-feature-card p{
    color:#64748b;
    line-height:1.7;
}

@media(max-width:992px){

    .premium-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .feature-header h2{
        font-size:32px;
    }

    .premium-feature-grid{
        grid-template-columns:1fr;
    }

    .premium-feature-card{
        padding:25px;
    }

}