/* Pricing Page Specific Styles */
.pricing-section {
    padding: 8rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.pricing-card {
    background: #4a4a4a;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 900px;
}

.pricing-card.basic {
    border-radius: 1rem 0 0 1rem;
}

.pricing-card.advanced {
    border-radius: 0 1rem 1rem 0;
}

.pricing-card.intermediate {
    background: var(--primary-color);
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.4);
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
}

.plan-icon svg {
    width: 100%;
    height: 100%;
}

.plan-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.plan-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    min-height: 60px;
}

.plan-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.features-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.plan-features .check {
    color: #00c853;
    margin-right: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.intermediate .plan-features .check {
    color: white;
}

.plan-investment {
    text-align: center;
    margin-top: auto;
    padding-top: 2rem;
}

.investment-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.investment-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.investment-time {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.pricing-card.intermediate .plan-button {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.pricing-card.intermediate .plan-button:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 2rem;
    }
    
    .pricing-card {
        border-radius: 1rem !important;
        min-height: auto;
    }
    
    .pricing-card.intermediate {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 6rem 0 3rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .plan-title {
        font-size: 1.75rem;
    }
    
    .investment-price {
        font-size: 2rem;
    }
}