/* ==========================================================
   GENERATE PAGE — PAGE-SPECIFIC SPACING
========================================================== */

/* Reduce hero height and vertical breathing room */

.hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 32px;
}

.hero-container {
    max-width: var(--container);
}

#identity,
#verification {
    padding-top: 24px;
}

#identity > .section-container > p,
#verification > .section-container > p {
    margin-bottom: 24px;
}

.usage-allocation {
    margin: 28px 0;
}

.usage-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 0;

    border-bottom: 1px solid var(--border);
}

.usage-row:last-child {
    border-bottom: none;
}

.usage-row span {
    color: var(--muted);
}

.usage-row strong {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    font-weight: 600;
}

/* ----------------------------------------------------------
   MOBILE — ALIGN WITH HOME PRICING CARD
---------------------------------------------------------- */

@media (max-width: 620px) {

    .pricing-card {
        padding: 28px;
    }

    .pricing-card h3 {
        margin-bottom: 16px;
        font-size: 20px;
        line-height: 1.15;
    }

    .pricing-card p {
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.7;
    }

    .usage-allocation {
        margin: 22px 0;
    }
    
    .usage-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 9px 0;
    }
    
    .usage-row strong {
        font-size: 20px;
        margin: 0;
        padding: 0;
        text-align: right;
        position: relative;
        right: 22px;
    }

}