@font-face {
    font-family: 'Albert Sans';
    src: url("../font/Albert_Sans/AlbertSans-VariableFont_wght-xROUmBY.ttf");
    /*font-weight: 125 900;*/
    /*font-stretch: 75% 125%;*/
    font-style: normal;
}

@font-face {
    font-family: 'Albert Sans';
    src: url("../font/Albert_Sans/AlbertSans-Italic-VariableFont_wght-BQyYOM-.ttf");
    /*font-weight: normal;*/
    font-style: italic;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url("../font/Instrument_Serif/InstrumentSerif-Regular-t93eboO.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url("../font/Instrument_Serif/InstrumentSerif-Italic-KF1PBOY.ttf");
    font-weight: normal;
    font-style: italic;
}

:root {
    --primary-100: #5480E4;
    --primary-30: #849AC6;
    --primary-10: #D7E2F9;

    --secondary-100: #001846;
    --secondary-10: #E3E5E8;

    --grey-100: #7083A9;
    --grey-10: #E3E5E8;


    --success-100: #2FCF79;
    --success-10: #E8F1E8;

    --alert-100: #F47775;
    --alert-10: #F7E9E9;

    --warning-100: #FFAF66;
    --warning-10: #FCF2EC;


    /*--white: #E8F1E8;*/
    --black: #000000;
    --white: white;
    --purple: #3B3C7D;
    --violet: #A996C3;
    --orange: #F68C4F;
    --peach: #E1B6A4;

    /*--background: #EBF0FA;*/
    /*--background: white;*/
    --background: black;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Albert Sans", sans-serif;
    box-sizing: border-box;
}

/*b {*/
/*    font-family: "AlbertSansBold", sans-serif;*/
/*}*/

/*em {*/
/*    font-family: "AlbertSansItalic", sans-serif;*/
/*}*/

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.6em;
}

table {
    font-size: 0.9rem;
}

th {
    color: var(--grey-100);
}

h1, h2, h3, h4 {
    color: var(--secondary-100);
    font-weight: 400;
    font-family: "Instrument Serif", serif;
}

h1 em, h2 em, h3 em, h4 em {
    font-family: "Instrument Serif", serif;
}

body {
    /*background-color: var(--background);*/
}

/* container
   -------------------------------------------------------------------------------- */
.container {
    position: relative;
    top: 112px;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Aggiunto per nascondere il contenuto che esce dai bordi */
}

.body-container {
    flex: 1;
    /* needed to prevent pages with a very small height and browsers not supporting flex */
    min-height: 600px;
    padding: 20px 40px;
    justify-content: space-between;
}

.only-desktop {
    display: block;
}

.only-mobile {
    display: none;
}

/* HEADER
   -------------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px 0 128px;
    background-color: var(--white);
    color: black;
    width: 100%;
    z-index: 999;
    height: 112px;
    box-sizing: border-box; /* Aggiunto per includere padding e bordo nella larghezza totale */
    overflow: hidden; /* Nasconde il contenuto che potrebbe uscire fuori dai bordi */
}

.header__logo {
    height: 36px;
}

.nav__title {
    flex: 1;
    font-size: 1rem;
    letter-spacing: 0.15rem;
    text-align: center;
}

.nav__menu {
    flex: 4;
    text-align: center;
}

.nav__logo {
    gap: 4px;
    /*margin: 0 32px;*/
}

.nav-app {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-right: 8px;
}

.nav-app__title {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "Instrument Serif", serif;
    letter-spacing: -1px;
}

.nav-list {
    align-items: center;
}

.nav-list__item {
    list-style: none;
    display: inline-grid;
    /*padding: 0 20px;*/
    min-height: 4rem;
    border-radius: 16px;
    align-items: center;
    text-align: center;
    /*background-color: var(--primary-30);*/
}

.nav-list__item--menu {
    /*min-width: 6rem;*/
    font-weight: 400;
    margin-right: 40px;
}

.nav-locale {
    display: flex;
    gap: 16px;
}

.nav-locale__item {
    list-style: none;
    display: inline-grid;
    min-height: 4rem;
    border-radius: 16px;
    align-items: center;
    text-align: center;
    /*background-color: var(--primary-30);*/
}

/* MAIN
   -------------------------------------------------------------------------------- */
.main {
    /*margin-top: 112px;*/
}

/* FOOTER
   -------------------------------------------------------------------------------- */

/* vorrei che il footer nel caso la pagina sia più corta dell'altezza dello schermo che sia in fondo allo schermo */
footer {
    flex-shrink: 0;
}

.footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "logo copyright right"
        "logo designed   right";
    column-gap: 16px;
    row-gap: 16px;
    color: var(--black);
    background: var(--white);
    z-index: 999;
    padding: 24px 32px;
    box-sizing: border-box;
}

.footer__logo {
    grid-area: logo;
    align-self: center;
}

.footer__left-text {
    grid-area: copyright;
    align-self: end;
}

.footer__right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
}

.footer__designed {
    grid-area: designed;
    align-self: start;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer__hr--white {
    border: none;
    border-top: 1px solid var(--white);
}

.footer__copyright {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__resources {
    display: flex;
    gap: 8px;
}

.footer__socials-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* FOREVER
   -------------------------------------------------------------------------------- */
.landing-forever {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-left: 128px;
    text-align: center;
    background-color: var(--purple);
    color: var(--white);
}

.landing-forever__container {
    flex: 1;
    display: flex;
}

.landing-forever__text {
    flex: 1;
    /*padding: 0 96px;*/
    text-align: left;
    max-width: 500px;
}

.landing-forever__title {
    font-family: "Instrument Serif", serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    margin: 16px 0;
    letter-spacing: -1px;
}

.landing-forever__subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 16px 0;
    display: block;
}

.landing-forever__button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 24px;
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 0.9rem;
    text-align: center;
    width: 200px;
    cursor: pointer;
    margin-top: 16px;
}

.landing-forever__video-container {
    flex: 1;
}

.landing-forever__video {
    width: 100%;
    height: 500px;
    object-fit: cover; /* Ridimensiona l'immagine per adattarla all'elemento */
    object-position: top; /* Aggiunto per posizionare il video in alto */
    display: block;       /* solitamente i video si comportano come inline-block per evitare la linea in basso lo metto come block */
}

/* WHAT IS
   -------------------------------------------------------------------------------- */
.landing-what {
    padding: 128px;
    display: flex;
    justify-content: center;
    background-color: var(--white);
    gap: 48px;
}

.landing-what__title {
    flex: 1;
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    font-weight: 400;
    color: black;
    margin: 16px 0;
    align-items: center;
}

.landing-what__subtitle {
    flex: 2;
    font-size: 1rem;
    font-weight: 400;
    margin: 16px 0;
    display: block;
}

.landing-what__subtitle--bold {
    font-weight: 700;
}

/* HOW IT WORKS
   -------------------------------------------------------------------------------- */
.landing-how {
    padding: 128px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-direction: column;

    background: linear-gradient(180.04deg, #3B3C81 6.48%, #FF853D 122.49%);
    linear-gradient(180.04deg, color(display-p3 0.231 0.235 0.490) 6.48%, color(display-p3 0.965 0.549 0.310) 122.49%);
}

.landing-how__title {
    flex: 1;
    font-family: "Instrument Serif", serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    margin: 16px 0;
    align-items: center;
}

.landing-how__cards {
    display: flex;
    justify-content: start;
    gap: 48px;
}

.landing-how__card {
    position: relative; /* Aggiunto per il posizionamento assoluto del titolo */
    width: 357px;
    height: 508px;
    border-radius: 16px;
    overflow: hidden; /* Ritaglia l'immagine in eccesso */
}

.landing-how__card-image {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.landing-how__card-title {
    color: var(--white);
    position: absolute;
    font-size: 2rem;
    font-weight: 400;
    bottom: 32px;
    margin: 0 32px;
    letter-spacing: -1px;
}

/* INFO
   -------------------------------------------------------------------------------- */

.landing-info {
    padding: 128px;
    display: flex;
    justify-content: center;
    background-color: var(--white);
    gap: 48px;
}

.landing-info__card {
    flex: 1;
    border-radius: 16px;
    padding: 32px 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 500px;
}

.landing-info__card-1 {
    margin-bottom: 128px;
    background-size: cover; /* Adatta l'immagine all'intero div */
    background-position: center; /* Centra l'immagine */
    background-repeat: no-repeat; /* Evita che l'immagine si ripeta */
}

.landing-info__card-2 {
    margin-top: 128px;
    background-color: var(--purple);
}

.landing-info__card-title {
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    font-weight: 400;
    bottom: 32px;
    /*letter-spacing: -1px;*/
    color: var(--white);
}

.landing-info__card-subtitle {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    color: var(--white);
}

/* TRAILER
   -------------------------------------------------------------------------------- */
.landing-trailer {
    text-align: center;
}

.landing-trailer__video-container {
    position: relative;
    text-align: center;
    margin: 0 auto;
    max-width: 848px;
}

.landing-trailer__video {
    text-align: center;
}

.landing-trailer__video-controls {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.landing-trailer__button-mute-unmute {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
}

/* ABOUT
   -------------------------------------------------------------------------------- */
.landing-about {
    padding: 128px;
    display: flex;
    justify-content: center;
    background-color: var(--white);
    gap: 48px;
}

.landing-about__text {
    flex: 1;
    padding: 0 96px;
    text-align: left;
    max-width: 600px;
}

.landing-about__title {
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--black);
    margin: 16px 0;
    letter-spacing: -1px;
}

.landing-about__subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 32px 0;
    display: block;
}

.landing-about__button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 24px;
    background-color: transparent;
    border: 1px solid black;
    font-size: 0.9rem;
    text-align: center;
    width: 200px;
    cursor: pointer;
    margin-top: 16px;
}

.landing-about__image-container {
    flex: 1;
    max-width: 400px;
}

.landing-about__image {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
}

/* REVIEW
   -------------------------------------------------------------------------------- */
.landing-review {
    padding: 128px;
    background-color: var(--white);
}

.landing-review__title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.landing-review__title {
    font-family: "Instrument Serif", serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--black);
    margin: 16px 0;
    letter-spacing: -1px;
}

.landing-review__buttons {
    display: flex;
    gap: 16px;
}

.landing-review__button {
    cursor: pointer;
}

.landing-review__card {
    flex: 1;
    width: 335px;
    height: 300px;
    border-radius: 16px;
    padding: 32px 24px;
    color: var(--white);
    margin: 0 24px 0 0;
}

.landing-review__card--violet {
    background-color: var(--violet);
}

.landing-review__card--orange {
    background-color: var(--orange);
}

.landing-review__card--purple {
    background-color: var(--purple);
}

.landing-review__card--peach {
    background-color: var(--peach);
}

.landing-review__card-text {
    margin: 16px 0;
    font-size: 1rem;
    line-height: 1.4em;
}

.flickity-prev-next-button {
    display: none !important; /* nasconde i bottoni di navigazione */
}

.flickity-viewport {
    overflow: unset; /* serve per fare in modo che le card non siano tagliate e proseguano fino ai bordi dello schermo */
}

/* FAQ
   -------------------------------------------------------------------------------- */
.landing-faq {
    color: var(--white);
    padding: 128px;
    display: flex;
    justify-content: center;
    gap: 200px;
    background: linear-gradient(180deg, #FF853D 0.03%, #3B3C81 116.05%);
    /*background: linear-gradient(180deg, color(display-p3 0.9647 0.549 0.3098) 0.03%, color(display-p3 0.2314 0.2353 0.4902) 116.05%);*/
}

.landing-faq__first-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.landing-faq__title {
    font-family: "Instrument Serif", serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -1px;
    align-items: center;
}

.landing-faq__text {

}

.landing-faq__cards {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.landing-faq__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
}

.landing-faq__card.expanded {
    border-radius: 16px;
    /*background: linear-gradient(180deg, #e4a588 0.03%, #c37f69 116.05%);*/
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0.03%, rgba(255, 255, 255, 0.1) 116.05%);
}

.landing-faq__card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Instrument Serif", serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
}

.landing-faq__card-text {
    display: none;
}

.landing-faq__card.expanded .landing-faq__card-text {
    /*display: block;*/
}

.chevron {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: 8px;
}

/** MESSAGE
   -------------------------------------------------------------------------------- */
.message-background {
    background-color: #EFE5E0;
}
.message-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*gap: 16px;*/
    /*padding: 128px;*/
    background-color: #EFE5E0;

}
.message-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 32px;
    border-bottom: 1px solid var(--black);
    width: 100%;
    flex: 1;
}
.message-body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 16px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
}

.message-video {
    border-radius: 16px;
    cursor: pointer;
    width: 90%;
    max-width: 600px;
    background-color: #E3D9D2;

}

.message-frame-container {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*gap: 16px;*/
    /*padding: 32px;*/
    /*border-radius: 16px;*/
    /*background-color: #5BCB9C;*/
    position: relative;
    padding-top: 56.25%;
}

.message-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.message-title {
    font-size: 1.5rem;
    font-weight: 700;
    /*color: var(--black);*/
    /*margin: 16px 0;*/
    /*letter-spacing: -1px;*/
    /*line-height: 2rem;*/
}

.message-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    /*margin: 16px 0;*/
    display: block;
}

.message-description {
    font-size: 1rem;
    font-weight: 400;
    /*margin: 16px 0;*/
    display: block;
    line-height: 1.4em;
}


.message-download {
    display: flex;
    align-items: center;
    text-decoration: none; /* Facoltativo: rimuove la sottolineatura dal link */
    gap: 8px;
}

.message-download img {
    width: 24px; /* Imposta la dimensione dell'immagine se necessario */
    height: 24px; /* Assicurati che sia proporzionata */
}

/** PRIVACY
    *******************************************************/
.privacy {
    padding: 64px 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    gap: 32px;
}

.privacy__head-title {
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--black);
    margin: 16px 0;
    letter-spacing: 1px;
}

.privacy__title {
    font-family: "Instrument Serif", serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--black);
    margin: 16px 0;
    align-items: center;
    letter-spacing: 1px;
}

.privacy__subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 16px 0;
    display: block;
}

.privacy__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: 32px;
}

/* SELF CHECK NOTIFICATION
   -------------------------------------------------------------------------------- */
.self-check-notification-background {
    background-color: #EFE5E0;
}
.self-check-notification-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #EFE5E0;
}
.self-check-notification-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 32px;
    border-bottom: 1px solid var(--black);
    width: 100%;
    flex: 1;
}
.self-check-notification-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 64px;
    width: 100%;
}
.self-check-notification__card {
    position: relative; /* Aggiunto per il posizionamento assoluto del titolo */
    height: 508px;
    width: 80%;
    border-radius: 16px;
    overflow: hidden; /* Ritaglia l'immagine in eccesso */
}
.self-check-notification__card-image {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Centra l'immagine */
    display: block;
    filter: blur(5px);
}

.self-check-notification__card-body {
    position: absolute;
    top: 40%;
    width: 100%;
    text-align: center;
}

.self-check-notification__card-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 400;
    margin: 0 32px;
    letter-spacing: -1px;
}

.self-check-notification__card-subtitle {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    margin: 16px 0;
    display: block;
}

/* -------------- */
.self-check-notification {
    padding: 128px;
    min-height: 600px;
}

.self-check-notification__title {
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--success-100);
    margin: 16px 0;
    letter-spacing: -1px;
}

/* ERROR
   -------------------------------------------------------------------------------- */
.error {
    padding: 128px;
    min-height: 600px;
}

.error__title {
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--alert-100);
    margin: 16px 0;
    letter-spacing: -1px;
}

.download {
    padding: 64px 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    gap: 32px;
    align-items: center;
    margin-top: 128px;
    margin-bottom: 256px;
}

.download__title {
    text-wrap: nowrap;
}

.download__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.download__btn {
    height: 90px;
}









/* SEZIONE MOBILE */
@media screen and (max-width: 1100px) {
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 16px;
        gap: 12px;
    }

    .footer__logo,
    .footer__left-text,
    .footer__right,
    .footer__designed {
        align-self: center;
    }

    .footer__right {
        align-items: center;
        gap: 12px;
    }

    .footer__copyright,
    .footer__resources {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer__sep {
        display: none;
    }

    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.125rem;
    }
    h4 {
        font-size: 1rem;
    }

    body {
        min-width: 300px;
        padding: 0;
    }

    .container {
        position: unset;
        margin-top: 80px;
    }

    .header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 16px;
        margin: 0 auto;
        width: 100%;
        height: 80px;
    }

    .only-desktop {
        display: none;
    }

    .only-mobile {
        display: block;
    }

    /** MENU
        *******************************************************/
    .nav__title {
        flex: 10;
    }

    .nav-button {
        flex: 1;
    }

    .nav-button__icon {
        cursor: pointer;
    }

    .nav__logo {
        height: 60px;
    }

    .menu-full {
        transition: transform 0.8s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        /*height: 200px;*/
        padding: 16px;
        background-color: white;
        z-index: 998;
        overflow: hidden;
        transform: translateY(-100%);
        margin-top: 80px;
    }

    .menu-full.open {
        transform: translateY(0) !important;
    }

    .menu-full__close {
        position: absolute;
        top: 64px;
        right: 64px;
    }

    .menu-full__close img {
        /*height: 64px;*/
    }

    .menu-full__link {
        font-size: 1.4rem;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .menu-full.open .menu-full__locales {
        opacity: 0.8;
        margin-top: 32px;
    }

    .menu-full__locales__btn {
        font-size: 1.2rem;
        margin: 0 4px;
    }

    .current {
        /* sottolineato */
        text-decoration: underline;
    }


    /** LANDING FOREVER
        *******************************************************/
    .landing-forever {
        flex-direction: column;
        padding: 0;
    }

    .landing-forever__text {
        padding: 32px;
    }

    .landing-forever__title {
        text-align: center;
        font-size: 3rem;
    }

    .landing-forever__subtitle {
        text-align: center;
        font-size: 1rem;
    }

    .landing-forever__button {
        width: 100%;
    }

    .landing-forever__video-container {
        width: 100%;
    }

    .landing-forever__video {
        height: unset;
    }

    /** LANDING WHAT
        *******************************************************/
    .landing-what {
        flex-direction: column;
        padding: 32px;
        gap: 8px;
    }

    .landing-what__title {
        font-size: 3rem;
        text-align: center;
    }

    .landing-what__subtitle {
        font-size: 1rem;
        text-align: center;
    }

    /** LANDING HOW
        *******************************************************/
    .landing-how {
        padding: 32px;
        gap: 32px;
    }

    .landing-how__title {
        font-size: 3rem;
    }

    .landing-how__card-title {
        letter-spacing: unset;
    }

    .landing-how__cards {
        flex-direction: column;
        gap: 32px;
    }

    .landing-how__card {
        position: relative; /* Aggiunto per il posizionamento assoluto del titolo */
        width: unset;
        height: unset;
        border-radius: 16px;
        overflow: unset; /* Ritaglia l'immagine in eccesso */
    }

    /** LANDING INFO
        *******************************************************/
    .landing-info {
        padding: 0;
        flex-direction: column;
        gap: 0;
    }

    .landing-info__card {
        max-width: unset;
        border-radius: unset;
    }

    .landing-info__card-1 {
        margin-bottom: 0;
    }

    .landing-info__card-2 {
        margin-top: 0;
    }

    /* TRAILER
   -------------------------------------------------------------------------------- */
    .landing-trailer__video {
        border-radius: unset;
        width: 100%;
    }

    /** LANDING ABOUT
        *******************************************************/
    .landing-about {
        flex-direction: column-reverse;
        padding: 32px;
    }

    .landing-about__text {
        padding: unset;
        max-width: unset;
    }

    .landing-about__subtitle {
        font-size: 1rem;
    }

    .landing-about__button {
        width: 100%;
        font-size: 1.6rem;
    }

    /** LANDING REVIEW
        *******************************************************/
    .landing-review {
        padding: 32px;
    }

    .landing-review__title {
        font-size: 3rem;
    }

        /** LANDING FAQ
            *******************************************************/
    .landing-faq {
        padding: 32px 0;
        gap: 32px;
        flex-direction: column;
    }

    .landing-faq__first-column {
        gap: 16px;
        text-align: center;
    }

    .landing-faq__title {
        font-size: 3rem;
        padding: 0 32px;
    }

    .landing-faq__text {
        padding: 0 32px;
    }

    .landing-faq__cards {
        gap: 16px;
    }

    .landing-faq__card-title {
        font-size: 1.6rem;
    }

    /** PRIVACY
        *******************************************************/
    .privacy {
        padding: 32px;
        gap: 16px;
    }

    /** SELF CHECK NOTIFICATION
        *******************************************************/
    .self-check-notification__card {
        width: 100%;
        height: 40vh;
    }

    .self-check-notification__card-image {
        filter: blur(8px);
    }

    .download {
        padding: 32px;
        gap: 16px;
        margin-top: 64px;
        margin-bottom: 128px;
    }

    .download__btns {
        flex-direction: column;
    }

    .download__btn {
        height: auto;
        width: 200px;
    }
}






