    

    .landing-container {
        max-width: 1100px;
        margin: 0 auto;
        font-family: 'Outfit', sans-serif;
        color: #1f2937;
        padding-bottom: 50px;
    }
    
    .top-bar {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
    }
    
    .btn {
        padding: 12px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #4f46e5, #7c3aed);
        color: white;
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
        color: white;
    }
    
    .hero {
        text-align: center;
        padding: 80px 20px 60px;
    }
    
    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 20px;
        background: -webkit-linear-gradient(45deg, #2563eb, #db2777);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.3rem;
        color: #4b5563;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Animations */
    .animate-fade-up {
        animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        opacity: 0;
        transform: translateY(40px);
    }
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Pricing Section */
    .pricing-section {
        padding: 60px 20px;
        text-align: center;
    }
    
    .pricing-cards {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .glass-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 24px;
        padding: 40px 30px;
        width: 320px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
        text-align: left;
    }
    
    .glass-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }
    
    .glass-card.premium {
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(236, 72, 153, 0.05));
        border: 1px solid rgba(236, 72, 153, 0.3);
        position: relative;
    }
    
    .premium-badge {
        position: absolute;
        top: -15px;
        right: 20px;
        background: #db2777;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }
    
    .price {
        font-size: 3rem;
        font-weight: 800;
        margin: 20px 0;
        color: #111;
    }
    .price span {
        font-size: 1.2rem;
        color: #6b7280;
        font-weight: 500;
    }
    
    .glass-card ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .glass-card ul li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.05rem;
        color: #374151;
    }
    
    .glass-card ul li svg {
        width: 20px;
        height: 20px;
        color: #10b981;
    }
    
    /* Footer Links */
    .landing-footer {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
        padding: 40px 20px;
        border-top: 1px solid rgba(0,0,0,0.05);
        margin-top: 60px;
    }
    
    .landing-footer a {
        color: #6b7280;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    
    .landing-footer a:hover {
        color: #4f46e5;
    }

    /* Translate Widget Tweaks */
    .goog-te-gadget {
        font-family: 'Outfit', sans-serif !important;
        color: transparent !important;
    }
    .goog-te-gadget .goog-te-combo {
        padding: 8px;
        border-radius: 8px;
        border: 1px solid #d1d5db;
        font-family: 'Outfit', sans-serif;
        outline: none;
    }