/* Pagina stage /prezzi */
:is(body.body-stage, body.body-dashboard) .stage-pricing-page {
    width: 100%;
    box-sizing: border-box;
    padding-top: calc(var(--stage-space-section-y) + var(--stage-navbar-height, 4.25rem));
    padding-bottom: var(--stage-space-section-y);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(2.6rem, 4vw, 3.6rem);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__title {
    margin: 0;
    font-size: var(--stage-fs-h1);
    line-height: 1.05;
    max-width: 60rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__lead {
    margin: 0;
    max-width: 44rem;
    color: rgba(0, 0, 0, 0.78);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group__eyebrow {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__billing {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__billing-label,
:is(body.body-stage, body.body-dashboard) .stage-pricing-page__billing-note {
    margin: 0;
    font-size: var(--stage-fs-label);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.56);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__billing-label.is-active,
:is(body.body-stage, body.body-dashboard) .stage-pricing-page__billing-note.is-active {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__switch {
    border: 0;
    padding: 2px;
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background: #1f6fff;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__switch.is-yearly {
    justify-content: flex-end;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__switch-thumb {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #fff;
    display: block;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__paths {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    max-width: 52rem;
}

@media (min-width: 48rem) {
    :is(body.body-stage, body.body-dashboard) .stage-pricing-page__paths {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__path {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.35rem;
    font-size: var(--stage-fs-p);
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.82);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__path strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: var(--stage-fs-p-large);
    color: #000;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(3.5rem, 6vw, 5.5rem);
    padding-top: clamp(2rem, 4vw, 3.5rem);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3.5vw, 3.5rem);
    width: 100%;
    padding-top: clamp(2rem, 3.5vw, 3rem);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group:first-child {
    padding-top: 0;
    border-top: 0;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group--custom {
    gap: 1.5rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group__title {
    margin: 0;
    font-size: var(--stage-fs-h3);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group__text {
    margin: 0;
    font-size: var(--stage-fs-p-small);
    color: #000;
    height: 80px;
    max-width: 500px;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group__cards {
    display: grid;
    gap: 3rem;
    align-items: stretch;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group__cards > .stage-pricing-card {
    height: 100%;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group__cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-group__cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.35rem;
    background: #fff;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card--custom .stage-pricing-card__cta {
    margin-top: auto;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 36.8px;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    height: 40px;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__title {
    margin: 0;
    font-size: var(--stage-fs-h5);
    font-weight: 600;
    height: 40px;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__subtitle {
    margin: 0;
    font-size: var(--stage-fs-p);
    color: #000;
    min-height: 80px;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: var(--border-3);
    font-size: var(--stage-fs-p);
    line-height: 1.3;
    color: #fff;
    background: #f300b4;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__price-meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60px;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__price-row {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.35rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__price {
    margin: 0;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__period {
    margin: 0;
    font-size: clamp(1.2rem, 1.9vw, 1.6rem);
    font-weight: 500;
    line-height: 1.1;
    color: rgba(0, 0, 0, 0.72);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card[data-pricing-designer-prepaid] .stage-pricing-card__period {
    font-size: clamp(0.625rem, 0.85vw, 0.75rem);
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__billed {
    margin: 0;
    font-size: var(--stage-fs-p-small);
    color: rgba(0, 0, 0, 0.6);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__saving {
    margin: 0;
    font-size: var(--stage-fs-p-small);
    color: rgba(0, 0, 0, 0.6);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__cta {
    width: 100%;
    justify-content: center;
    min-height: 2.55rem;
    font-size: var(--stage-fs-btn-secondary);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__features {
    margin: 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature--includes {
    align-items: flex-start;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature-includes {
    margin: 0;
    flex: 1;
    min-width: 0;
    padding: 0.4rem 0.6rem;
    border-radius: 0.35rem;
    font-size: var(--stage-fs-p-small);
    font-weight: 700;
    line-height: 1.35;
    color: #000;
    background: rgba(0, 0, 0, 0.06);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature-text {
    margin: 0;
    font-size: var(--stage-fs-p-small);
    line-height: 1.45;
    color: #000;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature-info {
    position: relative;
    border: 0;
    background: transparent;
    padding: 0;
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.55);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature-info-icon {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature-tooltip {
    position: absolute;
    right: -6px;
    bottom: calc(100% + 8px);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: var(--stage-fs-label);
    line-height: 1.2;
    color: #fff;
    background: #111;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
    z-index: 10;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature-info:hover .stage-pricing-card__feature-tooltip,
:is(body.body-stage, body.body-dashboard) .stage-pricing-card__feature-info:focus-visible .stage-pricing-card__feature-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__compare-cta-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__footer-text {
    margin: 0;
    text-align: center;
    font-size: var(--stage-fs-p-small);
    color: #000;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.7rem;
    padding: var(--space-2) var(--space-4);
    border: 0;
    border-radius: 0.25rem;
    background: #000;
    color: #fff;
    font-size: var(--stage-fs-p);
    cursor: pointer;
    text-decoration: none;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-page__footer-cta:hover,
:is(body.body-stage, body.body-dashboard) .stage-pricing-page__footer-cta:focus-visible {
    color: #fff;
    text-decoration: none;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-compare {
    margin-top: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.5rem;
    padding: 1rem;
    background: #fff;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-compare__title {
    margin: 0 0 0.75rem;
    font-size: var(--stage-fs-p-large);
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-compare__table-wrap {
    width: 100%;
    overflow-x: auto;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-compare__table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-compare__table th,
:is(body.body-stage, body.body-dashboard) .stage-pricing-compare__table td {
    padding: 0.7rem 0.55rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: var(--stage-fs-p);
    text-align: center;
}

:is(body.body-stage, body.body-dashboard) .stage-pricing-compare__table th:first-child,
:is(body.body-stage, body.body-dashboard) .stage-pricing-compare__table td:first-child {
    text-align: left;
}

@media (max-width: 75rem) {
    :is(body.body-stage, body.body-dashboard) .stage-pricing-group__cards--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 56.25rem) {
    :is(body.body-stage, body.body-dashboard) .stage-pricing-page {
        padding-block: 64px;
    }

    :is(body.body-stage, body.body-dashboard) .stage-pricing-page__inner {
        gap: 1rem;
    }

    :is(body.body-stage, body.body-dashboard) .stage-pricing-group__cards--two,
    :is(body.body-stage, body.body-dashboard) .stage-pricing-group__cards--three {
        grid-template-columns: minmax(0, 1fr);
    }

    :is(body.body-stage, body.body-dashboard) .stage-seo-hero {
        padding-block: 64px;
    }

    :is(body.body-stage, body.body-dashboard) .stage-seo-hero__inner {
        gap: 22px;
    }

    :is(body.body-stage, body.body-dashboard) .stage-seo-showcase {
        padding-block: 64px;
    }

    :is(body.body-stage, body.body-dashboard) .stage-seo-showcase__inner {
        gap: 48px;
    }

    :is(body.body-stage, body.body-dashboard) .stage-seo-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
}

/* Account /account/plans: public/css/dashboard/dashboard-plans-pricing.css */
