    

    .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;
    }
    
    .download-btn {
        background: #10b981;
        color: white;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
    
    .download-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
        color: white;
    }
    
    .lang-btn {
        background: #e5e7eb;
        color: #374151;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .lang-btn:hover {
        background: #d1d5db;
        transform: translateY(-2px);
    }
    
    .pulse-animation {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        }
    }
    
    .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;
    }

    /* Features Section */
    .features-section {
        margin-top: 60px;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .features-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 40px;
        color: #111827;
        font-weight: 800;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(0,0,0,0.02);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 70px;
        background: #eff6ff;
        border-radius: 16px;
    }

    .feature-card h3 {
        margin: 0 0 15px 0;
        font-size: 1.4rem;
        color: #1f2937;
        font-weight: 700;
    }

    .feature-card p {
        color: #4b5563;
        line-height: 1.6;
        margin: 0;
        font-size: 1.05rem;
    }

    /* Premium Features */
    .premium-section {
        margin-top: 80px;
        padding: 60px 40px;
        background: linear-gradient(to right, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.05));
        border-radius: 24px;
        border: 1px solid rgba(251, 191, 36, 0.2);
    }

    .premium-title {
        color: #b45309 !important;
    }

    .premium-icon {
        animation: sparkle 2s infinite alternate;
        display: inline-block;
    }

    @keyframes sparkle {
        0% { transform: scale(1); opacity: 0.8; }
        100% { transform: scale(1.2); opacity: 1; text-shadow: 0 0 10px rgba(251, 191, 36, 0.8); }
    }

    .premium-card {
        border: 1px solid rgba(251, 191, 36, 0.3);
        background: linear-gradient(145deg, #ffffff, #fffbeb);
    }

    .premium-card:hover {
        box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
    }