/* ================================
   PRICING / PLANS SECTION REDESIGN
================================ */

.section-plans {
    background: #0f1a20;
    padding: 6rem 1rem;
    text-align: center;
}

.section-plans h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: #f5c98a;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #a3b8c2;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center; /* helps scaling center card */
}

.pricing-card {
    background: #182832;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

/* Feature the middle plan (Standard) */
.pricing-card:nth-child(2) {
    background: linear-gradient(180deg, #182832, #1b303d);
    border: 2px solid #f5c98a;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(245, 201, 138, 0.15);
}

.pricing-card:nth-child(2):hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5c98a;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #a3b8c2;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-card ul li {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card ul li::before {
    content: '✓';
    color: #f5c98a;
    font-weight: bold;
    font-size: 1.2rem;
}

.join-btn {
    text-align: center;
    padding: 14px 0;
    background: transparent;
    border: 2px solid #f5c98a;
    color: #f5c98a;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card:nth-child(2) .join-btn,
.join-btn:hover {
    background: #f5c98a;
    color: #0f1a20;
    box-shadow: 0 5px 15px rgba(245, 201, 138, 0.3);
}

@media (max-width: 900px) {
    .pricing-card:nth-child(2) {
        transform: scale(1);
    }
    .pricing-card:nth-child(2):hover {
        transform: translateY(-10px);
    }
}
