a {
    text-decoration: none;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #007cba;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #007cba;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1rem;
}

.plan-tag {
    background: #f0f9ff;
    color: #007cba;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.plan-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

.plan-type {
    color: #666;
    font-size: 0.9rem;
}

.price-box {
    text-align: center;
    margin: 0.5rem 0;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #007cba;
    line-height: 1;
}

.plan-features {
    font-weight: 300;
    color: #718096;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.plan-description {
    margin-bottom: 2rem;
}

.plan-description p {
    margin-bottom: 6px;
}

.get-started-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #005a87 0%, #003a5e 100%);
    transform: translateY(-2px);
    color: white;
}

/* Pricing Responsive Design */
@media (min-width: 768px) {
    .pricing-grid {
        flex-direction: row;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        gap: 2rem;
    }

    .pricing-card {
        max-width: 390px;
    }
}
