/* =========================================================
   CryptoTasse — Prezzi 3
   Professionisti
   ========================================================= */

.ct-prezzi-pro {
    width: 100%;
    padding: 28px 20px 0;
}

.ct-prezzi-pro__inner {
    display: grid;

    /*
     * Un po' più spazio alla colonna destra:
     * serve soprattutto per mantenere l'ultima descrizione
     * su una sola riga.
     */
    grid-template-columns: minmax(0, 0.88fr) 1px minmax(0, 1.22fr);

    gap: 38px;
    align-items: start;

    width: 100%;
    max-width: 1120px;

    margin: 0 auto;
    padding: 26px 38px 30px;

    border-radius: 12px;

    background:
        linear-gradient(
            110deg,
            rgba(16, 185, 129, 0.085) 0%,
            rgba(16, 185, 129, 0.025) 100%
        );
}


/* =========================================================
   SINISTRA
   ========================================================= */

.ct-prezzi-pro__intro {
    align-self: start;
}

.ct-prezzi-pro__eyebrow {
    margin: 0 0 16px !important;

    color: #065F46;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 1.8px;
}


/*
 * Più distacco dall'eyebrow.
 * Il titolo rimane grande ma acquista maggiore centralità
 * visiva all'interno della colonna sinistra.
 */
.ct-prezzi-pro__title {
    margin: 0 0 20px !important;

    color: #071B4A !important;

    font-family: inherit;
    font-size: 38px !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;

    letter-spacing: -0.7px !important;
}

.ct-prezzi-pro__text {
    max-width: 440px;

    margin: 0 0 28px !important;

    color: #31446F;

    font-size: 19px;
    font-weight: 400;
    line-height: 1.48;
}


/* =========================================================
   CTA
   ========================================================= */

.ct-prezzi-pro__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    min-height: 56px;

    padding: 14px 24px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #065F46 0%,
            #10B981 100%
        );

    color: #ffffff !important;

    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;

    letter-spacing: 0.1px;

    text-decoration: none !important;

    box-shadow:
        0 5px 12px rgba(6, 95, 70, 0.10);

    transition:
        filter 220ms ease,
        box-shadow 220ms ease;
}

.ct-prezzi-pro__cta-arrow {
    display: inline-block;

    font-size: 24px;
    font-weight: 400;
    line-height: 1;

    transition: transform 220ms ease;
}


@media (hover: hover) and (pointer: fine) {

    .ct-prezzi-pro__cta:hover {
        color: #ffffff !important;

        filter: brightness(1.06);

        box-shadow:
            0 7px 17px rgba(6, 95, 70, 0.16);
    }

    .ct-prezzi-pro__cta:hover .ct-prezzi-pro__cta-arrow {
        transform: translateX(4px);
    }

}


/* =========================================================
   SEPARATORE
   ========================================================= */

.ct-prezzi-pro__separator {
    width: 1px;
    height: 100%;

    min-height: 250px;

    background: rgba(7, 27, 74, 0.12);
}


/* =========================================================
   DESTRA
   ========================================================= */

.ct-prezzi-pro__features {
    display: flex;
    flex-direction: column;

    gap: 21px;

    align-self: start;

    min-width: 0;
}

.ct-prezzi-pro__feature {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);

    gap: 17px;

    align-items: center;

    min-width: 0;
}


/* =========================================================
   ICONA
   ========================================================= */

.ct-prezzi-pro__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: rgba(16, 185, 129, 0.11);
}

.ct-prezzi-pro__icon svg {
    width: 29px;
    height: 29px;

    fill: none;

    stroke: #065F46;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   TESTI DESTRA
   ========================================================= */

.ct-prezzi-pro__feature-copy {
    min-width: 0;
}

.ct-prezzi-pro__feature-copy h3 {
    margin: 0 0 4px !important;

    color: #071B4A !important;

    font-family: inherit;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

.ct-prezzi-pro__feature-copy p {
    margin: 0 !important;

    color: #53658D;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.42;
}


/*
 * Su desktop le descrizioni rimangono su una sola riga.
 * In particolare:
 * "Se sei un commercialista crypto, possiamo collaborare sui nostri clienti."
 */
@media (min-width: 1025px) {

    .ct-prezzi-pro__feature-copy p {
        white-space: nowrap;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .ct-prezzi-pro__inner {
        grid-template-columns: minmax(0, 0.9fr) 1px minmax(0, 1.1fr);

        gap: 30px;

        padding: 26px 30px 28px;
    }

    .ct-prezzi-pro__eyebrow {
        margin-bottom: 14px !important;
    }

    .ct-prezzi-pro__title {
        margin-bottom: 17px !important;

        font-size: 34px !important;
    }

    .ct-prezzi-pro__text {
        font-size: 18px;
    }

    .ct-prezzi-pro__cta {
        font-size: 17px !important;
    }

    .ct-prezzi-pro__feature-copy h3 {
        font-size: 17px !important;
    }

    .ct-prezzi-pro__feature-copy p {
        font-size: 15px;

        white-space: normal;
    }

    .ct-prezzi-pro__icon {
        width: 50px;
        height: 50px;
    }

    .ct-prezzi-pro__icon svg {
        width: 27px;
        height: 27px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ct-prezzi-pro {
        padding: 24px 16px 0;
    }

    .ct-prezzi-pro__inner {
        display: block;

        padding: 24px 21px 27px;
    }

    .ct-prezzi-pro__eyebrow {
        margin-bottom: 12px !important;

        font-size: 11px;
    }

    .ct-prezzi-pro__title {
        margin-bottom: 15px !important;

        font-size: 29px !important;
        line-height: 1.15 !important;
    }

    .ct-prezzi-pro__text {
        max-width: none;

        margin-bottom: 23px !important;

        font-size: 17px;
        line-height: 1.45;
    }

    .ct-prezzi-pro__cta {
        width: 100%;

        min-height: 54px;

        padding: 13px 18px;

        font-size: 17px !important;
    }

    .ct-prezzi-pro__cta-arrow {
        font-size: 23px;
    }

    .ct-prezzi-pro__separator {
        width: 100%;
        height: 1px;
        min-height: 0;

        margin: 27px 0;

        background: rgba(7, 27, 74, 0.12);
    }

    .ct-prezzi-pro__features {
        gap: 20px;
    }

    .ct-prezzi-pro__feature {
        grid-template-columns: 48px minmax(0, 1fr);

        gap: 14px;
    }

    .ct-prezzi-pro__icon {
        width: 48px;
        height: 48px;
    }

    .ct-prezzi-pro__icon svg {
        width: 25px;
        height: 25px;
    }

    .ct-prezzi-pro__feature-copy h3 {
        margin-bottom: 3px !important;

        font-size: 16px !important;
    }

    .ct-prezzi-pro__feature-copy p {
        font-size: 14px;
        line-height: 1.4;

        white-space: normal;
    }

}