/* Modern Pricing Section */
.pricing {
    padding: 120px 60px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e0e7ff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.pricing h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.pricing .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 80px;
    font-weight: 400;
}

/* Pricing Cards Container */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
}

/* Individual Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Featured Card */
.pricing-card.featured {
    border: 2px solid rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.08);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow:
        0 25px 80px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.4);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }
}

/* Plan Name */
.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 15px;
}

.pricing-card.featured .plan-name {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Price Display */
.price {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    vertical-align: top;
    margin-right: 5px;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.pricing-card.featured .amount {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

/* Plan Description */
.plan-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.features-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.features-list li.included::before {
    background: linear-gradient(135deg, #10b981, #059669);
    content: '✓';
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.features-list li.not-included::before {
    background: rgba(255, 255, 255, 0.1);
    content: '−';
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-list li.not-included {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.features-list li:hover {
    color: white;
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 15px;
    border-radius: 8px;
}

/* Plan Buttons */
.btn-plan {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-plan:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-plan:hover::before {
    width: 300px;
    height: 300px;
}

.featured-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: 2px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.featured-btn:hover {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    margin-top: 60px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    max-width: 500px;
    margin: 0 auto 20px;
}

.guarantee-icon {
    font-size: 1.5rem;
    animation: shield 3s ease-in-out infinite;
}

@keyframes shield {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.pricing-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing {
        padding: 80px 40px;
    }

    .pricing h2 {
        font-size: 2.8rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 20px;
    }

    .pricing h2 {
        font-size: 2.2rem;
    }

    .pricing-cards {
        gap: 25px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 3rem;
    }

    .features-list {
        gap: 10px;
    }

    .features-list li {
        font-size: 0.95rem;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
    }
}