/* ==========================================================
   HOMEPAGE — COSTI CHIARI
========================================================== */

.idv-home-pricing {
    position: relative;
    padding-top: clamp(72px, 7vw, 104px);
    padding-bottom: clamp(80px, 8vw, 112px);
    background:
        linear-gradient(
            180deg,
            rgb(110 91 255 / 4%),
            rgb(217 78 214 / 2%)
        ),
        var(--surface);
}
.idv-home-pricing__grid {
    align-items: start;
}

.idv-home-price {
    height: 100%;
}

/* ==========================================================
   GRIGLIA
========================================================== */

.idv-home-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
}

/* ==========================================================
   CARD
========================================================== */

.idv-home-price {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: clamp(26px, 3vw, 34px);
    background: rgb(255 255 255 / 96%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 34px rgb(16 24 40 / 6%);
    transition:
        transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 240ms ease,
        box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.idv-home-price::after {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    content: "";
    background:
        radial-gradient(
            circle,
            rgb(110 91 255 / 9%),
            transparent 70%
        );
    border-radius: 50%;
    pointer-events: none;
}

.idv-home-price:hover {
    border-color: rgb(110 91 255 / 22%);
    box-shadow: 0 20px 48px rgb(16 24 40 / 10%);
    transform: translateY(-4px);
}

/* ==========================================================
   CONTENUTO CARD
========================================================== */

.idv-home-price__eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    color: var(--text-title);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.idv-home-price__amount {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 0;
    color: var(--text-title);
    font-size: clamp(2.9rem, 4.5vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.idv-home-price__amount span {
    margin-top: 7px;
    color: var(--color-primary);
    font-size: 0.46em;
    line-height: 1;
}

.idv-home-price__detail {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.55;
}

/* ==========================================================
   CARD IN EVIDENZA
========================================================== */

.idv-home-price--featured {
    background:
        linear-gradient(
            135deg,
            rgb(110 91 255 / 8%),
            rgb(217 78 214 / 8%)
        ),
        var(--surface);
    border-color: rgb(110 91 255 / 22%);
    box-shadow: 0 16px 42px rgb(110 91 255 / 12%);
}

.idv-home-price--featured::after {
    background:
        radial-gradient(
            circle,
            rgb(217 78 214 / 14%),
            transparent 68%
        );
}

.idv-home-price__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 7px 11px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );
    border-radius: 999px;
    box-shadow: 0 8px 20px rgb(110 91 255 / 18%);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

/* ==========================================================
   FOOTER DELLA SEZIONE
========================================================== */

.idv-home-pricing__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid var(--border-color);
}

.idv-home-pricing__note {
    max-width: 650px;
    margin: 0;
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.6;
}

.idv-home-pricing__footer .idv-button {
    flex: 0 0 auto;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 980px) {

    .idv-home-pricing__grid {
        grid-template-columns: 1fr;
    }

    .idv-home-price {
        padding: 30px;
    }

    .idv-home-price__amount {
        font-size: 4rem;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 640px) {

    .idv-home-pricing {
        padding-top: 64px;
        padding-bottom: 72px;
    }

    .idv-home-pricing__grid {
        gap: 16px;
        margin-top: 34px;
    }

    .idv-home-price {
        padding: 25px 22px;
    }

    .idv-home-price__eyebrow {
        margin-bottom: 16px;
    }

    .idv-home-price__amount {
        font-size: clamp(3rem, 15vw, 4rem);
    }

    .idv-home-pricing__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-top: 26px;
        padding-top: 22px;
    }

    .idv-home-pricing__footer .idv-button {
        width: 100%;
    }
}

/* ==========================================================
   TOUCH / ACCESSIBILITÀ
========================================================== */

@media (hover: none) {

    .idv-home-price:hover {
        border-color: var(--border-color);
        box-shadow: 0 12px 34px rgb(16 24 40 / 6%);
        transform: none;
    }

    .idv-home-price--featured:hover {
        border-color: rgb(110 91 255 / 22%);
        box-shadow: 0 16px 42px rgb(110 91 255 / 12%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .idv-home-price {
        transition: none;
    }

    .idv-home-price:hover {
        transform: none;
    }
}