/* ============================================
   PRICING – ceník stránka
   ============================================ */

.pricing-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

/* ---- Header ---- */
.pricing-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 0.5rem;
}

.pricing-page-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--c-steel);
    margin-top: 1rem;
}

/* ---- Tables ---- */
.pricing-table {
    margin-bottom: 2.5rem;
}

.pricing-table-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--c-ink);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table tr {
    border-bottom: 1px solid var(--c-cloud);
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 0.75rem 0;
    vertical-align: baseline;
}

.pricing-item {
    font-size: 0.95rem;
    color: var(--c-charcoal);
    line-height: 1.5;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--c-steel);
    text-align: right;
    white-space: nowrap;
    padding-left: 1.5rem;
}

/* ---- Included list ---- */
.pricing-included {
    margin-bottom: 3rem;
}

.pricing-included ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.pricing-included li {
    font-size: 0.95rem;
    color: var(--c-charcoal);
    line-height: 1.5;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--c-mist);
}

.pricing-included li:last-child {
    border-bottom: none;
}

.pricing-included li::before {
    content: "\2713";
    color: var(--c-steel);
    margin-right: 0.6rem;
    font-weight: 600;
}

/* ---- CTA ---- */
.pricing-page-cta {
    text-align: center;
    padding-top: 1rem;
}

.pricing-page-cta p {
    font-size: 1rem;
    color: var(--c-steel);
    margin-bottom: 1.2rem;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .pricing-page {
        padding: 3rem 1.5rem 4rem;
    }

    .pricing-table-title {
        font-size: 1.2rem;
    }

    .pricing-item {
        font-size: 0.88rem;
    }

    .pricing-value {
        font-size: 0.9rem;
    }
}
