/* Our Prices */

.prices-page {
    padding: 48px 0 80px;
    background: #fff;
}

.prices-hero {
    text-align: center;
    margin-bottom: 40px;
}

.prices-hero h1 {
    font-family: var(--font-sans);
    font-size: 36px;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.prices-hero__rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.prices-hero__rule::before,
.prices-hero__rule::after {
    content: "";
    width: 72px;
    height: 1px;
    background: #e5e7eb;
}

.prices-hero__rule span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
}

.prices-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.prices-nav {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 18px 8px;
    box-shadow: 0 8px 24px rgba(19, 58, 38, 0.06);
}

.prices-nav a {
    display: block;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    border-radius: 8px;
}

.prices-nav a:hover {
    color: var(--green);
}

.prices-nav a.is-active {
    color: var(--green);
    font-weight: 600;
}

.prices-panel h2 {
    font-family: var(--font-sans);
    font-size: 28px;
    margin: 4px 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eceff2;
}

.prices-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.prices-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid #eceff2;
    font-size: 15px;
    color: #8b96a3;
}

.prices-list strong {
    color: var(--blue);
    font-weight: 700;
    white-space: nowrap;
}

.prices-empty {
    color: var(--body);
    margin: 0 0 28px;
}

.prices-cta {
    border-radius: 999px;
    padding: 12px 26px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 13px;
}

@media (max-width: 800px) {
    .prices-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .prices-hero h1 {
        font-size: 28px;
    }

    .prices-panel h2 {
        font-size: 22px;
    }
}
