:root { --menu-bg: #404040; --menu-color: #f2f2f2;}
html, body {height: 100%; font-family: "Montserrat", sans-serif; margin: 0; scroll-behavior: smooth;}
body{background-color: #F8F9FA;}

#comeFunziona, #prezzi, #recensioni, #faq, #contatti { scroll-margin-top: 90px; }

a:focus-visible,
button:focus-visible {
    outline: 3px solid #f2d750;
    outline-offset: 4px;
}

/*---NAVBAR---*/
.header { 
    position: fixed; 
    left: 0;
    right: 0;
    top: 5px;
    margin: 0 auto; 
    width: 95%; 
    max-width: 1400px; 
    border-radius: 10px; 
    padding: 0 10%; 
    z-index: 100; 
    
    /* STATO INIZIALE: Completamente invisibile e pulito */
    background-color: transparent; 
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: none;

    /* Transizione fluida per tutte le proprietà visive */
    transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out, -webkit-backdrop-filter 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.header.scroll-active { 
    background-color: rgba(64, 64, 64, 0.8); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.header_content{max-width: 1200px; width: 100%; margin: 15px auto; display: flex; justify-content: space-between;}
.header_logo{float: left; display: block; padding: 0px; display: flex; align-items: center; }
.header_logo, .header_quick{display: flex; align-items: center; color: var(--menu-color);}
.header_menu{ margin: 0 auto;padding: 0;display: flex; gap: 20px;list-style: none;}
.header_menu li{display: inline-block;}
.header_menu li a {
    color: #fff; 
    font-size: medium;  
    font-weight: bold; 
    display: block;  
    padding: 5px 20px; 
    margin: 5px 0; 
    text-decoration: none; 
    position: relative; 
    transition: color 0.3s ease-in-out; 
}

/* Nasconde il blocco mobile su desktop */
.header_menu li.mobile-only {
    display: none;
}

.header_menu li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    bottom: -5px; 
    left: 0;
    background-color: #ffff; 
    transform: scaleX(0); 
    transform-origin: center; 
    transition: transform 0.5s ease-in-out;
}
.header_menu li a:hover::after {
    transform: scaleX(1);
}
.header_menu li a:hover {
    color: #fff;
}

@media (min-width: 769px) {
    .header_menu li:not(.mobile-only) a::after {
        bottom: -20px;
    }

    .header_menu li a[aria-current="location"]::after {
        transform: scaleX(1);
    }
}

.logo_img {width: 90px; height: auto; margin-right: auto}
.icon_hamburger { display: none; }

/* Pulsante Demo Originale Desktop */
.demo { background: #a6a6a6; border-radius: 99px;  float: right; color: #f2d750; text-decoration: none; padding: 0 15px; margin: 5px 0; align-content: center; font-weight: bold;}
.demo:hover{background: #8f8f8f;}

.animate{ -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out;}

/*--COVER INIZIALE--*/
.cover {
    height: 100vh; 
    height: 100svh;
    min-height: 660px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: transparent !important; 
}

.cover_video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%; 
    min-height: 100%;
    object-fit: cover; 
    transform: translate(-50%, -50%);
    z-index: -1; 
}

.cover_filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(16, 16, 16, 0.76) 0%, rgba(20, 20, 20, 0.46) 48%, rgba(20, 20, 20, 0.08) 78%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 38%);
    z-index: 0;
}

.cover_caption{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 100px clamp(30px, 9vw, 140px) 44px;
}

.cover_caption_copy{
    position: relative;
    width: min(650px, 54%);
    padding: 0;
    text-align: left;
    color: #f2f2f2;
}

.cover_caption_copy::before {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    margin-bottom: 24px;
    border-radius: 99px;
    background-color: #f2d750;
}

.cover_caption_copy h1{
    max-width: 620px;
    margin: 0;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -2.5px;
    text-wrap: balance;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.3);
}

.cover_title_accent {
    color: inherit;
    background: linear-gradient(transparent 79%, rgba(242, 215, 80, 0.9) 79%);
}

.cover_title_break { display: block; }

.cover_cta_group {
    display: flex;
    justify-content: flex-start;
    gap: 11px;
    margin-top: 36px;
}

.cover_cta {
    min-width: 145px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 99px;
    color: #202020;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cover_cta svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.cover_cta:hover { transform: translateY(-2px); }
.cover_cta_primary { background-color: #f2d750; }
.cover_cta_primary:hover { background-color: #e8cc4a; }
.cover_cta_secondary { border-color: rgba(255, 255, 255, 0.65); color: #ffffff; background-color: rgba(255, 255, 255, 0.12); }
.cover_cta_secondary:hover { border-color: #ffffff; background-color: rgba(255, 255, 255, 0.18); }
.cover--single{height: 35%;}

/*--MINI DEMO FIXITY--*/
.finder_section {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 108px 28px 82px;
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
    column-gap: clamp(64px, 8vw, 112px);
    align-items: center;
}

.finder_intro {
    max-width: 480px;
    position: sticky;
    top: 130px;
    align-self: start;
}

.finder_eyebrow {
    display: inline-block;
    color: #777970;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.6px;
}

.finder_eyebrow::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 3px;
    margin: 0 12px 3px 0;
    border-radius: 99px;
    background-color: #f2d750;
}

.finder_intro h2 {
    margin: 23px 0 0;
    color: #1a202c;
    font-size: clamp(44px, 4.2vw, 56px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2.5px;
    text-wrap: balance;
}

.finder_intro h2 span {
    background: linear-gradient(transparent 79%, rgba(242, 215, 80, 0.9) 79%);
}

.finder_intro > p {
    margin: 24px 0 0;
    color: #626871;
    font-size: 17px;
    line-height: 1.7;
}

.finder_demo {
    min-width: 0;
    padding: 30px 0 34px;
}

.finder_demo_kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #777970;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.finder_demo_kicker::before {
    content: '';
    width: 24px;
    height: 2px;
    border-radius: 99px;
    background-color: #f2d750;
}

.finder_form { display: grid; gap: 24px; }
.finder_form[hidden],
.finder_results[hidden] { display: none !important; }

.finder_field label {
    display: block;
    margin-bottom: 10px;
    color: #555b63;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.finder_input_wrap {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 18px;
    border: 1px solid #d9dde0;
    border-radius: 99px;
    background-color: #ffffff;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.finder_input_wrap:focus-within {
    border-color: #d3b92f;
    box-shadow: 0 0 0 4px rgba(242, 215, 80, 0.16);
}

.finder_input_wrap svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: #8b8f94;
}

.finder_input_wrap input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #202020;
    font: inherit;
    font-size: 17px;
}

.finder_input_wrap input::placeholder { color: #9a9ea3; }

.finder_suggestions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -10px;
}

.finder_suggestions > span {
    margin-right: 3px;
    color: #7b8087;
    font-size: 12px;
}

.finder_suggestions button,
.finder_reset {
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.finder_suggestions button {
    padding: 8px 12px;
    border: 1px solid #d9dde0;
    border-radius: 99px;
    color: #4c5158;
    font-size: 12px;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.finder_suggestions button[aria-pressed="true"] {
    border-color: #f2d750;
    background-color: #f2d750;
    color: #202020;
}

.finder_submit {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border: 0;
    border-radius: 99px;
    background-color: #f2d750;
    color: #202020;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.finder_submit { width: fit-content; min-width: 230px; margin-top: 4px; }

.finder_results:not([hidden]) { animation: finderFade 0.35s ease both; }

@keyframes finderFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.finder_results_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 26px;
}

.finder_results_header > div > span {
    color: #8f7a17;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.finder_results_header h3 {
    margin: 9px 0 0;
    color: #1a202c;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.finder_results_header h3 small {
    color: #777d84;
    font-size: 0.56em;
    font-weight: 500;
    letter-spacing: 0;
}

.finder_reset {
    flex: 0 0 auto;
    padding: 7px 0;
    border-bottom: 1px solid #9da2a8;
    color: #555b63;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.finder_results_list { border-top: 1px solid #dfe2e5; }

.finder_result {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid #dfe2e5;
}

.finder_avatar {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(242, 215, 80, 0.18);
    color: #796811;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.finder_result_copy h4 {
    margin: 0;
    color: #242a32;
    font-size: 15px;
    font-weight: 700;
}

.finder_result_copy p {
    margin: 5px 0 0;
    color: #777d84;
    font-size: 12px;
    line-height: 1.45;
}

.finder_distance {
    color: #6f747b;
    font-size: 11px;
    white-space: nowrap;
}

.finder_disclaimer {
    margin: 15px 0 0;
    color: #94989d;
    font-size: 10.5px;
    line-height: 1.5;
}

/*--- CONVERSAZIONE E FIDUCIA ---*/
.trust_section {
    width: min(1200px, 100%);
    margin: -10px auto 0;
    padding: 18px 28px 104px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    align-items: center;
    gap: clamp(58px, 8vw, 108px);
}

.trust_chat {
    position: relative;
    min-width: 0;
    padding: 0;
}

.trust_chat_header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px 8px 8px;
    border: 1px solid #DFE2E5;
    border-radius: 99px;
    background-color: #FFFFFF;
}

.trust_chat_avatar {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background-color: rgba(242, 215, 80, 0.2);
    color: #796811;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.trust_chat_header strong {
    display: block;
    color: #242A32;
    font-size: 14px;
}

.trust_chat_header div > span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    color: #7A8087;
    font-size: 10px;
}

.trust_chat_header i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #F2D750;
    box-shadow: 0 0 0 3px rgba(242, 215, 80, 0.16);
}

.trust_messages {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.trust_message {
    width: fit-content;
    max-width: 78%;
    padding: 13px 15px 10px;
}

.trust_message > span {
    display: block;
    margin-bottom: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.trust_message p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
}

.trust_message time {
    display: block;
    margin-top: 7px;
    font-size: 8.5px;
    text-align: right;
}

.trust_message time b { color: #8F7A17; font-weight: 700; }

.trust_message_client {
    align-self: flex-end;
    border: 1px solid rgba(211, 185, 47, 0.32);
    border-radius: 18px 18px 5px 18px;
    background-color: rgba(242, 215, 80, 0.2);
    color: #202020;
}

.trust_message_client > span,
.trust_message_client time { color: #796811; }

.trust_message_pro {
    align-self: flex-start;
    border: 1px solid #DFE2E5;
    border-radius: 18px 18px 18px 5px;
    background-color: #FFFFFF;
    color: #343A42;
}

.trust_message_pro > span,
.trust_message_pro time { color: #7A8087; }

.trust_chat.is-dynamic .trust_message {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition: opacity 0.38s ease, transform 0.5s cubic-bezier(.215, .61, .355, 1);
}

.trust_chat.is-dynamic .trust_message.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.trust_typing {
    display: none;
}

.trust_chat.is-dynamic .trust_typing {
    display: flex;
    width: fit-content;
    min-width: 54px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 14px;
    border: 1px solid #DFE2E5;
    border-radius: 18px 18px 18px 5px;
    background-color: #FFFFFF;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.trust_chat.is-dynamic .trust_typing.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.trust_typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #9A9EA3;
    animation: trust_typing_dot 0.9s ease-in-out infinite;
}

.trust_typing span:nth-child(2) { animation-delay: 0.14s; }
.trust_typing span:nth-child(3) { animation-delay: 0.28s; }

@keyframes trust_typing_dot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
    30% { transform: translateY(-3px); opacity: 1; }
}

.trust_copy { max-width: 470px; }

.trust_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #777970;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.45px;
}

.trust_eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background-color: #F2D750;
}

.trust_copy h2 {
    margin: 21px 0 0;
    color: #1A202C;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -2px;
    text-wrap: balance;
}

.trust_copy h2 span,
.invoice_copy h2 span {
    background: linear-gradient(transparent 79%, rgba(242, 215, 80, 0.9) 79%);
}

.trust_copy p {
    max-width: 430px;
    margin: 23px 0 0;
    color: #626871;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .trust_section {
        margin-top: 0;
        padding: 12px 22px 84px;
        grid-template-columns: minmax(0, 1fr);
        gap: 38px;
    }

    .trust_copy { max-width: 680px; order: -1; }
    .trust_chat { width: 100%; max-width: 680px; }
}

@media (max-width: 480px) {
    .trust_section { padding: 4px 16px 70px; gap: 28px; }
    .trust_copy h2 { margin-top: 18px; font-size: 35px; letter-spacing: -1.4px; }
    .trust_copy p { margin-top: 18px; font-size: 15px; }
    .trust_chat { padding: 0; }
    .trust_chat_header { padding: 7px 12px 7px 7px; }
    .trust_messages { margin-top: 17px; gap: 12px; }
    .trust_message { max-width: 88%; padding: 12px 13px 9px; }
    .trust_message p { font-size: 13px; }
}

/*--- FATTURA IN CHAT ---*/
.invoice_section {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 28px 44px;
    display: grid;
    grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(58px, 8vw, 108px);
}

.invoice_copy { max-width: 470px; }

.invoice_copy h2 {
    margin: 21px 0 0;
    color: #1A202C;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -2px;
    text-wrap: balance;
}

.invoice_copy p {
    max-width: 430px;
    margin: 23px 0 0;
    color: #626871;
    font-size: 16px;
    line-height: 1.7;
}

.invoice_preview {
    min-width: 0;
    padding: 30px;
    border: 1px solid #D9DDE0;
    border-radius: 20px;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.invoice_preview_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.invoice_pdf_mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(242, 215, 80, 0.2);
    color: #796811;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.invoice_status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #D9DDE0;
    border-radius: 99px;
    background-color: #FFFFFF;
    color: #555B63;
    font-size: 10px;
    font-weight: 700;
}

.invoice_status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #D3B92F;
    box-shadow: 0 0 0 3px rgba(242, 215, 80, 0.18);
}

.invoice_preview_amount {
    margin-top: 34px;
}

.invoice_preview_amount span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7A8087;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.invoice_preview_amount span::before {
    content: '';
    width: 24px;
    height: 2px;
    flex: 0 0 auto;
    border-radius: 99px;
    background-color: #F2D750;
}

.invoice_preview_amount strong {
    display: block;
    margin-top: 10px;
    color: #1A202C;
    font-size: clamp(42px, 4.5vw, 54px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2px;
}

.invoice_preview_details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 32px 0 0;
}

.invoice_preview_details div { min-width: 0; }

.invoice_preview_details dt {
    color: #8B9096;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.invoice_preview_details dd {
    margin: 7px 0 0;
    overflow-wrap: anywhere;
    color: #343A42;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.invoice_preview_action {
    width: fit-content;
    min-width: 210px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 20px;
    border: 0;
    border-radius: 99px;
    background-color: #F2D750;
    color: #202020;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.45px;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.invoice_preview_action b { font-size: 16px; font-weight: 500; }

.invoice_preview_action:hover { transform: translateY(-2px); }

.invoice_preview_action:disabled {
    cursor: wait;
    transform: none;
}

.invoice_preview.is-processing .invoice_status i {
    animation: invoice_status_pulse 0.9s ease-in-out infinite;
}

.invoice_preview.is-paid {
    border-color: rgba(61, 143, 92, 0.34);
    box-shadow: 0 18px 50px rgba(43, 104, 67, 0.09);
}

.invoice_preview.is-paid .invoice_status {
    border-color: rgba(61, 143, 92, 0.24);
    background-color: rgba(61, 143, 92, 0.08);
    color: #2F754A;
}

.invoice_preview.is-paid .invoice_status i {
    background-color: #3D8F5C;
    box-shadow: 0 0 0 3px rgba(61, 143, 92, 0.14);
}

.invoice_preview.is-paid .invoice_preview_action {
    background-color: #20262E;
    color: #FFFFFF;
}

.invoice_preview.is-paid .invoice_preview_action b {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-content: center;
    background-color: transparent;
    color: transparent;
    font-size: 0;
}

.invoice_preview.is-paid .invoice_preview_action b::after {
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #FFFFFF;
    border-left: 2px solid #FFFFFF;
    content: "";
    transform: translateY(-1px) rotate(-45deg);
}

.invoice_demo_note {
    margin: 11px 0 0;
    color: #8B9096;
    font-size: 9px;
    line-height: 1.5;
}

@keyframes invoice_status_pulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.35); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .trust_chat.is-dynamic .trust_message {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .trust_chat.is-dynamic .trust_typing { display: none; }
    .invoice_preview.is-processing .invoice_status i { animation: none; }
}

@media (max-width: 900px) {
    .invoice_section {
        padding: 0 22px 34px;
        grid-template-columns: minmax(0, 1fr);
        gap: 38px;
    }

    .invoice_copy { max-width: 680px; }
    .invoice_preview { width: 100%; max-width: 680px; }
}

@media (max-width: 480px) {
    .invoice_section { padding: 0 16px 20px; gap: 28px; }
    .invoice_copy h2 { margin-top: 18px; font-size: 35px; letter-spacing: -1.4px; }
    .invoice_copy p { margin-top: 18px; font-size: 15px; }
    .invoice_preview { padding: 22px; border-radius: 18px; }
    .invoice_preview_amount { margin-top: 28px; }
    .invoice_preview_amount strong { font-size: 46px; }
    .invoice_preview_details { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; margin-top: 26px; }
    .invoice_preview_details div:last-child { grid-column: 1 / -1; }
    .invoice_preview_action { width: 100%; min-width: 0; margin-top: 24px; }
}

/*--- SEZIONE PREZZI ---*/
.pricing_section {
    padding: 80px 10% 60px 10%;
    background-color: #F8F9FA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing_section_title { text-align: center; margin-bottom: 50px; width: 100%; }
.pricing_section_title h2 { font-size: 35px; font-weight: 700; color: #1A202C; margin: 0 0 10px 0; letter-spacing: -0.5px; }
.pricing_section_title p { font-size: 16px; color: #718096; margin: 0; }
.pricing_container { max-width: 1120px; width: 100%; display: flex; gap: 20px; justify-content: center; align-items: stretch; }

.pricing_card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 24px; 
    width: calc((100% - 40px) / 3);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: left;
}

.card_header { width: 100%; min-height: 154px; }

.pricing_card.card_plus {
    border: 1px solid #f2d750;
    background: linear-gradient(180deg, #F9F9FF 0%, #FFFFFF 100%);
    z-index: 1;
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(26, 32, 44, 0.11);
}

.pricing_card.card_plus .badge { background-color: #f2d750; color: #202020; }

.pricing_card .badge {
    position: absolute;
    top: 32px;
    right: 25px;
    background-color: #a6a6a6;
    color: #f2d750;
    font-size: 9.5px; 
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 99px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card_header h2 { font-size: 32px; font-weight: 600; margin: 0 0 12px 0; color: #1A202C; }
.price { font-size: 32px; font-weight: 400; color: #1A202C; line-height: 1; margin-top: 5px; margin-bottom: 5px; display: flex; align-items: baseline; }
.period { font-size: 14px; color: #718096; font-weight: 400; margin-left: 6px; }
.card_header .subtitle { font-size: 14.5px; font-weight: 600; color: #1A202C; margin: 18px 0 22px 0; }

.btn_plan {
    width: 100%;
    padding: 13px;
    border-radius: 99px; 
    font-size: 14.5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-bottom: 30px;
    border: none;
    text-decoration: none;
    display: block;
}

.current_plan { background-color: #FFFFFF; color: #A0AEC0; border: 1px solid #E2E8F0; cursor: not-allowed; }
.start_plan { background-color: #FFFFFF; color: #1A202C; border: 1px solid #E2E8F0; }
.start_plan:hover { border-color: #cbd5e0; background-color: #F8F9FA; }
.upgrade_plan { background-color: #f2d750; color: #202020; }
.upgrade_plan:hover { background-color: #e8cc4a; }

.features_list { list-style: none; padding: 0; margin: 0; width: 100%; display: flex; flex-direction: column; gap: 16px; }
.features_list li { font-size: 14px; color: #2D3748; display: flex; align-items: center; line-height: 1.4; }
.features_list .icon { margin-right: 10px; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; width: 22px; color: #4A5568; }
/*--- SEZIONE RECENSIONI ---*/
.reviews_section {
    padding: 80px 0 60px 0;
    background-color: #F8F9FA; 
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.reviews_title h2 {
    font-size: 35px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 50px;
    padding: 0 5%;
}

.carousel_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.carousel_viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.carousel_track {
    display: flex;
    gap: 30px; 
    width: 100%;
}

.review_slide {
    flex: 0 0 calc((100% - 60px) / 3); 
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 20px;
    transition: transform 0.3s ease;
}

.avatar_circle {
    width: 95px;
    height: 95px;
    background-color: #E2E8F0; 
    border-radius: 50%;
    margin-bottom: 22px;
    overflow: hidden;
    border: 2px solid #f2d750; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar_initials {
    color: #4A5568;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.slide_text p {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 15px 0;
    max-width: 320px;
}

.slide_text h4 { font-size: 15px; font-weight: 600; color: #1A202C; margin: 0; }

.carousel_arrow {
    position: absolute;
    top: 35%; /* Centrate verticalmente rispetto al carosello */
    background: transparent;
    border: none;
    color: #1A202C; /* Colore iniziale dell'icona */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: none;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.carousel_arrow svg {
    width: 45px;  /* Puoi aumentare o diminuire questo valore per ridimensionarle */
    height: 45px;
    display: block;
}

.prev_btn { left: 1.5%; }
.next_btn { right: 1.5%; }

.carousel_arrow:hover {
    color: #f2d750; /* Prende il colore giallo/oro del tuo brand (usato nei pulsanti e nei badge) */

}

/*--- DOMANDE FREQUENTI ---*/
.faq_section {
    width: min(1000px, 100%);
    margin: 0 auto;
    padding: 100px 28px 110px;
}

.faq_intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.faq_intro > span {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #777970;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.45px;
}

.faq_intro > span::before {
    content: "";
    width: 28px;
    height: 2px;
    background-color: #f2d750;
}

.faq_intro h2,
.faq_intro h1 {
    max-width: 550px;
    margin: 0;
    color: #1A202C;
    font-size: clamp(38px, 4vw, 50px);
    line-height: 1.06;
    letter-spacing: -1.8px;
    text-align: right;
}

.faq_list {
    border-top: 1px solid #DFE2E5;
}

.faq_item {
    border-bottom: 1px solid #DFE2E5;
}

.faq_item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    color: #20262E;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
}

.faq_item summary::-webkit-details-marker { display: none; }
.faq_item summary::marker { content: ""; }

.faq_toggle {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.faq_toggle::before,
.faq_toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    background-color: #8F7A17;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.faq_toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq_item[open] .faq_toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq_answer {
    max-width: 760px;
    padding: 0 50px 24px 0;
}

.faq_answer p {
    margin: 0;
    color: #676D75;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq_section { padding: 78px 22px 86px; }
    .faq_intro { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 38px; }
    .faq_intro h2,
    .faq_intro h1 { max-width: 420px; font-size: 38px; text-align: left; }
    .faq_item summary { padding: 22px 0; font-size: 17px; }
    .faq_answer { padding: 0 34px 22px 0; }
}

@media (max-width: 480px) {
    .faq_section { padding: 70px 16px 78px; }
    .faq_intro { margin-bottom: 32px; }
    .faq_intro h2,
    .faq_intro h1 { font-size: 34px; letter-spacing: -1.2px; }
    .faq_item summary { gap: 16px; font-size: 16px; }
    .faq_answer { padding-right: 28px; }
    .faq_answer p { font-size: 14px; }
}


/*--FOOTER--*/
.footer {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 0;
    background-color: rgba(64, 64, 64, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #F2F3F4;
}

.footer .grid {
    width: min(1200px, calc(100% - 56px));
    margin: 0 auto;
}

.footer .grid:first-child {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(150px, 0.7fr));
    align-items: start;
    gap: clamp(42px, 7vw, 90px);
    padding: 68px 0 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .grid:last-child {
    padding: 22px 0 24px;
}

.footer .colum { min-width: 0; }

.footer_brand { max-width: 390px; }

.footer_logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer_logo img {
    width: 86px;
    height: auto;
    display: block;
}

.footer_tagline {
    max-width: 350px;
    margin: 22px 0 0;
    color: #B9BEC4;
    font-size: 14px;
    line-height: 1.7;
}

.footer_social_label,
.footer_heading {
    color: #F2D750;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.footer_social_label {
    display: block;
    margin-top: 28px;
}

.footer_heading { margin: 4px 0 22px; }

.footer_socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.social_icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #F2F3F4;
}

.social_icon svg {
    display: block;
    color: currentColor;
}

.item {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.item a,
.footer_cookie_settings {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #C7CBD0;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.22s ease, transform 0.22s ease;
}

.item a:hover,
.footer_cookie_settings:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.item a[aria-current="page"] {
    color: #FFFFFF;
    font-weight: 600;
}

.footer_bottom_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer_bottom_content p {
    margin: 0;
    color: #8F969D;
    font-size: 11px;
}

.footer_back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #C7CBD0;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.22s ease;
}

.footer_back:hover { color: #F2D750; }

/*--- COOKIE E PREFERENZE ---*/
.cookie_banner[hidden],
.cookie_preferences[hidden] {
    display: none !important;
}

.cookie_banner,
.cookie_preferences,
.cookie_banner *,
.cookie_preferences * {
    box-sizing: border-box;
}

.cookie_banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 1000;
}

.cookie_banner_inner {
    position: relative;
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(30px, 5vw, 70px);
    margin: 0 auto;
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background-color: rgba(64, 64, 64, 0.8);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cookie_banner_copy {
    max-width: 650px;
    padding-right: 24px;
}

.cookie_banner_copy > span,
.cookie_preferences_header > div > span {
    color: #F2D750;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.cookie_banner_copy h2,
.cookie_preferences_header h2 {
    margin: 9px 0 0;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cookie_banner_copy p {
    margin: 12px 0 0;
    color: #D1D4D7;
    font-size: 12.5px;
    line-height: 1.65;
}

.cookie_banner_copy a {
    display: inline-flex;
    margin-top: 12px;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    text-underline-offset: 3px;
}

.cookie_banner_actions,
.cookie_preferences_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie_button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 99px;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25px;
    cursor: pointer;
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.cookie_button:hover { transform: translateY(-1px); }

.cookie_button_primary {
    border-color: #F2D750;
    background-color: #F2D750;
    color: #202020;
}

.cookie_button_primary:hover {
    border-color: #E8CC4A;
    background-color: #E8CC4A;
}

.cookie_button_secondary {
    border-color: rgba(255, 255, 255, 0.34);
    background-color: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
}

.cookie_button_secondary:hover { background-color: rgba(255, 255, 255, 0.12); }

.cookie_button_secondary_dark {
    border-color: #D7DADD;
    background-color: #F7F8F8;
    color: #3F454C;
}

.cookie_button_secondary_dark:hover { background-color: #ECEEEF; }

.cookie_banner_close,
.cookie_modal_close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    font-family: inherit;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}

.cookie_banner_close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: #FFFFFF;
    opacity: 0.78;
    transition: opacity 0.2s ease;
}

.cookie_banner_close:hover { opacity: 1; }

.cookie_preferences {
    position: fixed;
    inset: 0;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(20, 22, 24, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie_preferences_panel {
    width: min(590px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 28px;
    border: 1px solid #E2E4E6;
    border-radius: 22px;
    background-color: #FFFFFF;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
    color: #2A3037;
}

.cookie_preferences_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.cookie_preferences_header > div > span { color: #8F7A17; }
.cookie_preferences_header h2 { color: #20262E; }

.cookie_modal_close {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: #4D535A;
    opacity: 0.78;
    transition: opacity 0.2s ease;
}

.cookie_modal_close:hover { opacity: 1; }

.cookie_preference_list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.cookie_preference_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 18px;
    border: 0;
    border-radius: 20px;
    background-color: #FFFFFF;
}

.cookie_preference_item span { min-width: 0; }

.cookie_preference_item strong {
    display: block;
    color: #2A3037;
    font-size: 12px;
}

.cookie_preference_item small {
    display: block;
    margin-top: 6px;
    color: #747A81;
    font-size: 10.5px;
    line-height: 1.55;
}

.cookie_preference_item input {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    display: inline-grid;
    place-content: center;
    margin: 0;
    border: 1px solid #CDD1D5;
    border-radius: 50%;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.cookie_preference_item input::after {
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #202020;
    border-left: 2px solid #202020;
    content: "";
    opacity: 0;
    transform: translateY(-1px) rotate(-45deg) scale(0.7);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.cookie_preference_item input:hover { border-color: #AEB4BA; }

.cookie_preference_item input:checked {
    border-color: #F2D750;
    background-color: #F2D750;
}

.cookie_preference_item input:checked::after {
    opacity: 1;
    transform: translateY(-1px) rotate(-45deg) scale(1);
}

.cookie_preference_item input:focus-visible {
    outline: 3px solid rgba(242, 215, 80, 0.3);
    outline-offset: 3px;
}

.cookie_preference_item input:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.cookie_preferences_note {
    margin: 15px 0 0;
    color: #7A8087;
    font-size: 10px;
    line-height: 1.55;
}

.cookie_preferences_actions {
    margin-top: 25px;
    justify-content: center;
}

.cookie-modal-open { overflow: hidden; }

.legal_cookie_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 20px;
    padding: 10px 17px;
    border: 1px solid #D5D8DB;
    border-radius: 99px;
    background-color: #FFFFFF;
    color: #454B52;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 820px) {
    .cookie_banner { right: 10px; bottom: 10px; left: 10px; }
    .cookie_banner_inner { grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 25px 22px 22px; }
    .cookie_banner_copy { padding-right: 32px; }
    .cookie_banner_actions { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .cookie_banner { right: 0; bottom: 0; left: 0; }
    .cookie_banner_inner {
        padding: 24px 16px max(18px, env(safe-area-inset-bottom));
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 20px 20px 0 0;
    }
    .cookie_banner_copy h2 { font-size: 20px; }
    .cookie_banner_copy p { font-size: 12px; }
    .cookie_banner_actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cookie_banner_actions .cookie_button_primary { grid-column: 1 / -1; }
    .cookie_button { width: 100%; padding-right: 12px; padding-left: 12px; }
    .cookie_preferences { align-items: flex-end; padding: 0; }
    .cookie_preferences_panel {
        max-height: min(760px, calc(100svh - 18px));
        padding: 24px 16px max(18px, env(safe-area-inset-bottom));
        border-radius: 20px 20px 0 0;
    }
    .cookie_preference_item { gap: 16px; padding: 15px; }
    .cookie_preferences_actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
    .cookie_button,
    .footer_cookie_settings { transition: none; }
}


/*---RESPONSIVE E DISPOSITIVI MOBILE---*/
@media (max-width: 900px) {
    .finder_section { display: block; padding: 82px 22px 72px; }
    .finder_intro { max-width: 700px; position: static; }
    .finder_intro h2 { font-size: clamp(46px, 8vw, 60px); }
    .finder_intro > p { max-width: 620px; }
    .finder_demo { margin-top: 48px; }

}

@media (max-width: 768px){
    body.menu-open { overscroll-behavior: none; }
    .demo{display: none;}
    .header_content {
        max-width: 1400px; 
        width: 100%; 
        margin: 15px auto; 
        display: flex; 
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }
    .mobile-only { display: block !important; width: 100%; padding: 0; box-sizing: border-box; }

    .header_menu li a.btn-demo-mobile {
        display: block; width: 100%; background: #E8E7E6; color: #C8A650 !important; 
        padding: 25px 0; font-size: 18px; font-weight: bold; text-align: center;
        text-transform: none; box-shadow: none; text-decoration: none; transition: background-color 0.2s ease;
    }
    .header_menu li a.btn-demo-mobile::after { content: none !important; }
    .header_menu li a.btn-demo-mobile:active,
    .header_menu li a.btn-demo-mobile:hover { background: #DAD9D8; }

    .header { 
        left: 2.5% !important;   
        right: 2.5% !important;  
        top: 5px !important;
        width: auto !important; 
        transform: none !important; 
        border-radius: 10px !important; 
        padding: 0 30px !important; /* MODIFICATO: Impostato a 20px per definire la distanza del logo dal bordo sinistro */
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        transition: none !important;
    }

    .header::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        border-radius: inherit;
        pointer-events: none;
        background-color: transparent;
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
        box-shadow: none;
        transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out, -webkit-backdrop-filter 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .header.scroll-active::before {
        background-color: rgba(64, 64, 64, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .header_menu {
        position: fixed; top: 0; right: 0; left: 0; width: 100vw; height: 100vh;    
        background-color: #ffffff; display: flex; flex-direction: column; justify-content: flex-start;
        padding: 0; padding-top: 90px; gap: 0 !important; margin: 0;
        transform: translateX(100%); transition: transform 0.6s cubic-bezier(.215, .61, .355, 1); z-index: 99;
    }
    .header_menu li { width: 100% !important; display: block; margin: 0 !important; }
    .header_menu li a { display: block; width: 100%; text-align: center; padding: 25px 0; font-size: 18px; font-weight: bold; color: #202020; text-decoration: none; box-sizing: border-box; margin: 0 !important;}
    .header_menu li a:not(.btn-demo-mobile):hover { color: #202020 !important; }
    .header_menu li a::after { background-color: #202020 !important; bottom: 0 !important; }
    .header_logo{right: 0px;}
    
    .menu-open .header_menu { transform: translateX(0); pointer-events: auto; }
    
    .icon_hamburger { 
        display: block;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        margin: 0; 
        width: 2em; 
        height: 1.5em; 
        position: absolute; 
        z-index: 110; 
        right: 0; /* Allineato allo stesso margine laterale del logo */
        
        /* CENTRAMENTO VERTICALE PERFETTO */
        top: 50%; 
        transform: translateY(-50%); 
        
        transition: transform 0.35s cubic-bezier(.215, .61, .355, 1), all 0.35s cubic-bezier(.215, .61, .355, 1); 
    }
    .icon_hamburger span {width: 100%; height: 2px; display: block; position: absolute; background-color: var(--menu-color); transition: all 0.35s cubic-bezier(.215, .61, .355, 1); left: auto; right: 0; border-radius: 20px;}
    .icon_hamburger span:nth-child(1) { top: 0; width: 100%;}
    .icon_hamburger span:nth-child(2),
    .icon_hamburger span:nth-child(3) {top: 10px; width: 35%;}
    .icon_hamburger span:nth-child(4) {top: 20px; width: 65%;} 
    
    .menu-open .icon_hamburger { 
        transform: translateY(-50%) rotate(180deg); 
    }
    .menu-open .icon_hamburger span:nth-child(1) {top: 2em; width: 0;}
    .menu-open .icon_hamburger span:nth-child(2) {width: 100%; transform: rotate(45deg);}
    .menu-open .icon_hamburger span:nth-child(3) {width: 100%; transform: rotate(-45deg);}
    .menu-open .icon_hamburger span:nth-child(4) {top: 18px; width: 0; left: 50%;}
    .menu-open .icon_hamburger span { background-color: #202020; }

    .cover--single{height: 50%;}
    .cover_filter {
        background:
            linear-gradient(0deg, rgba(12, 12, 12, 0.88) 0%, rgba(15, 15, 15, 0.56) 42%, rgba(18, 18, 18, 0.08) 76%),
            linear-gradient(90deg, rgba(12, 12, 12, 0.38), rgba(18, 18, 18, 0.08));
    }
    .cover{
        height: 100svh;
        min-height: 620px;
    }
    .cover_video { object-position: 56% center; }
    .cover_caption {
        align-items: flex-end;
        padding: max(92px, calc(env(safe-area-inset-top) + 74px)) 24px max(64px, calc(env(safe-area-inset-bottom) + 50px));
    }
    .cover_caption_copy {
        width: 100%;
        max-width: 520px;
        padding: 0;
    }
    .cover_caption_copy::before { width: 40px; margin-bottom: 20px; }
    .cover_caption_copy h1{
        max-width: 480px;
        font-size: clamp(40px, 11.5vw, 50px);
        line-height: 1.03;
        letter-spacing: -1.7px;
    }
    .cover_cta_group { width: 100%; max-width: 340px; gap: 9px; margin-top: 30px; }
    .cover_cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        min-width: 0;
        min-height: 48px;
        padding: 12px 14px;
        font-size: 12px;
    }
    .footer {
        margin-top: 24px;
        border-radius: 0;
    }
    .footer .grid { width: calc(100% - 40px); }
    .footer .grid:first-child {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 24px;
        padding: 48px 0 40px;
    }
    .footer_brand {
        max-width: 520px;
        grid-column: 1 / -1;
    }
    .footer .grid:last-child { padding: 20px 0 22px; }

    .pricing_section { padding: 50px 6%; }
    .pricing_container { flex-direction: column; gap: 20px; }
    .pricing_card { width: 100%; padding: 30px 22px; position: relative; }
    .pricing_card .badge { position: absolute; top: 30px; right: 22px; margin-bottom: 0; }
}

@media (max-width: 480px) {
    .footer .grid { width: calc(100% - 32px); }
    .footer .grid:first-child { gap: 34px 18px; padding: 42px 0 36px; }
    .footer_tagline { font-size: 13.5px; }
    .footer_heading { margin-bottom: 18px; }
    .item { gap: 11px; }
    .item a { font-size: 12.5px; }
    .footer_bottom_content { gap: 16px; }

    .cover_caption { padding-left: 20px; padding-right: 20px; }
    .cover_caption_copy h1 {
        max-width: 350px;
        font-size: clamp(37px, 11vw, 43px);
        text-wrap: wrap;
    }
    .cover_cta_group {
        flex-direction: column;
        max-width: 270px;
        gap: 8px;
        margin-top: 28px;
    }
    .cover_cta { flex: none; width: 100%; }

    .finder_section { padding: 68px 16px 58px; }
    .finder_intro h2 {
        margin-top: 20px;
        font-size: 39px;
        line-height: 1.04;
        letter-spacing: -1.7px;
    }
    .finder_intro > p { margin-top: 20px; font-size: 15.5px; line-height: 1.65; }
    .finder_demo { margin-top: 40px; padding: 24px 0 28px; }
    .finder_form { gap: 21px; }
    .finder_input_wrap { height: 60px; padding: 0 15px; }
    .finder_input_wrap input { font-size: 16px; }
    .finder_suggestions > span { flex-basis: 100%; }
    .finder_submit { width: 100%; min-width: 0; }
    .finder_results_header { flex-direction: column; gap: 14px; }
    .finder_results_header h3 { font-size: 31px; }
    .finder_result { grid-template-columns: 44px minmax(0, 1fr); gap: 13px; }
    .finder_avatar { width: 44px; height: 44px; }
    .finder_distance { grid-column: 2; margin-top: -7px; }

}

@media (max-width: 360px) {
    .cover_caption { padding-left: 17px; padding-right: 17px; }
    .cover_caption_copy h1 { font-size: 36px; }
    .cover_caption_copy::before { margin-bottom: 17px; }
    .cover_cta_group { max-width: 240px; margin-top: 24px; }

    .finder_section { padding-left: 14px; padding-right: 14px; }
    .finder_intro h2 { font-size: 36px; letter-spacing: -1.3px; }
    .finder_eyebrow { font-size: 10px; letter-spacing: 1.35px; }
    .finder_input_wrap { height: 56px; padding: 0 12px; }
    .finder_suggestions button { padding: 8px 10px; }
    .finder_results_header h3 { font-size: 28px; }

}

@media (max-width: 900px) and (max-height: 520px) {
    .cover { min-height: 500px; }
    .cover_caption {
        align-items: center;
        padding: 78px 28px 24px;
    }
    .cover_caption_copy { max-width: 520px; }
    .cover_caption_copy::before { margin-bottom: 14px; }
    .cover_caption_copy h1 { font-size: 36px; max-width: 480px; }
    .cover_cta_group {
        flex-direction: row;
        max-width: 330px;
        margin-top: 20px;
    }
    .cover_cta { flex: 1; width: auto; min-height: 44px; }
}

@media (hover: hover) and (pointer: fine) {
    .finder_suggestions button:hover { border-color: #c7ab20; color: #202020; }
    .finder_submit:hover { transform: translateY(-2px); background-color: #e8cc4a; }
    .finder_reset:hover { color: #202020; border-color: #202020; }
}

@media (hover: none) {
    .cover_cta:hover { transform: none; }
    .cover_cta:active { transform: scale(0.98); }
    .finder_submit:hover { transform: none; }
    .finder_submit:active { transform: scale(0.98); }
}

/*--- RESPONSIVE CAROSELLO ---*/
@media (max-width: 1024px) {
    .pricing_container { max-width: 560px; flex-direction: column; }
    .pricing_card { width: 100%; }
    .pricing_card.card_plus { transform: none; }
    .card_header { min-height: 0; }
    .prev_btn { left: 2%; }
    .next_btn { right: 2%; }
}

@media (max-width: 900px) {
    .review_slide {
        flex: 0 0 calc((100% - 30px) / 2); 
    }
    .carousel_arrow { width: 44px; height: 44px; }
}

@media (max-width: 600px) {
    .review_slide {
        flex: 0 0 100%; 
        padding: 20px 40px;
    }
    .carousel_arrow { width: 38px; height: 38px; font-size: 13px; top: 20%; }
    .prev_btn { left: 3.5%; } 
    .next_btn { right: 3.5%; }
}

/*---CLEARFIX---*/
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
* html .clearfix             { zoom: 1; } 
*:first-child+html .clearfix { zoom: 1; } 

@media (prefers-reduced-motion: reduce) {
    html, body { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/*--- INVESTITORI: LAYOUT EDITORIALE ---*/

.investor_x_mark {
    position: absolute;
    top: 50%;
    right: -20px;
    width: clamp(250px, 29vw, 390px);
    aspect-ratio: 92 / 98;
    background: linear-gradient(120deg, #F2D750 0 43%, #20262E 43% 100%);
    content: "";
    opacity: 0.065;
    pointer-events: none;
    transform: translateY(-50%) rotate(-4deg);
    -webkit-mask: url("img/favicon.svg") center / contain no-repeat;
    mask: url("img/favicon.svg") center / contain no-repeat;
}

.investor_statement {
    position: relative;
    z-index: 1;
    align-self: center;
    width: 100%;
    max-width: 1050px;
    padding: 52px 0;
}

.investor_statement h1 {
    max-width: 980px;
    margin: 24px 0 0;
    color: #1A202C;
    font-size: clamp(62px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -4.5px;
    text-wrap: balance;
}

.investor_statement h1 span {
    background: linear-gradient(transparent 80%, rgba(242, 215, 80, 0.9) 80%);
}

.investor_statement_bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    width: min(850px, 100%);
    margin-top: 44px;
    padding-top: 29px;
    border-top: 1px solid #D5D8DB;
}

.investor_statement_bottom p {
    max-width: 570px;
    margin: 0;
    color: #626871;
    font-size: 15px;
    line-height: 1.7;
}

.investor_statement_bottom > a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 24px;
    border-radius: 99px;
    background-color: #F2D750;
    color: #202020;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.investor_statement_bottom > a span {
    font-size: 17px;
    font-weight: 500;
}

.investor_statement_bottom > a:hover {
    background-color: #E8CC4A;
    transform: translateY(-2px);
}

.investor_contact_bar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto auto minmax(260px, 1fr);
    gap: 24px;
    align-items: center;
    padding-top: 21px;
    border-top: 1px solid #D5D8DB;
}

.investor_contact_bar > span {
    color: #777D83;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.investor_contact_bar > a {
    color: #30363D;
    font-size: 11px;
    font-weight: 600;
    text-decoration-color: #C5A90E;
    text-underline-offset: 4px;
}

.investor_contact_bar p {
    max-width: 490px;
    justify-self: end;
    margin: 0;
    color: #989DA2;
    font-size: 8.5px;
    line-height: 1.5;
    text-align: right;
}

@media (max-width: 768px) {
    .investor_cover,
    .investor_cover_content { min-height: 720px; }

    .investor_x_mark {
        top: 48%;
        right: -70px;
        width: 290px;
        opacity: 0.05;
    }

    .investor_statement { padding: 46px 0; }
    .investor_statement h1 { max-width: 650px; font-size: clamp(51px, 10vw, 68px); letter-spacing: -3px; }

    .investor_statement_bottom {
        grid-template-columns: minmax(0, 1fr);
        gap: 27px;
        width: min(620px, 100%);
    }

    .investor_statement_bottom > a { width: fit-content; }

    .investor_contact_bar {
        grid-template-columns: auto 1fr;
        gap: 10px 18px;
    }

    .investor_contact_bar p {
        grid-column: 1 / -1;
        justify-self: start;
        max-width: 560px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .investor_cover,
    .investor_cover_content { min-height: 680px; }

    .investor_x_mark { right: -95px; width: 255px; }
    .investor_statement { padding: 38px 0 34px; }
    .investor_statement h1 { margin-top: 19px; font-size: 45px; line-height: 1; letter-spacing: -2.2px; }
    .investor_statement_bottom { gap: 23px; margin-top: 32px; padding-top: 23px; }
    .investor_statement_bottom p { font-size: 14px; }
    .investor_statement_bottom > a { width: 100%; }
    .investor_contact_bar { gap: 9px 15px; padding-top: 17px; }
}

@media (prefers-reduced-motion: reduce) {
    .investor_statement_bottom > a { transition: none; }
}

/*---BOX SIZING---*/
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

/*--- PAGINA FAQ ---*/
.faq_page_main { min-height: 70vh; }

.faq_page .header {
    background-color: rgba(64, 64, 64, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.faq_page .faq_section { padding-top: 164px; }
.faq_page .faq_intro { margin-top: 52px; }
.faq_page .footer { margin-top: 0; }

.faq_back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #676D75;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.faq_back:hover {
    color: #20262E;
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .faq_page .header {
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .faq_page .header::before {
        background-color: rgba(64, 64, 64, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }

    .faq_page .faq_section { padding: 132px 22px 86px; }
    .faq_page .faq_intro { margin-top: 42px; }
}

@media (max-width: 480px) {
    .faq_page .faq_section { padding: 120px 16px 72px; }
    .faq_page .faq_intro { margin-top: 36px; }
}

/*--- PAGINE LEGALI ---*/
.legal_page_main { min-height: 70vh; }

.legal_page .header {
    background-color: rgba(64, 64, 64, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.legal_page .footer { margin-top: 0; }

.legal_section {
    width: min(1100px, 100%);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 164px 28px 112px;
}

.legal_intro {
    max-width: 790px;
    margin-top: 50px;
}

.legal_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #777970;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.45px;
}

.legal_eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background-color: #F2D750;
}

.legal_intro h1 {
    max-width: 760px;
    margin: 22px 0 0;
    color: #1A202C;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -2.8px;
    text-wrap: balance;
}

.legal_intro > p {
    max-width: 720px;
    margin: 24px 0 0;
    color: #626871;
    font-size: 16px;
    line-height: 1.75;
}

.legal_updated {
    display: block;
    margin-top: 18px;
    color: #8B9096;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.legal_draft_notice {
    margin-top: 46px;
    padding: 20px 22px;
    border: 1px solid rgba(211, 185, 47, 0.38);
    border-radius: 18px;
    background-color: rgba(242, 215, 80, 0.13);
}

.legal_draft_notice strong {
    display: block;
    color: #61530E;
    font-size: 12px;
}

.legal_draft_notice p {
    margin: 8px 0 0;
    color: #706522;
    font-size: 12px;
    line-height: 1.65;
}

.legal_layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: start;
    gap: clamp(56px, 8vw, 100px);
    margin-top: 72px;
}

.legal_toc {
    position: sticky;
    top: 126px;
}

.legal_toc > span {
    display: block;
    margin-bottom: 18px;
    color: #8B9096;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legal_toc ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal_toc a {
    color: #676D75;
    font-size: 11px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.22s ease;
}

.legal_toc a:hover { color: #20262E; }

.legal_article { min-width: 0; }

.legal_article section {
    scroll-margin-top: 120px;
}

.legal_article section + section { margin-top: 58px; }

.legal_article h2 {
    margin: 0 0 18px;
    color: #20262E;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.6px;
}

.legal_article h3 {
    margin: 28px 0 12px;
    color: #30363E;
    font-size: 16px;
}

.legal_article p,
.legal_article li,
.legal_article dd {
    color: #5F666E;
    font-size: 14px;
    line-height: 1.8;
}

.legal_article p { margin: 0; }
.legal_article p + p { margin-top: 14px; }

.legal_article ul,
.legal_article ol {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding-left: 20px;
}

.legal_article a { color: #665813; }

.legal_data_list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.legal_data_list div {
    display: grid;
    grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
    gap: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background-color: #FFFFFF;
}

.legal_data_list dt {
    color: #8B9096;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.legal_data_list dd { margin: 0; }

@media (max-width: 768px) {
    .legal_page .header {
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .legal_page .header::before {
        background-color: rgba(64, 64, 64, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }

    .legal_section { padding: 132px 22px 88px; }
    .legal_intro { margin-top: 42px; }
    .legal_intro h1 { font-size: 48px; letter-spacing: -2px; }
    .legal_layout { grid-template-columns: minmax(0, 1fr); gap: 42px; margin-top: 58px; }
    .legal_toc { position: static; }
    .legal_toc ul {
        display: flex;
        gap: 8px;
        margin-right: -22px;
        padding: 0 22px 5px 0;
        overflow-x: auto;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }
    .legal_toc ul::-webkit-scrollbar { display: none; }
    .legal_toc li { flex: 0 0 auto; scroll-snap-align: start; }
    .legal_toc a {
        display: inline-flex;
        padding: 10px 14px;
        border: 1px solid #E4E6E8;
        border-radius: 999px;
        background-color: #FFFFFF;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .legal_section { padding: 120px 16px 72px; }
    .legal_intro { margin-top: 36px; }
    .legal_intro h1 { font-size: 39px; letter-spacing: -1.6px; }
    .legal_intro > p { font-size: 15px; }
    .legal_draft_notice { margin-top: 36px; padding: 17px 18px; }
    .legal_layout { margin-top: 48px; gap: 40px; }
    .legal_toc ul { margin-right: -16px; padding-right: 16px; }
    .legal_article section + section { margin-top: 48px; }
    .legal_article h2 { font-size: 23px; }
    .legal_article p,
    .legal_article li,
    .legal_article dd { font-size: 13.5px; }
    .legal_data_list div { grid-template-columns: minmax(0, 1fr); gap: 7px; }
}

/*------------------------------
PAGINA INVESTITORI
------------------------------*/

.investors_page { background-color: #F7F8F9; }

.investors_page .header {
    background-color: rgba(64, 64, 64, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.investors_page .footer { margin-top: 0; }

.investors_main {
    min-height: 70vh;
    overflow: hidden;
}

.investor_hero,
.investor_section,
.investor_business_inner,
.investor_disclaimer {
    width: min(1200px, 100%);
    margin-inline: auto;
}

.investor_hero { padding: 164px 28px 112px; }

.investor_hero_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.65fr);
    gap: clamp(54px, 7vw, 100px);
    align-items: end;
    margin-top: 54px;
}

.investor_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #777D83;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.investor_eyebrow::before {
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background-color: #F2D750;
    content: "";
}

.investor_hero_copy h1 {
    max-width: 830px;
    margin: 22px 0 26px;
    color: #20262E;
    font-size: clamp(54px, 6.4vw, 82px);
    line-height: 0.98;
    letter-spacing: -4.6px;
    text-wrap: balance;
}

.investor_hero_copy h1 span {
    background: linear-gradient(transparent 82%, #F2D750 82%);
}

.investor_hero_copy > p {
    max-width: 680px;
    margin: 0;
    color: #60666D;
    font-size: 17px;
    line-height: 1.65;
}

.investor_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.investor_button,
.investor_cta > a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.investor_button:hover,
.investor_cta > a:hover { transform: translateY(-2px); }

.investor_button_primary {
    background-color: #F2D750;
    color: #202020;
}

.investor_button_secondary {
    border: 1px solid #D9DCDF;
    background-color: #FFFFFF;
    color: #30363E;
}

.investor_snapshot {
    padding: 30px;
    border-radius: 26px;
    background-color: #404040;
    box-shadow: 0 28px 60px rgba(32, 38, 46, 0.14);
    color: #FFFFFF;
}

.investor_snapshot > span {
    color: #F2D750;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.investor_snapshot dl { margin: 24px 0 0; }

.investor_snapshot dl div {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.investor_snapshot dt {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.45;
    text-transform: uppercase;
}

.investor_snapshot dd {
    margin: 0;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.investor_snapshot > p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    line-height: 1.55;
}

.investor_section {
    padding: 108px 28px;
    border-top: 1px solid #E3E5E7;
}

.investor_section_intro { max-width: 790px; }

.investor_section_intro h2 {
    margin: 20px 0 24px;
    color: #20262E;
    font-size: clamp(39px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -2.8px;
    text-wrap: balance;
}

.investor_section_intro > p {
    max-width: 720px;
    margin: 0;
    color: #666C72;
    font-size: 15px;
    line-height: 1.75;
}

.investor_points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
    margin-top: 72px;
}

.investor_points article {
    padding-top: 22px;
    border-top: 1px solid #CDD1D4;
}

.investor_points article > span,
.investor_revenue_grid article > span {
    color: #9B8A2B;
    font-size: 11px;
    font-weight: 700;
}

.investor_points h3,
.investor_revenue_grid h3 {
    margin: 28px 0 12px;
    color: #20262E;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.investor_points p,
.investor_revenue_grid p {
    margin: 0;
    color: #6A7076;
    font-size: 13px;
    line-height: 1.7;
}

.investor_solution { background-color: #FFFFFF; }

.investor_solution_grid,
.investor_roadmap_grid,
.investor_capital_grid,
.investor_team_grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(56px, 8vw, 120px);
    align-items: start;
}

.investor_flow > div {
    display: grid;
    grid-template-columns: 34px minmax(90px, 0.32fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px 0;
    border-top: 1px solid #E1E3E5;
}

.investor_flow > div:last-child { border-bottom: 1px solid #E1E3E5; }

.investor_flow span {
    color: #A08C22;
    font-size: 10px;
    font-weight: 700;
}

.investor_flow strong {
    color: #252B32;
    font-size: 15px;
}

.investor_flow p {
    margin: 0;
    color: #6A7076;
    font-size: 13px;
    line-height: 1.65;
}

.investor_business {
    background-color: #404040;
    color: #FFFFFF;
}

.investor_business_inner { padding: 112px 28px; }

.investor_business .investor_eyebrow { color: #F2D750; }
.investor_business .investor_section_intro h2 { color: #FFFFFF; }
.investor_business .investor_section_intro > p { color: rgba(255, 255, 255, 0.62); }

.investor_revenue_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.investor_revenue_grid article {
    min-height: 240px;
    padding: 28px 34px 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.investor_revenue_grid article:first-child { border-left: 0; }
.investor_revenue_grid article > span { color: #F2D750; }
.investor_revenue_grid h3 { margin-top: 54px; color: #FFFFFF; }
.investor_revenue_grid p { color: rgba(255, 255, 255, 0.6); }

.investor_roadmap,
.investor_roadmap li { margin: 0; padding: 0; list-style: none; }

.investor_roadmap li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid #DDE0E2;
}

.investor_roadmap li:last-child { border-bottom: 1px solid #DDE0E2; }

.investor_roadmap li > span {
    color: #A08C22;
    font-size: 11px;
    font-weight: 700;
}

.investor_roadmap strong {
    color: #252B32;
    font-size: 15px;
}

.investor_roadmap p {
    margin: 8px 0 0;
    color: #686E74;
    font-size: 13px;
    line-height: 1.65;
}

.investor_capital { background-color: #FFFFFF; }

.investor_capital_summary {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border-radius: 26px;
    background-color: #F3F4F5;
}

.investor_capital_summary > span {
    color: #9A8620;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.investor_capital_summary > strong {
    display: block;
    margin-top: 18px;
    color: #20262E;
    font-size: clamp(50px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.investor_capital_summary p {
    margin: 20px 0 0;
    color: #565C62;
    font-size: 14px;
}

.investor_capital_summary small {
    margin-top: 34px;
    color: #92979C;
    font-size: 10px;
    line-height: 1.5;
}

.investor_team_copy {
    padding: 30px 0 2px 30px;
    border-left: 4px solid #F2D750;
}

.investor_team_copy h3 {
    margin: 0;
    color: #20262E;
    font-size: 25px;
    letter-spacing: -0.7px;
}

.investor_team_copy > span {
    display: block;
    margin-top: 7px;
    color: #9B8A2B;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.investor_team_copy p {
    max-width: 600px;
    margin: 24px 0 0;
    color: #666C72;
    font-size: 14px;
    line-height: 1.75;
}

.investor_cta {
    display: flex;
    width: min(1144px, calc(100% - 56px));
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto 28px;
    padding: 52px 56px;
    border-radius: 28px;
    background-color: #F2D750;
}

.investor_cta > div > span {
    color: rgba(32, 32, 32, 0.56);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.investor_cta h2 {
    max-width: 720px;
    margin: 13px 0 12px;
    color: #202020;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -2.3px;
}

.investor_cta p {
    margin: 0;
    color: rgba(32, 32, 32, 0.68);
    font-size: 13px;
    line-height: 1.6;
}

.investor_cta > a {
    flex: 0 0 auto;
    background-color: #404040;
    color: #FFFFFF;
}

.investor_disclaimer {
    padding: 0 28px 84px;
    color: #90959A;
    font-size: 10px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .investor_hero_grid,
    .investor_solution_grid,
    .investor_roadmap_grid,
    .investor_capital_grid,
    .investor_team_grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 58px;
    }

    .investor_snapshot { max-width: 560px; }
    .investor_points { gap: 24px; }
    .investor_revenue_grid article { padding-inline: 24px; }
    .investor_team_copy { max-width: 680px; }
}

@media (max-width: 768px) {
    .investors_page .header {
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .investors_page .header::before {
        background-color: rgba(64, 64, 64, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }

    .investor_hero { padding: 132px 22px 88px; }
    .investor_hero_grid { margin-top: 44px; }
    .investor_hero_copy h1 { font-size: 55px; letter-spacing: -3.2px; }
    .investor_section { padding: 88px 22px; }
    .investor_business_inner { padding: 90px 22px; }

    .investor_points,
    .investor_revenue_grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .investor_points { gap: 42px; margin-top: 56px; }

    .investor_revenue_grid article {
        min-height: 0;
        padding: 26px 0 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        border-left: 0;
    }

    .investor_revenue_grid article:first-child { border-top: 0; }
    .investor_revenue_grid h3 { margin-top: 25px; }

    .investor_cta {
        width: calc(100% - 44px);
        align-items: flex-start;
        margin-bottom: 24px;
        padding: 42px;
    }

    .investor_disclaimer { padding: 0 22px 74px; }
}

@media (max-width: 560px) {
    .investor_hero { padding: 120px 16px 74px; }
    .investor_hero_grid { gap: 48px; margin-top: 38px; }
    .investor_hero_copy h1 {
        margin: 18px 0 22px;
        font-size: 43px;
        line-height: 1.01;
        letter-spacing: -2.3px;
    }

    .investor_hero_copy > p { font-size: 15px; }
    .investor_actions { display: grid; margin-top: 30px; }
    .investor_button { width: 100%; }
    .investor_snapshot { padding: 23px; border-radius: 22px; }
    .investor_snapshot dl div { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: 12px; }

    .investor_section { padding: 74px 16px; }
    .investor_business_inner { padding: 76px 16px; }
    .investor_section_intro h2 {
        margin: 18px 0 20px;
        font-size: 36px;
        letter-spacing: -1.9px;
    }

    .investor_section_intro > p { font-size: 14px; }
    .investor_points { margin-top: 48px; }

    .investor_solution_grid,
    .investor_roadmap_grid,
    .investor_capital_grid,
    .investor_team_grid { gap: 46px; }

    .investor_flow > div {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 9px 14px;
    }

    .investor_flow p { grid-column: 2; }
    .investor_revenue_grid { margin-top: 52px; }
    .investor_roadmap li { grid-template-columns: 32px minmax(0, 1fr); gap: 12px; }
    .investor_capital_summary { min-height: 260px; padding: 30px 24px; border-radius: 22px; }
    .investor_capital_summary > strong { font-size: 52px; letter-spacing: -2.4px; }
    .investor_team_copy { padding: 24px 0 0 20px; }

    .investor_cta {
        flex-direction: column;
        width: calc(100% - 32px);
        gap: 30px;
        padding: 30px 26px;
        border-radius: 22px;
    }

    .investor_cta h2 { font-size: 34px; letter-spacing: -1.6px; }
    .investor_cta > a { width: 100%; }
    .investor_disclaimer { padding: 0 16px 64px; }
}

@media (prefers-reduced-motion: reduce) {
    .investor_button,
    .investor_cta > a { transition: none; }
}

/*--- PAGINA INVESTITORI: VERSIONE ESSENZIALE ---*/

#progetto { scroll-margin-top: 90px; }

.investors_page .header {
    background-color: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    box-shadow: none;
}

.investors_page .header.scroll-active {
    background-color: rgba(64, 64, 64, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.investor_cover {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 30%, rgba(242, 215, 80, 0.15), transparent 29%),
        linear-gradient(120deg, #252525 0%, #3A3A3A 58%, #474747 100%);
}

.investor_cover::after {
    position: absolute;
    right: -9vw;
    bottom: -24vw;
    width: 52vw;
    height: 52vw;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.018), 0 0 0 16vw rgba(255, 255, 255, 0.012);
    content: "";
}

.investor_cover_content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr;
    width: min(1200px, 100%);
    min-height: 720px;
    margin: 0 auto;
    padding: 142px 28px 82px;
}

.investor_back {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    align-self: start;
    gap: 9px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.investor_back:hover {
    color: #FFFFFF;
    transform: translateX(-3px);
}

.investor_cover_copy {
    width: min(730px, 70%);
    align-self: center;
    padding: 36px 0 30px;
    color: #F2F2F2;
}

.investor_cover_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.investor_cover_eyebrow::before {
    width: 44px;
    height: 3px;
    border-radius: 99px;
    background-color: #F2D750;
    content: "";
}

.investor_cover_copy h1 {
    max-width: 720px;
    margin: 24px 0 0;
    font-size: 70px;
    line-height: 1.04;
    letter-spacing: -2.8px;
    text-wrap: balance;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.24);
}

.investor_cover_copy h1 span {
    background: linear-gradient(transparent 79%, rgba(242, 215, 80, 0.9) 79%);
}

.investor_cover_copy > p {
    max-width: 600px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.7;
}

.investor_cover .cover_cta_group { margin-top: 36px; }

.investor_focus_section,
.investor_model_section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(58px, 8vw, 108px);
    align-items: center;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 108px 28px;
}

.investor_model_section { padding-top: 10px; }

.investor_home_copy { max-width: 490px; }

.investor_home_copy h2 {
    margin: 21px 0 0;
    color: #1A202C;
    font-size: clamp(40px, 4.2vw, 56px);
    line-height: 1.04;
    letter-spacing: -2.4px;
    text-wrap: balance;
}

.investor_home_copy h2 span {
    background: linear-gradient(transparent 79%, rgba(242, 215, 80, 0.9) 79%);
}

.investor_home_copy p {
    max-width: 460px;
    margin: 23px 0 0;
    color: #626871;
    font-size: 16px;
    line-height: 1.7;
}

.investor_focus_panel {
    padding: 30px;
    border: 1px solid #D9DDE0;
    border-radius: 20px;
    background-color: #FFFFFF;
}

.investor_focus_panel > div {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid #DFE2E5;
}

.investor_focus_panel > div:first-child { border-top: 0; }

.investor_focus_panel span,
.investor_model_list span {
    color: #8F7A17;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.investor_focus_panel strong {
    color: #242A32;
    font-size: 16px;
    line-height: 1.5;
}

.investor_model_list {
    border-top: 1px solid #DDE0E2;
    border-bottom: 1px solid #DDE0E2;
}

.investor_model_list > div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 78px;
    border-top: 1px solid #DDE0E2;
}

.investor_model_list > div:first-child { border-top: 0; }

.investor_model_list strong {
    color: #242A32;
    font-size: 17px;
}

.investor_pitch_section {
    display: flex;
    width: min(1144px, calc(100% - 56px));
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin: 4px auto 26px;
    padding: 50px 54px;
    border-radius: 20px;
    background-color: #404040;
}

.investor_pitch_section > div > span {
    color: #F2D750;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.investor_pitch_section h2 {
    max-width: 720px;
    margin: 13px 0 12px;
    color: #FFFFFF;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -2.2px;
}

.investor_pitch_section p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.6;
}

.investor_pitch_section > a {
    display: inline-flex;
    min-height: 50px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 99px;
    background-color: #F2D750;
    color: #202020;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.investor_pitch_section > a:hover {
    background-color: #E8CC4A;
    transform: translateY(-2px);
}

.investor_simple_disclaimer {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 28px 76px;
    color: #92979C;
    font-size: 10px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .investor_focus_section,
    .investor_model_section {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
        padding: 84px 22px;
    }

    .investor_model_section { padding-top: 4px; }
    .investor_home_copy { max-width: 680px; }
    .investor_focus_panel,
    .investor_model_list { width: 100%; max-width: 680px; }
}

@media (max-width: 768px) {
    .investors_page .header::before {
        background-color: transparent;
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
        box-shadow: none;
    }

    .investors_page .header.scroll-active::before {
        background-color: rgba(64, 64, 64, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .investor_cover,
    .investor_cover_content { min-height: 660px; }

    .investor_cover_content {
        padding: max(116px, calc(env(safe-area-inset-top) + 92px)) 22px 64px;
    }

    .investor_cover_copy {
        width: 100%;
        max-width: 600px;
        align-self: end;
    }

    .investor_cover_copy h1 {
        max-width: 540px;
        font-size: clamp(44px, 11vw, 58px);
        letter-spacing: -2px;
    }

    .investor_pitch_section {
        width: calc(100% - 44px);
        align-items: flex-start;
        padding: 42px;
    }

    .investor_simple_disclaimer { padding: 0 22px 68px; }
}

@media (max-width: 480px) {
    .investor_cover,
    .investor_cover_content { min-height: 620px; }

    .investor_cover_content {
        padding-right: 16px;
        padding-bottom: max(54px, calc(env(safe-area-inset-bottom) + 42px));
        padding-left: 16px;
    }

    .investor_back { font-size: 10px; }
    .investor_cover_eyebrow { font-size: 10px; }
    .investor_cover_eyebrow::before { width: 38px; }
    .investor_cover_copy { padding-bottom: 0; }
    .investor_cover_copy h1 { margin-top: 19px; font-size: 45px; letter-spacing: -1.8px; }
    .investor_cover_copy > p { margin-top: 20px; font-size: 15px; }

    .investor_cover .cover_cta_group {
        display: grid;
        max-width: 360px;
        margin-top: 28px;
    }

    .investor_cover .cover_cta { width: 100%; }

    .investor_focus_section,
    .investor_model_section { gap: 30px; padding: 72px 16px; }
    .investor_model_section { padding-top: 0; }
    .investor_home_copy h2 { margin-top: 18px; font-size: 35px; letter-spacing: -1.5px; }
    .investor_home_copy p { margin-top: 18px; font-size: 15px; }
    .investor_focus_panel { padding: 20px; border-radius: 18px; }
    .investor_focus_panel > div { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 18px 0; }
    .investor_model_list > div { min-height: 68px; }

    .investor_pitch_section {
        flex-direction: column;
        width: calc(100% - 32px);
        gap: 28px;
        margin-bottom: 22px;
        padding: 30px 26px;
        border-radius: 18px;
    }

    .investor_pitch_section h2 { font-size: 35px; letter-spacing: -1.5px; }
    .investor_pitch_section > a { width: 100%; }
    .investor_simple_disclaimer { padding: 0 16px 60px; }
}

@media (prefers-reduced-motion: reduce) {
    .investor_back,
    .investor_pitch_section > a { transition: none; }
}

/*--- ACCESSO INVESTITORI ---*/

.investor_cover_content {
    grid-template-rows: auto 1fr auto;
}

.investor_room_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.68fr);
    gap: clamp(58px, 8vw, 110px);
    align-items: center;
    padding: 48px 0;
}

.investor_room_grid .investor_cover_copy {
    width: 100%;
    max-width: 720px;
    align-self: auto;
}

.investor_room_card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.investor_room_card > span {
    color: #8F7A17;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.investor_room_card h2 {
    margin: 19px 0 0;
    color: #1A202C;
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -1.2px;
}

.investor_room_card p {
    margin: 18px 0 0;
    color: #626871;
    font-size: 14px;
    line-height: 1.7;
}

.investor_room_card > a {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 0 20px;
    border-radius: 99px;
    background-color: #F2D750;
    color: #202020;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.investor_room_card > a:hover {
    background-color: #E8CC4A;
    transform: translateY(-2px);
}

.investor_room_card small {
    display: block;
    margin-top: 13px;
    color: #92979C;
    font-size: 10px;
    text-align: center;
}

.investor_room_disclaimer {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .investor_room_grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .investor_room_card { width: 100%; max-width: 560px; }
}

@media (max-width: 768px) {
    .investor_cover,
    .investor_cover_content { min-height: 820px; }

    .investor_room_grid {
        align-content: center;
        padding: 44px 0;
    }

    .investor_room_grid .investor_cover_copy { align-self: auto; }
}

@media (max-width: 480px) {
    .investor_cover,
    .investor_cover_content { min-height: 760px; }

    .investor_cover_content { padding-bottom: max(34px, calc(env(safe-area-inset-bottom) + 24px)); }
    .investor_room_grid { gap: 32px; padding: 36px 0 30px; }
    .investor_room_grid .investor_cover_copy h1 { font-size: 43px; }
    .investor_room_card { padding: 26px 22px; border-radius: 18px; }
    .investor_room_card h2 { font-size: 27px; }
    .investor_room_card > a { margin-top: 25px; }
}

@media (prefers-reduced-motion: reduce) {
    .investor_room_card > a { transition: none; }
}

/*--- PITCH DECK INVESTITORI ---*/

.investor_direct_link {
    display: inline-flex;
    min-height: 49px;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
    padding: 0 23px;
    border-radius: 99px;
    background-color: #F2D750;
    color: #202020;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25px;
    text-decoration: none;
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.investor_direct_link span {
    background: none !important;
    font-size: 17px;
    font-weight: 500;
}

.investor_direct_link:hover {
    background-color: #E8CC4A;
    transform: translateY(-2px);
}

.investor_deck_wrap {
    position: relative;
    width: min(410px, 100%);
    justify-self: end;
    padding: 0 13px 13px 0;
}

.investor_deck_wrap::before {
    position: absolute;
    inset: 18px 0 0 18px;
    border-radius: 23px;
    background-color: #F2D750;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    content: "";
    transform: rotate(2.2deg);
}

.investor_deck {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 460px;
    flex-direction: column;
    justify-content: space-between;
    padding: 31px 32px;
    border: 1px solid rgba(32, 38, 46, 0.08);
    border-radius: 23px;
    background-color: #F8F9FA;
    color: #20262E;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(.215, .61, .355, 1), box-shadow 0.4s ease;
}

.investor_deck:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
    transform: translate(-4px, -5px) rotate(-0.5deg);
}

.investor_deck_top,
.investor_deck_action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.investor_deck_top strong {
    font-size: 12px;
    letter-spacing: 2px;
}

.investor_deck_top small,
.investor_deck_title small,
.investor_deck_action small {
    color: #858B91;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.investor_deck_title { display: block; }

.investor_deck_title > small {
    display: block;
    margin-bottom: 15px;
    color: #99841B;
}

.investor_deck_title > strong {
    display: block;
    font-size: 68px;
    line-height: 0.88;
    letter-spacing: -4px;
}

.investor_deck_action {
    padding-top: 20px;
    border-top: 1px solid #D9DDE0;
}

.investor_deck_action small { color: #4F555C; }

.investor_deck_action b {
    width: 37px;
    height: 37px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: #20262E;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .investor_deck_wrap { justify-self: start; }
}

@media (max-width: 480px) {
    .investor_direct_link { margin-top: 28px; }
    .investor_deck_wrap { max-width: 360px; padding: 0 10px 10px 0; }
    .investor_deck_wrap::before { inset: 13px 0 0 13px; border-radius: 20px; }
    .investor_deck { min-height: 390px; padding: 26px 24px; border-radius: 20px; }
    .investor_deck_title > strong { font-size: 58px; letter-spacing: -3.4px; }
}

@media (prefers-reduced-motion: reduce) {
    .investor_direct_link,
    .investor_deck { transition: none; }
}

/*--- VARIANTE CHIARA INVESTITORI ---*/

.investors_page .header,
.investors_page .header.scroll-active {
    background-color: rgba(64, 64, 64, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.investor_cover {
    background:
        radial-gradient(circle at 84% 25%, rgba(242, 215, 80, 0.25), transparent 28%),
        radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.96), transparent 35%),
        linear-gradient(135deg, #F8F9FA 0%, #ECEEEF 100%);
}

.investor_cover::after {
    border-color: rgba(32, 38, 46, 0.055);
    box-shadow: 0 0 0 8vw rgba(32, 38, 46, 0.018), 0 0 0 16vw rgba(32, 38, 46, 0.01);
}

.investor_back { color: #747A81; }
.investor_back:hover { color: #20262E; }

.investor_cover_copy { color: #1A202C; }

.investor_cover_eyebrow { color: #777970; }

.investor_cover_copy h1 {
    color: #1A202C;
    text-shadow: none;
}

.investor_cover_copy > p { color: #626871; }

.investor_room_disclaimer { color: #969BA0; }

.investor_deck {
    border-color: #E0E3E5;
    background-color: #FFFFFF;
}

@media (max-width: 768px) {
    .investors_page .header {
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .investors_page .header::before,
    .investors_page .header.scroll-active::before {
        background-color: rgba(64, 64, 64, 0.82);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }
}

.investor_cover::after { display: none; }

@media (max-width: 768px) {
    .investor_cover,
    .investor_cover_content { min-height: 720px; }
}

@media (max-width: 480px) {
    .investor_cover,
    .investor_cover_content { min-height: 680px; }
}

/*--- COVER INVESTITORI FINALE ---*/

.investor_cover::before,
.investor_cover::after { display: none; }

.investor_statement {
    max-width: 900px;
    padding: 48px 0;
}

.investor_statement_meta {
    display: block;
    width: auto;
}

.investor_cover_eyebrow::before { display: none; }

.investor_statement h1 {
    max-width: 840px;
    margin-top: 22px;
    font-size: clamp(62px, 7vw, 84px);
    line-height: 0.99;
    letter-spacing: -4.2px;
}

.investor_statement_bottom {
    width: min(760px, 100%);
    margin-top: 34px;
    padding-top: 0;
    border-top: 0;
}

.investor_contact_bar {
    padding-top: 0;
    border-top: 0;
}

@media (max-width: 768px) {
    .investor_statement {
        max-width: 680px;
        padding: 44px 0;
    }

    .investor_statement h1 {
        max-width: 650px;
        font-size: clamp(50px, 10vw, 66px);
        letter-spacing: -3px;
    }
}

@media (max-width: 480px) {
    .investor_statement { padding: 36px 0 30px; }
    .investor_statement h1 {
        margin-top: 18px;
        font-size: 44px;
        letter-spacing: -2.2px;
    }

    .investor_statement_bottom {
        gap: 22px;
        margin-top: 28px;
    }
}

/*--- ACCENTI GIALLI COVER INVESTITORI ---*/

.investor_cover {
    background: #FFFFFF;
}

.investor_x_mark {
    background: #F2D750;
    opacity: 0.09;
}

.investor_cover_eyebrow {
    gap: 9px;
}

.investor_cover_eyebrow::before {
    display: inline-block;
    width: 34px;
    height: 3px;
    flex: 0 0 auto;
    border-radius: 99px;
    background-color: #D3B92F;
    box-shadow: none;
}

.investor_back > span { color: #B79D16; }
.investor_contact_bar > span { color: #99841B; }

/*--- MAPPA DI CRESCITA ---*/

.investor_growth {
    --growth-offset: 0.92;
    background-color: #FFFFFF;
}

.investor_growth_inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 110px);
    align-items: center;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 108px 28px 116px;
}

.investor_growth_copy { max-width: 490px; }

.investor_growth_copy h2,
.investor_compare_copy h2 {
    margin: 21px 0 0;
    color: #1A202C;
    font-size: clamp(40px, 4.4vw, 56px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    text-wrap: balance;
}

.investor_growth_copy h2 span,
.investor_compare_copy h2 span {
    background: linear-gradient(transparent 79%, rgba(242, 215, 80, 0.9) 79%);
}

.investor_growth_copy > p,
.investor_compare_copy > p {
    margin: 23px 0 0;
    color: #626871;
    font-size: 15px;
    line-height: 1.72;
}

.investor_growth_controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.investor_growth_controls button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid #D9DDE0;
    border-radius: 99px;
    background-color: transparent;
    color: #666C72;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.investor_growth_controls button span {
    color: #A08C22;
    font-size: 8px;
    font-weight: 700;
}

.investor_growth_controls button[aria-pressed="true"] {
    border-color: #F2D750;
    background-color: #F2D750;
    color: #202020;
    transform: translateY(-2px);
}

.investor_growth_visual {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 600 / 430;
    justify-self: end;
}

.investor_growth_visual svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.growth_contour {
    fill: none;
    stroke: #E7E9EB;
    stroke-dasharray: 3 9;
    stroke-linecap: round;
    stroke-width: 1.4;
}

.growth_contour_secondary { opacity: 0.58; }

.growth_route_base,
.growth_route {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.growth_route_base { stroke: #E0E3E5; }

.growth_route {
    stroke: #D3B92F;
    stroke-dasharray: 1;
    stroke-dashoffset: var(--growth-offset);
    transition: stroke-dashoffset 0.8s cubic-bezier(.215, .61, .355, 1);
}

.growth_point_ring {
    fill: #FFFFFF;
    stroke: #CCD0D3;
    stroke-width: 2;
    transition: fill 0.35s ease, stroke 0.35s ease, transform 0.35s ease;
}

.growth_point_core {
    fill: #CCD0D3;
    transition: fill 0.35s ease;
}

.growth_point.is-active .growth_point_ring {
    fill: rgba(242, 215, 80, 0.18);
    stroke: #D3B92F;
}

.growth_point.is-active .growth_point_core { fill: #D3B92F; }

.growth_label {
    position: absolute;
    display: grid;
    gap: 5px;
    opacity: 0.32;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(.215, .61, .355, 1);
}

.growth_label small {
    color: #9A8620;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.growth_label strong {
    color: #252B32;
    font-size: 13px;
}

.growth_label.is-active { opacity: 1; transform: translateY(-3px); }
.growth_label_local { bottom: 9%; left: 2%; }
.growth_label_region { bottom: 39%; left: 43%; }
.growth_label_country { top: 4%; right: 2%; text-align: right; }

/*--- PRIMA E DOPO ---*/

.investor_compare { background-color: #FFFFFF; }

.investor_compare_inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(58px, 8vw, 108px);
    align-items: center;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 104px 28px 112px;
}

.investor_compare_copy { max-width: 455px; }

.investor_compare_visual {
    --compare-position: 50%;
    position: relative;
    width: 100%;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid #E1E4E6;
    border-radius: 20px;
    background-color: #F3F4F4;
    box-shadow: 0 22px 56px rgba(32, 38, 46, 0.07);
    isolation: isolate;
}

.investor_compare_layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    pointer-events: none;
}

.investor_compare_layer::after {
    content: "";
    position: absolute;
    right: -84px;
    bottom: -126px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(30, 35, 42, 0.08);
    border-radius: 50%;
}

.investor_compare_before {
    z-index: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.92) 0 2px, transparent 2.5px) 0 0 / 19px 19px,
        linear-gradient(145deg, #F7F8F8 0%, #ECEEEF 100%);
}

.investor_compare_before::before {
    content: "";
    position: absolute;
    top: 47%;
    left: 30px;
    width: 126px;
    height: 1px;
    background: repeating-linear-gradient(90deg, #A9AFB4 0 8px, transparent 8px 15px);
    opacity: 0.58;
}

.investor_compare_after {
    z-index: 1;
    align-items: flex-end;
    background:
        radial-gradient(circle at 82% 18%, rgba(242, 215, 80, 0.34), transparent 35%),
        linear-gradient(145deg, #FFFFFF 0%, #FFFDF4 100%);
    clip-path: inset(0 0 0 var(--compare-position));
}

.investor_compare_after::before {
    content: "";
    position: absolute;
    top: 47%;
    right: 30px;
    width: 126px;
    height: 2px;
    border-radius: 99px;
    background-color: #D3B92F;
}

.investor_compare_after::after {
    border-color: rgba(211, 185, 47, 0.2);
    box-shadow: 0 0 0 38px rgba(242, 215, 80, 0.055);
}

.investor_compare_badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 99px;
    border: 1px solid rgba(53, 59, 65, 0.08);
    background-color: rgba(255, 255, 255, 0.88);
    color: #555C64;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.investor_compare_after .investor_compare_badge {
    border-color: rgba(211, 185, 47, 0.24);
    background-color: #F2D750;
    color: #252525;
}

.investor_compare_layer > div {
    position: relative;
    z-index: 1;
    width: 44%;
}

.investor_compare_after > div { text-align: right; }

.investor_compare_layer strong {
    display: block;
    color: #242A31;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.02;
    letter-spacing: -1.4px;
}

.investor_compare_layer ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.investor_compare_after ul { align-items: flex-end; }

.investor_compare_layer li {
    min-width: 86px;
    padding: 9px 12px;
    border: 1px solid rgba(66, 72, 78, 0.08);
    border-radius: 99px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 7px 18px rgba(38, 43, 48, 0.055);
    color: #535A62;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
}

.investor_compare_before li:nth-child(2) { transform: translateX(28px); }
.investor_compare_before li:nth-child(3) { transform: translateX(9px); }

.investor_compare_after li:nth-child(2) { transform: translateX(-18px); }
.investor_compare_after li:nth-child(3) { transform: translateX(-5px); }

.investor_compare_after li {
    position: relative;
    min-width: 94px;
    border-color: rgba(211, 185, 47, 0.24);
    background-color: #FFFFFF;
    box-shadow: 0 7px 18px rgba(133, 112, 7, 0.075);
    color: #252525;
}

.investor_compare_after li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 7px;
    border-radius: 50%;
    background-color: #D3B92F;
    vertical-align: 1px;
}

.investor_compare_divider {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: var(--compare-position);
    width: 2px;
    background-color: #D3B92F;
    transform: translateX(-50%);
    pointer-events: none;
}

.investor_compare_divider i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 5px solid #FFFFFF;
    border-radius: 50%;
    background-color: #F2D750;
    box-shadow: 0 10px 26px rgba(72, 62, 14, 0.18);
    color: #252525;
    font-size: 17px;
    font-style: normal;
    transform: translate(-50%, -50%);
}

.investor_compare_divider i svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.investor_compare_visual input[type="range"] {
    position: absolute;
    z-index: 4;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    appearance: none;
}

.investor_compare_visual:focus-within .investor_compare_divider i {
    outline: 3px solid rgba(211, 185, 47, 0.42);
    outline-offset: 4px;
}

.investor_compare_visual.is-demo .investor_compare_after {
    transition: clip-path 0.55s cubic-bezier(.215, .61, .355, 1);
}

.investor_compare_visual.is-demo .investor_compare_divider {
    transition: left 0.55s cubic-bezier(.215, .61, .355, 1);
}

@media (max-width: 900px) {
    .investor_growth_inner,
    .investor_compare_inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 46px;
        padding-right: 22px;
        padding-left: 22px;
    }

    .investor_growth_visual { justify-self: start; }
    .investor_compare_copy { max-width: 680px; order: -1; }
    .investor_compare_visual { max-width: 680px; }
}

@media (max-width: 480px) {
    .investor_growth_inner { gap: 36px; padding: 76px 16px 82px; }
    .investor_compare_inner { gap: 36px; padding: 76px 16px 84px; }
    .investor_growth_copy h2,
    .investor_compare_copy h2 { font-size: 37px; letter-spacing: -1.6px; }
    .investor_growth_copy > p,
    .investor_compare_copy > p { font-size: 14px; }
    .investor_growth_controls { margin-top: 26px; }
    .investor_growth_controls button { min-height: 38px; padding-inline: 11px; }
    .growth_label strong { font-size: 11px; }

    .investor_compare_visual { min-height: 380px; border-radius: 18px; }
    .investor_compare_layer { padding: 22px; }
    .investor_compare_layer::after { right: -100px; bottom: -120px; }
    .investor_compare_before::before { left: 22px; width: 74px; }
    .investor_compare_after::before { right: 22px; width: 74px; }
    .investor_compare_layer > div { width: 47%; }
    .investor_compare_layer strong { font-size: 22px; letter-spacing: -0.8px; }
    .investor_compare_layer ul { gap: 11px; margin-top: 18px; }
    .investor_compare_layer li { min-width: 68px; padding: 7px 9px; font-size: 8px; }
    .investor_compare_after li { min-width: 76px; }
    .investor_compare_before li:nth-child(2) { transform: translateX(16px); }
    .investor_compare_before li:nth-child(3) { transform: translateX(5px); }
    .investor_compare_after li:nth-child(2) { transform: translateX(-10px); }
    .investor_compare_after li:nth-child(3) { transform: translateX(-3px); }
    .investor_compare_divider i { width: 42px; height: 42px; border-width: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    .growth_route,
    .growth_point_ring,
    .growth_point_core,
    .growth_label,
    .investor_compare_after,
    .investor_compare_divider { transition: none; }
}

/*--- COVER INVESTITORI MOBILE COMPATTA ---*/

@media (max-width: 768px) {
    .investors_page .investor_cover,
    .investors_page .investor_cover_content {
        min-height: 100svh;
    }

    .investors_page .investor_cover {
        background:
            radial-gradient(circle at 104% 51%, rgba(242, 215, 80, 0.11), transparent 31%),
            #FFFFFF;
    }

    .investors_page .investor_cover_content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: max(122px, calc(env(safe-area-inset-top) + 94px)) 22px 48px;
    }

    .investors_page .investor_back {
        flex: 0 0 auto;
    }

    .investors_page .investor_statement {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        width: 100%;
        max-width: none;
        align-self: auto;
        margin-top: clamp(46px, 6vh, 58px);
        padding: 0;
    }

    .investors_page .investor_statement h1 {
        max-width: 570px;
        margin-top: 18px;
        font-size: clamp(43px, 10.5vw, 58px);
        line-height: 0.98;
        letter-spacing: -2.6px;
    }

    .investors_page .investor_statement_bottom {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        margin-top: 26px;
    }

    .investors_page .investor_statement_bottom > a {
        width: 100%;
        min-height: 52px;
        margin-top: auto;
        border-radius: 28px;
    }

    .investors_page .investor_contact_bar {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 14px;
        padding: 18px 20px;
        border: 0;
        border-radius: 28px;
        background-color: #F6F7F7;
    }
}

@media (max-width: 480px) {
    .investors_page .investor_cover_content {
        padding: max(112px, calc(env(safe-area-inset-top) + 86px)) 16px 46px;
    }

    .investors_page .investor_statement {
        margin-top: 44px;
    }

    .investors_page .investor_x_mark {
        top: 53%;
        right: -78px;
        width: 195px;
        opacity: 0.045;
    }

    .investors_page .investor_statement h1 {
        max-width: 360px;
        font-size: clamp(39px, 10.6vw, 43px);
        letter-spacing: -2px;
    }

    .investors_page .investor_statement_bottom p {
        max-width: 340px;
        font-size: 13.5px;
        line-height: 1.58;
    }

    .investors_page .investor_statement_bottom > a {
        width: 100%;
        min-height: 52px;
        margin-top: auto;
        border-radius: 26px;
    }

    .investors_page .investor_contact_bar {
        gap: 8px 14px;
        margin-top: 12px;
        padding: 17px 16px;
        border-radius: 26px;
    }

    .investors_page .investor_contact_bar p {
        font-size: 8px;
    }

    .investor_compare_divider i svg {
        width: 18px;
        height: 18px;
    }
}
