/* ================= PRICING SECTION ================= */

.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-text);
}

.pricing-kicker .line {
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.pricing-header h2 {
    margin-top: 16px;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-text);
}

.pricing-header h2 span {
    color: var(--primary);
}

/* pricing rows */
.pricing-list {
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid #e5e7eb;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.2fr 2.2fr 1fr 1.2fr;
    align-items: center;
    padding: 32px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-text);
}

.plan-desc {
    font-size: 15px;
    color: var(--muted);
}

.plan-price {
    font-size: 18px;
    color: var(--dark-text);
}

.plan-price strong {
    font-size: 44px;
    font-weight: 900;
    margin-right: 6px;
}

.plan-price span {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--dark-text);
}

/* buttons */
.plan-action {
    text-align: right;
}

.btn-outline {
    padding: 12px 20px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-solid {
    padding: 12px 22px;
    background: var(--secondary);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
    transition: .25s;
}

.btn-solid:hover {
    background: var(--primary);
}

/* featured row */
.pricing-row.featured {
    background: rgba(30,144,255,.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }

    .plan-action {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 520px) {
    .pricing-header h2 {
        font-size: 38px;
    }

    .plan-price strong {
        font-size: 36px;
    }
}
