.pricing-hero {
    background: var(--beige);
}

.pricing-hero-wrap {
    padding: 88px 0 40px;
    text-align: center;
}

.pricing-hero-subtitle {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.65;
    font-size: 1.125rem;
}

.pricing-hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-hero-tags .tags {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 12px;
}

.pricing-compare .section-title,
.pricing-compare .section-subtitle {
    text-align: center;
}

.pricing-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.pricing-table th,
.pricing-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.pricing-table thead th {
    background: #f9fafb;
    font-weight: 700;
    text-align: left;
    color: #0f2230;
}

.pricing-table tbody th {
    font-weight: 600;
    color: #0f2230;
    text-align: left;
    width: 40%;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-callout {
    margin-top: 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.pricing-callout h3 {
    margin: 0 0 6px;
    color: var(--green-900);
}

.pricing-callout p {
    margin: 0;
}

.pricing-callout-actions .btn {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .pricing-hero-wrap {
        text-align: left;
        padding: 72px 0 36px;
    }

    .pricing-hero-subtitle {
        margin: 0;
    }

    .pricing-hero-tags {
        justify-content: flex-start;
    }

    .pricing-callout {
        flex-direction: column;
        align-items: flex-start;
    }
}

