/* ==========================================================================
   Pricing Section Styles
   ========================================================================== */

/* Pricing Container */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Pricing Card */
.pricing-card {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.6) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.pricing-card.popular {
    border-color: rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(17, 24, 39, 0.8) 50%, rgba(31, 41, 55, 0.6) 100%);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Pricing Content */
.pricing-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.pricing-commitment {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

/* Pricing Features */
.pricing-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    space-y: 0.75rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #d1d5db;
}

.pricing-feature i {
    flex-shrink: 0;
    width: 1rem;
    margin-top: 0.125rem;
}

/* Pricing Objective */
.pricing-objective {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.9rem;
    color: #e5e7eb;
    line-height: 1.5;
}

/* Pricing Guarantee */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
}

/* Method Section Styles */
.method-step {
    position: relative;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.method-step:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
}

.method-step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-step-icon {
    margin: 1rem 0;
}

.method-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.method-step-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .method-step {
        padding: 1.5rem;
    }
}

/* Animation Classes */
@keyframes animate-scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scale-in {
    animation: animate-scale-in 0.6s ease-out forwards;
}