/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
    position: relative; min-height: 100svh; display: flex; align-items: center;
    padding-top: 64px; overflow: hidden; background: var(--dark);
    @media (max-width: 768px) {
        padding-top: 82px
    }

    .hero-bg {
        position: absolute; inset: 0; z-index: 0;
        img {
            width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: brightness(.8) saturate(.65);
            @media (max-width: 768px) {
                height: 112vh;
            }
        }
        &::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(90deg, rgba(11,13,18,.88) 0%, rgba(11,13,18,.5) 55%, rgba(11,13,18,.18) 100%),
            linear-gradient(to bottom, rgba(11,13,18,.3) 0%, transparent 30%, transparent 70%, rgba(11,13,18,.65) 100%);
        }
    }

    /* gold grid texture */
    .hero-grid {
        position: absolute; inset: 0; z-index: 0; pointer-events: none;
        background-image: linear-gradient(rgba(232,164,0,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,164,0,.022) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .hero-wrap {
        position: relative; z-index: 2;
        display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center;
        padding-block: 64px 88px; width: 100%;
    }

    .hero-content {
        .hero-over {
            display: flex; align-items: center; gap: 10px;
            font-family: var(--fd); font-size: 11px; font-weight: 700;
            letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
            &::before { content: '—'; opacity: .5; }
            @media (max-width: 768px) {
                display: none;
            }
        }

        .hero-hl {
            font-family: var(--fd); font-weight: 900;
            font-size: clamp(40px,4vw,92px); line-height: .91;
            color: #fff; margin-bottom: 30px;
            .ital { font-family: var(--fs); font-style: italic; font-weight: 600; color: var(--gold); font-size: .94em; }
        }

        .hero-sub {
            font-size: 17px; line-height: 1.78; color: rgba(255,255,255,.54); max-width: 700px; margin-bottom: 38px;
            strong { color: #fff; font-weight: 600; }
            @media (max-width: 768px) {
                font-size: 15px;
            }
        }

        .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }

        .hero-checks { display: flex; flex-wrap: wrap; gap: 14px 26px;
            .hc {
                display: flex; align-items: center; gap: 7px;
                font-family: var(--fd); font-size: 12px; font-weight: 700;
                letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.38);
                &::before { content: '✓'; color: var(--gold); font-size: 11px; flex-shrink: 0; }
            }
        }
    }

    .hero-card {
        position: relative;
        .photo-wrap {
            position: relative; border-radius: var(--rm); overflow: hidden; background: var(--dark-2);
            transition: box-shadow .4s ease, transform .4s ease;
            box-shadow:
                    0 40px 100px rgba(0,0,0,.7),
                    0 0 0 1px rgba(232,164,0,.25),
                    0 0 80px rgba(232,164,0,.12),
                    0 0 140px rgba(232,164,0,.05);
            &:hover {
                transform: translateY(-4px);
            }
            img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; display: block; }
            &::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(11,13,18,.78) 100%); z-index: 1; pointer-events: none; }
            .wc-badge {
                position: absolute; top: 0; right: 0; background: var(--gold); color: var(--dark);
                padding: 12px 16px; text-align: center; z-index: 2; border-radius: 0 var(--rm) 0 var(--rm);
                .wc-t { font-family: var(--fd); font-size: 12px; font-weight: 900; text-transform: uppercase; line-height: 1.2; letter-spacing: .04em; }
                .wc-y { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .1em; margin-top: 3px; opacity: .75; }
            }
            .exp-badge {
                position: absolute; bottom: 18px; left: 18px; z-index: 2;
                .exp-n { font-family: var(--fd); font-size: 48px; font-weight: 900; color: #fff; line-height: 1; }
                .exp-l { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-top: 2px; line-height: 1.4; }
            }

            /* ── PLAY BUTTON premium ── */
            .play-btn {
                position: absolute; bottom: 18px; right: 18px; z-index: 3;
                width: 62px; height: 62px;
                display: flex; align-items: center; justify-content: center;
                border-radius: 50%;
                background: rgba(11,13,18,.55);
                backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
                border: 1.5px solid rgba(232,164,0,.45);
                box-shadow: 0 0 0 0 rgba(232,164,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
                transition: all .35s cubic-bezier(.4,0,.2,1);
                text-decoration: none;

                /* triangolo SVG inline */
                &::after {
                    content: '';
                    display: block;
                    width: 0; height: 0;
                    border-style: solid;
                    border-width: 9px 0 9px 16px;
                    border-color: transparent transparent transparent var(--gold);
                    margin-left: 4px;
                    transition: border-color .25s ease;
                }

                &:hover {
                    background: var(--gold);
                    border-color: var(--gold);
                    box-shadow: 0 0 0 10px rgba(232,164,0,.12), 0 0 0 20px rgba(232,164,0,.05);
                    transform: scale(1.12);
                    &::after { border-color: transparent transparent transparent var(--dark); }
                }
            }
        }
    }

    .hero-scroll {
        position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
        display: flex; flex-direction: column; align-items: center; gap: 6px;
        font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.2);
        .scroll-line { width: 1px; height: 28px; background: linear-gradient(to bottom, rgba(255,255,255,.2), transparent); }
    }

    @media (max-width: 880px) {
        .hero-wrap { grid-template-columns: 1fr; padding-block: 48px 64px; }
    }
}

/* ══════════════════════════════════════════════
   DIAGNOSI GRATUITA (lead magnet + form)
══════════════════════════════════════════════ */
/* ── Animations (root level — required by browsers) ── */
@keyframes ring-pulse {
    0%, 100% { opacity: .3; transform: translate(-50%,-50%) scale(1); }
    50%       { opacity: .9; transform: translate(-50%,-50%) scale(1.02); }
}
@keyframes node-glow {
    0%, 100% { border-color: rgba(255,255,255,.09); box-shadow: none; }
    50% {
        border-color: rgba(232,164,0,.55);
        box-shadow: 0 0 32px rgba(232,164,0,.2), inset 0 0 12px rgba(232,164,0,.05);
    }
}
@keyframes hub-breathe {
    0%, 100% { box-shadow: 0 0 0 6px rgba(232,164,0,.05), 0 0 30px rgba(232,164,0,.12); }
    50%       { box-shadow: 0 0 0 10px rgba(232,164,0,.1), 0 0 60px rgba(232,164,0,.28); }
}
@keyframes line-fade {
    0%, 100% { opacity: .12; }
    50%       { opacity: .45; }
}

/* ════════════════════════════════════════════
   SEZIONE 2 — DIAGNOSI
   ↳ .dg-inner
       ↳ .dg-left  (tutto il testo)
       ↳ .dg-right (cerchio animato)
════════════════════════════════════════════ */
.diagnosi {
    background: var(--dark-2); padding: 88px 0;
    position: relative; overflow: hidden;

    @media (max-width: 520px) { padding: 60px 0; }

    .container {
        max-width: 1320px;
        @media (max-width: 768px) {
            padding-left: 20px;
            padding-right: 20px;
        }
    }

    /* ambient glow */
    &::before {
        content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
        width: 900px; height: 900px; border-radius: 50%;
        background: radial-gradient(circle, rgba(232,164,0,.05) 0%, transparent 65%);
        pointer-events: none;
    }

    /* ── outer grid ── */
    .dg-inner {
        display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
        @media (max-width: 860px) { grid-template-columns: 1fr; gap: 52px; }
    }

    /* ── LEFT ── */
    .dg-left {

        em.gold.d-block.mt-2 {
            color: #e8a40170;
            font-size: 14px;
            padding-bottom: 12px;
        }

        .dg-lead {
            font-size: 17px; color: rgba(255,255,255,.45); line-height: 1.8;
            margin-bottom: 28px;
            @media (max-width: 860px) { max-width: 100%; }
        }

        .dg-divider { height: 1px; background: rgba(255,255,255,.06); margin-bottom: 28px; }

        .method-head {
            margin-bottom: 20px;

            .method-label {
                font-family: var(--fd); font-size: 9px; font-weight: 800;
                letter-spacing: .2em; text-transform: uppercase;
                color: var(--gold); opacity: .7; margin-bottom: 8px;
            }
            .method-title {
                font-family: var(--fd); font-size: 20px; font-weight: 900;
                text-transform: uppercase; color: #fff;
                letter-spacing: .02em; margin-bottom: 8px; line-height: 1;
            }
            .method-desc { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; }
        }

        .method-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
            margin-bottom: 32px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.06);
            border-radius: var(--rm); overflow: hidden;

            .mg-item {
                display: flex; align-items: flex-start; gap: 12px;
                padding: 16px 14px; background: var(--dark-3); transition: background var(--t);

                &:hover { background: rgba(232,164,0,.05); }

                .mg-check {
                    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
                    background: rgba(232,164,0,.12); border: 1px solid rgba(232,164,0,.3);
                    display: flex; align-items: center; justify-content: center; margin-top: 2px;

                    svg { width: 10px; height: 10px; }
                }

                .mg-title {
                    font-family: var(--fd); font-size: 14px; font-weight: 900;
                    text-transform: uppercase; letter-spacing: .06em;
                    color: #fff; margin-bottom: 3px; line-height: 1;
                }
                .mg-desc { font-size: 12px; color: rgba(255,255,255,.32); line-height: 1.5; }
            }
        }

        .dg-proof {
            display: flex; gap: 20px; flex-wrap: wrap;
            margin-top: 16px; padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,.06);

            .dp-item {
                font-family: var(--fd); font-size: 10px; font-weight: 700;
                letter-spacing: .12em; text-transform: uppercase;
                color: rgba(255,255,255,.22);
                display: flex; align-items: center; gap: 6px;

                span { color: var(--gold); opacity: .7; }
            }
        }
    }

    /* ── RIGHT ── */
    .dg-right {
        display: flex; align-items: center; justify-content: center;
        @media (min-width: 768px) {
            padding-bottom: 75px;
        }
    }

    .diag-outer { position: relative; width: 100%; aspect-ratio: 1; }

    .diag-circle {
        position: relative; width: 100%; height: 100%;

        .d-ring {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
            border-radius: 50%; pointer-events: none;

            &.d-ring-1 {
                width: 100%; height: 100%; border: 1px solid rgba(232,164,0,.07);
                animation: ring-pulse 4s ease-in-out infinite;
            }
            &.d-ring-2 {
                width: 70%; height: 70%; border: 1px solid rgba(232,164,0,.12);
                animation: ring-pulse 4s ease-in-out infinite .7s;
            }
            &.d-ring-3 {
                width: 42%; height: 42%; border: 1px solid rgba(232,164,0,.22);
                animation: ring-pulse 4s ease-in-out infinite 1.4s;
            }
        }

        .d-svg {
            position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;

            line { animation: line-fade 4s ease-in-out infinite; }
            line:nth-child(2) { animation-delay: 1s; }
            line:nth-child(3) { animation-delay: 2s; }
            line:nth-child(4) { animation-delay: 3s; }
        }

        .d-hub {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
            width: 22%; height: 22%; border-radius: 50%;
            background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
            border: 2px solid rgba(232,164,0,.5);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; z-index: 10;
            animation: hub-breathe 4s ease-in-out infinite;

            .d-hub-main {
                font-family: var(--fd); font-size: clamp(9px,1.6vw,13px); font-weight: 900;
                text-transform: uppercase; letter-spacing: .08em; color: var(--gold); line-height: 1.1;
            }
            .d-hub-sub {
                font-family: var(--fd); font-size: clamp(7px,1vw,9px); font-weight: 700;
                text-transform: uppercase; letter-spacing: .08em;
                color: rgba(255,255,255,.25); margin-top: 2px;
            }
        }

        .d-node {
            position: absolute; width: 29%; height: 24%;
            background: var(--dark-3); border: 1px solid rgba(255,255,255,.09);
            border-radius: var(--rm);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; padding: 10px;
            transition: transform .3s; cursor: default; z-index: 5;

            &.tl { top: 3%; left: 3%;    animation: node-glow 4s ease-in-out infinite 0s; }
            &.tr { top: 3%; right: 3%;   animation: node-glow 4s ease-in-out infinite 1s; }
            &.bl { bottom: 3%; left: 3%; animation: node-glow 4s ease-in-out infinite 2s; }
            &.br { bottom: 3%; right: 3%;animation: node-glow 4s ease-in-out infinite 3s; }

            &:hover { transform: scale(1.06); }

            .d-num {
                font-family: var(--fd); font-size: clamp(7px,1vw,9px); font-weight: 800;
                letter-spacing: .16em; color: var(--gold); opacity: .6; margin-bottom: 4px;
            }
            .d-title {
                font-family: var(--fd); font-size: clamp(13px,1.8vw,17px); font-weight: 900;
                text-transform: uppercase; letter-spacing: .04em;
                color: #fff; margin-bottom: 3px; line-height: 1;
            }
            .d-sub { font-size: clamp(9px,1.1vw,11px); color: rgba(255,255,255,.3); line-height: 1.35; }
        }
    }

} /* end .diagnosi */

/*.diagnosi {*/
/*    background: var(--dark-2); padding-block: var(--py); position: relative; overflow: hidden;*/

/*    &::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }*/
/*    .dg-glow { position: absolute; top: 40%; left: 30%; width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(232,164,0,.06) 0%, transparent 65%); pointer-events: none; }*/

/*    .dg-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;*/
/*        @media (max-width: 880px) { grid-template-columns: 1fr; }*/
/*    }*/

/*    .dg-left {*/
/*        .label { margin-bottom: 12px; }*/
/*        .h-lg { color: #fff; margin-bottom: 18px; }*/
/*        .dg-lead { font-size: 17px; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 32px; }*/
/*        .dg-includes {*/
/*            .di-title { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }*/
/*            .di-list { display: flex; flex-direction: column; gap: 10px;*/

/*                .di {*/
/*                    display: flex;*/
/*                    flex-direction: column;*/
/*                    padding-left: 25px;*/
/*                    align-items: flex-start;*/
/*                    gap: 10px;*/
/*                    font-size: 15px;*/
/*                    color: rgba(255, 255, 255, .6);*/
/*                    line-height: 1.5;*/

/*                    &::before {*/
/*                        content: '✔';*/
/*                        color: var(--gold);*/
/*                        font-size: 13px;*/
/*                        flex-shrink: 0;*/
/*                        margin-top: 2px;*/
/*                        font-weight: 700;*/
/*                        position: absolute;*/
/*                        left: 0;*/
/*                    }*/
/*                }*/
/*            }*/
/*        }*/
/*    }*/

/*    .dg-right {*/
/*        .dg-form {*/
/*            background: var(--dark-3); border: 1px solid rgba(255,255,255,.08); border-radius: var(--rl); padding: 36px; overflow: hidden;*/
/*            &::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); margin: -36px -36px 28px; }*/

/*            .df-title { font-family: var(--fd); font-size: 20px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 6px; }*/
/*            .df-sub { font-size: 14px; color: rgba(255,255,255,.35); margin-bottom: 24px; }*/

/*            .df-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }*/
/*            .df-field { display: flex; flex-direction: column; gap: 5px;*/
/*                label { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); }*/
/*                input, textarea {*/
/*                    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 11px 14px; font-size: 14px; color: #fff; font-family: var(--fb); outline: none; transition: border-color var(--t);*/
/*                    &::placeholder { color: rgba(255,255,255,.2); }*/
/*                    &:focus { border-color: rgba(232,164,0,.4); }*/
/*                }*/
/*                textarea { resize: vertical; min-height: 90px; }*/
/*            }*/
/*            .df-cta { width: 100%; justify-content: center; font-size: 14px; padding: 15px; }*/
/*            .df-note { text-align: center; font-size: 12px; color: rgba(255,255,255,.2); margin-top: 12px; }*/
/*        }*/

/*        !* ── MOCKUP DOCUMENTO ── *!*/
/*        .dg-mockup {*/
/*            .dm-label { font-family:var(--fd); font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); opacity:.7; margin-bottom:16px; display:block; }*/
/*            .dm-doc { background:var(--dark-3); border:1px solid rgba(255,255,255,.1); border-radius:var(--rl); overflow:hidden; box-shadow:0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(232,164,0,.08);*/
/*                &::before { content:''; display:block; height:4px; background:linear-gradient(90deg,var(--gold),var(--gold-lt)); }*/
/*            }*/
/*            .dm-header { padding:22px 26px 18px; border-bottom:1px solid rgba(255,255,255,.06); display:flex; align-items:center; justify-content:space-between;*/
/*                .dm-h-left { display:flex; align-items:center; gap:10px; }*/
/*                .dm-ico { font-size:20px; }*/
/*                .dm-h-title { font-family:var(--fd); font-size:12px; font-weight:900; text-transform:uppercase; color:#fff; letter-spacing:.04em; }*/
/*                .dm-h-sub { font-size:11px; color:rgba(255,255,255,.3); margin-top:1px; }*/
/*                .dm-badge { font-family:var(--fd); font-size:9px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); background:rgba(232,164,0,.1); border:1px solid rgba(232,164,0,.2); border-radius:100px; padding:4px 10px; }*/
/*            }*/
/*            .dm-body { padding:20px 26px; display:flex; flex-direction:column; gap:16px; }*/
/*            .dm-section {*/
/*                .dm-s-label { font-family:var(--fd); font-size:9px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); opacity:.55; margin-bottom:7px; }*/
/*                .dm-s-title { font-family:var(--fd); font-size:13px; font-weight:900; color:#fff; text-transform:uppercase; margin-bottom:8px; }*/
/*                .dm-bars { display:flex; flex-direction:column; gap:5px; }*/
/*                .dm-bar { height:7px; border-radius:100px; background:rgba(255,255,255,.06); overflow:hidden;*/
/*                    &::after { content:''; display:block; height:100%; background:linear-gradient(90deg,rgba(232,164,0,.45),rgba(232,164,0,.12)); border-radius:100px; }*/
/*                }*/
/*                .dm-bar.w90::after { width:90%; } .dm-bar.w70::after { width:70%; } .dm-bar.w55::after { width:55%; } .dm-bar.w80::after { width:80%; }*/
/*                .dm-items { display:flex; flex-direction:column; gap:6px; }*/
/*                .dm-item { display:flex; align-items:flex-start; gap:9px; font-size:12px; color:rgba(255,255,255,.4); line-height:1.45;*/
/*                    .dm-dot { color:var(--gold); font-size:9px; flex-shrink:0; margin-top:2px; font-weight:700; }*/
/*                    strong { color:rgba(255,255,255,.7); font-weight:600; }*/
/*                }*/
/*            }*/
/*            .dm-divider { height:1px; background:rgba(255,255,255,.05); }*/
/*            .dm-blur-wrap { position:relative; }*/
/*            .dm-blur { position:absolute; bottom:0; left:0; right:0; height:140px; background:linear-gradient(to bottom,transparent,var(--dark-3)); border-radius:0 0 var(--rl) var(--rl); pointer-events:none; }*/
/*            .dm-footer { padding:14px 26px; border-top:1px solid rgba(255,255,255,.05); display:flex; align-items:center; justify-content:space-between;*/
/*                .dm-f-left { font-size:11px; color:rgba(255,255,255,.2); }*/
/*                .dm-f-badge { font-family:var(--fd); font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); opacity:.4; }*/
/*            }*/
/*            .dm-cta-box { margin-top:18px; text-align:center;*/
/*                .dm-cta-note { font-size:13px; color:rgba(255,255,255,.35); margin-bottom:14px; line-height:1.55; }*/
/*                .btn { width:100%; justify-content:center; }*/
/*            }*/
/*            .dm-proof { display:flex; align-items:center; justify-content:center; gap:14px; margin-top:12px;*/
/*                .dp-item { display:flex; align-items:center; gap:5px; font-size:11px; color:rgba(255,255,255,.40); }*/
/*                .dp-sep { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.12); }*/
/*            }*/
/*        }*/
/*    }*/
/*}*/

/* ══════════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════════ */
.problema {
    background: var(--dark-2); padding-block: var(--py);

    .container {
        @media (max-width: 768px) {
            padding-left: 20px;
            padding-right: 20px;
        }
    }

    .prob-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }

    .prob-left {
        .h-xl { color: #fff; margin-bottom: 36px; }
        .prob-list { list-style: none; display: flex; flex-direction: column; gap: 0;
            li {
                display: grid; grid-template-columns: 44px 1fr; gap: 0 16px; padding: 22px 0;
                border-bottom: 1px solid rgba(255,255,255,.06);
                @media (max-width: 768px) {
                  gap: 0;
                    padding-right: 20px;
                }
                &:first-child { border-top: 1px solid rgba(255,255,255,.06); }
                .num { font-family: var(--fd); font-size: 11px; font-weight: 700; color: var(--gold); opacity: .4; letter-spacing: .1em; padding-top: 2px; }
                .pt  { font-family: var(--fd); font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .02em; }
                .pd  { font-size: 15px; color: rgba(255,255,255,.4); line-height: 1.65; grid-column: 2; }
            }
        }
    }

    .prob-right {
        position: sticky; top: 96px;
        .quote-box {
            background: var(--dark-3); border: 1px solid rgba(255,255,255,.07);
            border-left: 3px solid var(--gold); border-radius: var(--rm); padding: 30px 28px; margin-bottom: 20px;
            @media (max-width: 768px) {
                margin-right: 5px;
            }
            .qt { font-family: var(--fs); font-style: italic; font-size: 18px; color: rgba(255,255,255,.82); line-height: 1.55; margin-bottom: 14px;
                strong { color: #fff; font-style: normal; }
            }
            .qa { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.25);
                span { color: var(--gold); }
            }
        }
        .svolta {
            background: var(--dark-3); border: 1px solid rgba(255,255,255,.07); border-radius: var(--rm); padding: 26px 28px;
            @media (max-width: 768px) {
                margin-right: 5px;
            }
            .sv-label { font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 11px; }
            .sv-text  { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.7; strong { color: rgba(255,255,255,.8); font-weight: 600; } }
        }
        @media (max-width: 768px) {
            a.btn.btn-gold.btn-lg {
                width: 100%;
                margin-left: -10px;
            }
        }
    }

    @media (max-width: 860px) { .prob-grid { grid-template-columns: 1fr; } .prob-right { position: static; } }
}


/* ══════════════════════════════════════════════
   ABOUT  (storia cucina integrata)
══════════════════════════════════════════════ */
.about {
    background: var(--off-white); padding-block: var(--py);

    .about-grid { display: grid; grid-template-columns: 400px 1fr; gap: 64px; align-items: start; }

    .about-left {
        .about-photo {
            position: relative; border-radius: var(--rm); overflow: hidden; margin-bottom: 20px;
            img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; display: block; filter: grayscale(12%); transition: filter .4s ease; }
            &:hover img { filter: grayscale(0); }
            &::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(11,13,18,.5), transparent); pointer-events: none; }
        }
        .cred-stack { display: flex; flex-direction: column; gap: 8px;
            .cred-card {
                display: flex; align-items: center; gap: 12px;
                background: #fff; border: 1px solid var(--lb); border-radius: var(--r); padding: 14px 16px;
                transition: border-color var(--t), transform var(--t);
                &:hover { border-color: var(--gold); transform: translateX(4px); }
                .ci { font-size: 22px; flex-shrink: 0; }
                .ci-body { flex: 1;
                    .ci-t { font-family: var(--fd); font-size: 14px; font-weight: 800; color: var(--dark); }
                    .ci-s { font-size: 12px; color: var(--muted); }
                }
            }
        }
    }

    .about-right {
        .about-name { font-family: var(--fd); font-size: clamp(42px,5vw,68px); font-weight: 900; text-transform: uppercase; line-height: .88; margin-bottom: 8px;
            span { color: var(--gold); }
        }
        .about-role { font-family: var(--fd); font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; }

        .about-body {
            display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px;
            p { font-size: 16px; color: var(--body); line-height: 1.75; strong { color: var(--dark); font-weight: 600; } }

            /* STORIA CUCINA — pull quote */
            .story-pull {
                background: var(--dark); border-radius: var(--rm); padding: 26px 28px;
                position: relative; overflow: hidden;
                &::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
                .sp-label { font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
                .sp-items { display: flex; flex-direction: column; gap: 8px;
                    .sp-item { display: flex; align-items: flex-start; gap: 10px;
                        .sp-ico { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
                        p { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.55; strong { color: rgba(255,255,255,.88); font-weight: 600; } }
                    }
                }
            }

            .about-pull {
                background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 var(--r) var(--r) 0; padding: 18px 20px;
                p { font-family: var(--fs); font-style: italic; font-size: 16px; color: var(--dark); line-height: 1.65; strong { font-style: normal; } }
            }
        }

        .about-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
        .about-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
        .about-socials { display: flex; gap: 8px;
            a { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border: 1.5px solid var(--lb); border-radius: var(--r); color: var(--muted); transition: all var(--t); &:hover { border-color: var(--gold); color: var(--gold); } }
        }
    }

    @media (max-width: 940px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-left { max-width: 380px; } }
}


/* ══════════════════════════════════════════════
   MISSIONE — manifesto
   (nuovo: prende il cuore del sito attuale,
   lo converte in leva di fiducia)
══════════════════════════════════════════════ */
.missione {
    background: var(--dark); padding-block: var(--py); overflow: hidden; position: relative;

    .container {
        @media (max-width: 768px) {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
    /* sfondo decorativo */
    &::before {
        content: '';
        position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
        background: radial-gradient(ellipse at 80% 50%, rgba(232,164,0,.07) 0%, transparent 65%);
        pointer-events: none;
    }

    .miss-inner { position: relative; z-index: 1; }

    .miss-header { margin-bottom: 56px; max-width: 660px;
        .h-lg { color: #fff; margin-bottom: 16px; }
        .miss-lead { font-size: 17px; color: rgba(255,255,255,.45); line-height: 1.75; }
    }

    .miss-grid {
        display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
        background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.05);
        border-radius: var(--rm); overflow: hidden; margin-bottom: 48px;

        .mc {
            background: var(--dark-2); padding: 34px 30px; transition: background var(--t);
            &:hover { background: var(--dark-3); }
            .mc-ico   { font-size: 26px; margin-bottom: 16px; }
            .mc-title { font-family: var(--fd); font-size: 20px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
            .mc-text  { font-size: 15px; color: rgba(255,255,255,.42); line-height: 1.7;
                strong { color: rgba(255,255,255,.78); font-weight: 600; }
            }
        }

        @media (max-width: 720px) { grid-template-columns: 1fr; }
    }

    /* manifesto — frase madre */
    .miss-manifesto {
        background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
        border: 1px solid rgba(232,164,0,.18); border-radius: var(--rm); padding: 44px 48px;
        display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
        position: relative; overflow: hidden;
        &::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold)); }
        .mm-text {
            .mm-quote { font-family: var(--fd); font-size: 60px; font-weight: 900; color: var(--gold); opacity: .08; line-height: .8; margin-bottom: -6px; }
            blockquote { font-family: var(--fs); font-style: italic; font-size: clamp(18px, 2.2vw, 25px); color: #fff; line-height: 1.45; margin-bottom: 16px;
                em { color: var(--gold); font-style: normal; font-weight: 600; }
            }
            .mm-attr { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); display: flex; align-items: center; gap: 9px;
                &::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
            }
        }
        .mm-sign { text-align: center; flex-shrink: 0;
            .ms-initials { font-family: var(--fd); font-size: 38px; font-weight: 900; color: var(--gold); opacity: .18; }
            .ms-firma    { font-family: var(--fs); font-style: italic; font-size: 14px; color: rgba(255,255,255,.25); margin-top: 4px; white-space: nowrap; }
        }
        @media (max-width: 640px) { grid-template-columns: 1fr; padding: 32px 24px; .mm-sign { display: none; } }
    }
}


/* ══════════════════════════════════════════════
   SPEAKING
══════════════════════════════════════════════ */
.speaking {
    background: var(--cream); padding-block: var(--py); overflow: hidden;
    .container {
        @media (max-width: 768px) {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
    .spk-header { margin-bottom: 52px;
        .h-lg { color: #000; margin-bottom: 16px; }
        .spk-lead { font-size: 17px; color: #000; line-height: 1.7; }
    }

    /*.spk-hero {*/
    /*    display: grid; grid-template-columns: 1.2fr 1fr; gap: 2px;*/
    /*    border-radius: var(--rm) var(--rm) 0 0; overflow: hidden; border: 1px solid rgba(255,255,255,.06); margin-bottom: 2px; border-bottom: none;*/

    /*    .sh-img {*/
    /*        position: relative; aspect-ratio: 16/10; overflow: hidden;*/
    /*        img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }*/
    /*        &:hover img { transform: scale(1.04); }*/
    /*        &::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,13,18,.55) 0%, transparent 60%); }*/
    /*        .sh-label { position: absolute; top: 22px; left: 22px; z-index: 2;*/
    /*            .sh-ev   { font-family: var(--fd); font-size: clamp(16px,2.2vw,24px); font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.1; }*/
    /*            .sh-city { font-family: var(--fd); font-size: 14px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }*/
    /*        }*/
    /*    }*/

    /*    .sh-events { background: var(--dark-3); display: flex; flex-direction: column;*/
    /*        .ev {*/
    /*            display: flex; align-items: center; gap: 14px; padding: 22px 24px;*/
    /*            border-bottom: 1px solid rgba(255,255,255,.05); cursor: pointer; transition: background var(--t);*/
    /*            &:last-child { border-bottom: none; }*/
    /*            &:hover { background: var(--dark-4); }*/
    /*            &.active { background: var(--dark-4); border-left: 3px solid var(--gold); padding-left: 21px; }*/
    /*            .ev-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: .35; }*/
    /*            &.active .ev-dot { opacity: 1; }*/
    /*            .ev-info { flex: 1; }*/
    /*            .ev-title { font-family: var(--fd); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 2px; }*/
    /*            .ev-place { font-size: 13px; color: rgba(255,255,255,.34); }*/
    /*            .ev-arr   { color: var(--gold); opacity: 0; transition: opacity var(--t); }*/
    /*            &:hover .ev-arr, &.active .ev-arr { opacity: 1; }*/
    /*        }*/
    /*    }*/
    /*    @media (max-width: 700px) { grid-template-columns: 1fr; }*/
    /*}*/
    .spk-hero {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 0;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
        margin-bottom: 0;

        .sh-img {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: #0B0D12;

            &::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(11,13,18,.65) 0%, transparent 55%);
                pointer-events: none;
                z-index: 1;
            }

            .sh-bg {
                position: absolute;
                inset: 0;
                background-size: cover;
                background-position: center;
                opacity: 0;
                transform: scale(1.08);
                will-change: transform, opacity;
                transition: opacity .7s cubic-bezier(.4,0,.2,1), transform 7s cubic-bezier(.25,.46,.45,.94);
                &.visible {
                    opacity: 1;
                    transform: scale(1);
                }
            }

            .sh-label {
                position: absolute;
                top: 22px;
                left: 22px;
                z-index: 2;
                transition: opacity .25s ease;

                .sh-ev {
                    font-family: var(--fd);
                    font-size: clamp(16px, 2.2vw, 24px);
                    font-weight: 900;
                    text-transform: uppercase;
                    color: #fff;
                    line-height: 1.1;
                }

                .sh-city {
                    font-family: var(--fd);
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: .15em;
                    text-transform: uppercase;
                    color: var(--gold);
                    margin-top: 4px;
                }
            }
        }

        .sh-events {
            background: var(--dark-3);
            display: flex;
            flex-direction: column;

            .ev {
                display: flex;
                align-items: center;
                gap: 14px;
                padding: 22px 24px;
                border-bottom: 1px solid rgba(255,255,255,.05);
                cursor: pointer;
                transition: background var(--t);

                &:last-child { border-bottom: none; }
                &:hover { background: var(--dark-4); }
                &.active {
                    background: var(--dark-4);
                    border-left: 3px solid var(--gold);
                    padding-left: 21px;
                }

                .ev-dot {
                    width: 7px; height: 7px;
                    border-radius: 50%;
                    background: var(--gold);
                    flex-shrink: 0;
                    opacity: .3;
                }

                &.active .ev-dot { opacity: 1; }

                .ev-info { flex: 1; }

                .ev-title {
                    font-family: var(--fd);
                    font-size: 17px;
                    font-weight: 700;
                    color: #fff;
                    margin-bottom: 2px;
                }

                .ev-place {
                    font-size: 13px;
                    color: rgba(255,255,255,.34);
                }

                .ev-arr {
                    color: var(--gold);
                    opacity: 0;
                    transition: opacity var(--t);
                }

                &:hover .ev-arr,
                &.active .ev-arr { opacity: 1; }
            }
        }

        @media (max-width: 700px) { grid-template-columns: 1fr; }
    }

    .spk-gallery {
        display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
        border-radius: 0 0 var(--rm) var(--rm); overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-top: none;
        .gi { position: relative; overflow: hidden;
            &:first-child { grid-column: span 2; grid-row: span 2; }
            img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease, filter .4s ease; filter: grayscale(22%); aspect-ratio: 1; }
            &:first-child img { aspect-ratio: auto; height: 100%; }
            &:hover img { transform: scale(1.07); filter: grayscale(0); }
            &::after { content: ''; position: absolute; inset: 0; background: rgba(11,13,18,.2); transition: background var(--t); }
            &:hover::after { background: rgba(11,13,18,.04); }
        }
        @media (max-width: 700px) { grid-template-columns: repeat(2,1fr); .gi:first-child { grid-column: span 2; } }
    }
    .sh-img img {
        will-change: transform;
        transition: transform .6s cubic-bezier(.25,.46,.45,.94) !important;
        transform-origin: center center;
    }
    .sh-bg {
        transform: scale(1);
        transition: opacity .7s cubic-bezier(.4,0,.2,1), transform 6s cubic-bezier(.25,.46,.45,.94);
    }

    .sh-bg.visible {
        opacity: 1;
        transform: scale(1.06);
    }

    .spk-stats {
        display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
        background: rgba(255,255,255,.04);
        border-radius: var(--rm); overflow: hidden; margin-top: 24px;
        .ss { background: var(--dark-2); padding: 24px 18px; text-align: center;
            .ss-n { font-family: var(--fd); font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
            .ss-l { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); line-height: 1.5; }
        }
        @media (max-width: 640px) { grid-template-columns: repeat(2,1fr); }
    }
}


/* ══════════════════════════════════════════════
   SERVIZI
══════════════════════════════════════════════ */
.servizi {
    background: var(--off-white); padding-block: var(--py);
    .container {
        @media (max-width: 768px) {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
    .sv-header { margin-bottom: 44px;
        .h-lg { margin-bottom: 14px; color:#000}
        .sv-lead { font-size: 17px; color: var(--body); line-height: 1.7; }
    }

    .sv-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--lb); border-radius: var(--rm); overflow: hidden;
        .si {
            display: grid; grid-template-columns: 60px 1fr auto; gap: 0 24px; align-items: start;
            background: #fff; padding: 28px 28px; border-bottom: 1px solid var(--lb);
            transition: background var(--t); cursor: default;
            @media (max-width: 768px) {
                gap: 0;
                grid-template-columns: 20px 1fr auto;
                padding: 20px;
            }
            &:last-child { border-bottom: none; }
            &:hover { background: var(--off-white); }
            &.featured { background: var(--dark); border-color: var(--dark);
                &:hover { background: var(--dark-2); }
                .si-num   { color: var(--gold); opacity: .5; }
                .si-title { color: #fff; }
                .si-desc  { color: rgba(255,255,255,.5); }
                .si-cta   { color: var(--gold); border-color: rgba(232,164,0,.28); &:hover { background: var(--gold); color: var(--dark); } }
            }
            .si-num   { font-family: var(--fd); font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .1em; padding-top: 3px; }
            .si-body  { .si-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; } }
            .si-title { font-family: var(--fd); font-size: 21px; font-weight: 900; text-transform: uppercase; color: var(--dark); }
            .si-desc  { font-size: 15px; color: var(--body); line-height: 1.65; margin-bottom: 12px; }
            .si-tags  { display: flex; flex-wrap: wrap; gap: 5px; }
            .si-cta   { font-family: var(--fd); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 9px 14px; border: 1.5px solid var(--lb); border-radius: var(--r); white-space: nowrap; transition: all var(--t); align-self: center; &:hover { border-color: var(--gold); color: var(--gold); } }
            .si-sub-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
            .sl-item { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--body); }
            .sl-dot { color: var(--gold); flex-shrink: 0; font-weight: 700; }
        }
        .si.featured .sl-item { color: rgba(255,255,255,.55); }
    }
    @media (max-width: 640px) { .si { grid-template-columns: 44px 1fr; } .si-cta { display: none; } }
}


/* ══════════════════════════════════════════════
   METODO
══════════════════════════════════════════════ */
.metodo {
    background: var(--cream); padding-block: var(--py);

    .me-header { margin-bottom: 48px; text-align: center;
        .h-lg { margin-bottom: 14px; }
        .me-lead { font-size: 17px; color: var(--body); max-width: 520px; line-height: 1.7; margin-inline: auto; }
    }

    .me-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--lb); border: 1px solid var(--lb); border-radius: var(--rm); overflow: hidden; margin-bottom: 40px;
        .fase {
            background: var(--off-white); padding: 30px 24px; transition: background var(--t);
            &:hover { background: #fff; }
            .f-num   { font-family: var(--fd); font-size: 52px; font-weight: 900; color: var(--dark); opacity: .06; line-height: 1; margin-bottom: -8px; }
            .f-label { font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
            .f-title { font-family: var(--fd); font-size: 18px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 10px; }
            .f-desc  { font-size: 14px; color: var(--body); line-height: 1.65; strong { color: var(--dark); font-weight: 600; } }
        }
        @media (max-width: 720px) { grid-template-columns: repeat(2,1fr); }
        @media (max-width: 480px) { grid-template-columns: 1fr; }
    }

    .me-cta { text-align: center; }
}


/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
    background: var(--dark); padding-block: var(--py);

    .t-header { margin-bottom: 48px;
        .h-lg { color: #fff; margin-bottom: 14px; }
        .t-lead { font-size: 17px; color: rgba(255,255,255,.42); max-width: 500px; line-height: 1.7; }
    }

    .t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 20px;
        .tc {
            background: var(--dark-2); border: 1px solid rgba(255,255,255,.06); border-radius: var(--rm); padding: 26px; transition: border-color var(--t), transform var(--t);
            &:hover { border-color: rgba(232,164,0,.2); transform: translateY(-3px); }
            .tc-badge { font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); opacity: .5; margin-bottom: 10px; }
            .stars    { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
            .tc-text  { font-family: var(--fs); font-style: italic; font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 18px; strong { color: #fff; font-style: normal; } }
            .tc-auth  { display: flex; align-items: center; gap: 10px;
                .av { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-dim); border: 1px solid rgba(232,164,0,.2); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 12px; font-weight: 900; color: var(--gold); flex-shrink: 0; }
                .tc-name { font-family: var(--fd); font-size: 15px; font-weight: 800; color: #fff; }
                .tc-role { font-size: 12px; color: rgba(255,255,255,.3); }
            }
        }
        @media (max-width: 720px) { grid-template-columns: 1fr; }
    }

    .t-featured {
        background: var(--dark-3); border: 1px solid rgba(232,164,0,.15); border-radius: var(--rm); padding: 40px; position: relative; overflow: hidden;
        &::before { content: '"'; position: absolute; top: 10px; right: 30px; font-family: var(--fs); font-size: 120px; color: var(--gold); opacity: .06; line-height: 1; pointer-events: none; }
        .tf-text   { font-family: var(--fs); font-style: italic; font-size: 18px; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: 20px; strong { color: #fff; font-style: normal; } }
        .tf-result { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-dim); border: 1px solid rgba(232,164,0,.25); border-radius: var(--r); padding: 8px 16px; font-family: var(--fd); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: 22px; strong { font-weight: 900; } }
        .tf-auth   { display: flex; align-items: center; gap: 12px;
            .av-lg { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-dim); border: 1px solid rgba(232,164,0,.2); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 16px; font-weight: 900; color: var(--gold); flex-shrink: 0; }
            .tf-name { font-family: var(--fd); font-size: 17px; font-weight: 900; color: #fff; }
            .tf-role { font-size: 13px; color: rgba(255,255,255,.3); }
        }
        @media (max-width: 640px) { padding: 26px 22px; }
    }
}


/* ══════════════════════════════════════════════
   GARANZIA
══════════════════════════════════════════════ */
.garanzia {
    background: var(--off-white); padding-block: var(--py);

    .gar-header { margin-bottom: 56px; text-align: center;
        .gar-shield { width: 56px; height: 56px; background: var(--gold-dim); border: 1px solid rgba(232,164,0,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; }
        .h-lg { margin-bottom: 12px; color:#000}
        .gar-lead { font-size: 17px; color: var(--body); max-width: 520px; line-height: 1.75; margin-inline: auto; }
    }

    .gar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px;
        @media (max-width: 860px) { grid-template-columns: 1fr; }
    }

    /* card base */
    .gar-card {
        border-radius: var(--rl); overflow: hidden; border: 1px solid var(--lb); background: #fff; position: relative;
        &::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }

        .gc-head { padding: 36px 36px 24px; border-bottom: 1px solid var(--lb);
            .gc-num { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
                &::before { content: ''; display: block; width: 18px; height: 2px; background: var(--gold); }
            }
            .gc-ico { font-size: 32px; margin-bottom: 14px; }
            .gc-title { font-family: var(--fd); font-size: 26px; font-weight: 900; text-transform: uppercase; color: var(--dark); line-height: .95; margin-bottom: 10px; }
            .gc-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-dim); border: 1px solid rgba(232,164,0,.25); border-radius: 20px; padding: 5px 12px; font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
        }

        .gc-body { padding: 28px 36px;
            .gc-desc { font-size: 15px; color: var(--body); line-height: 1.75; }
        }

        .gc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--lb);
            .gcc { padding: 24px 28px;
                &:first-child { border-right: 1px solid var(--lb); }
                .gcc-title { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
                .gcc-list { display: flex; flex-direction: column; gap: 8px;
                    li { list-style: none; display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--body); line-height: 1.5;
                        &::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
                    }
                }
                &.include .gcc-list li::before { background: var(--gold); }
                &.exclude .gcc-list li { color: var(--muted);
                    &::before { background: rgba(110,112,128,.3); }
                }
            }
        }
    }

    /* footer rassicurante */
    .gar-footer { background: var(--dark); border-radius: var(--rm); padding: 28px 36px; display: flex; align-items: center; gap: 20px;
        .gf-ico { font-size: 28px; flex-shrink: 0; }
        .gf-text { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.65; strong { color: rgba(255,255,255,.85); font-weight: 600; } }
        .gf-cta { margin-left: auto; flex-shrink: 0; }
        @media (max-width: 720px) { flex-direction: column; align-items: flex-start; .gf-cta { margin-left: 0; } }
    }
}


/* ══════════════════════════════════════════════
   FIT — è giusto per te?
══════════════════════════════════════════════ */
.fit {
    background: var(--dark-2); padding-block: var(--py);

    .fit-header { margin-bottom: 44px; text-align: center;
        .h-xl { color: #fff; margin-bottom: 14px; }
        .fit-lead { font-size: 17px; color: rgba(255,255,255,.4); max-width: 440px; line-height: 1.7; margin-inline: auto; }
    }

    .fit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
        .fc {
            border-radius: var(--rm); padding: 36px; overflow: hidden;
            .fc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
                .fc-ico   { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; flex-shrink: 0; }
                .fc-title { font-family: var(--fd); font-size: 20px; font-weight: 900; text-transform: uppercase; }
            }
            ul { list-style: none; display: flex; flex-direction: column; gap: 11px;
                li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.55;
                    &::before { flex-shrink: 0; font-weight: 900; margin-top: 1px; }
                }
            }
            &.yes { background: var(--dark-3);
                .fc-ico { background: rgba(92,186,122,.15); color: #5cba7a; }
                .fc-title { color: #fff; }
                li { color: rgba(255,255,255,.62); &::before { content: attr(data-icon); color: var(--gold); } }
            }
            &.no { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05);
                .fc-ico { background: rgba(255,80,80,.12); color: rgba(255,100,100,.6); }
                .fc-title { color: rgba(255,255,255,.45); }
                li { color: rgba(255,255,255,.3); &::before { content: attr(data-icon); color: rgba(255,255,255,.2); } }
            }
        }
        @media (max-width: 640px) { grid-template-columns: 1fr; }
    }
}


/* ══════════════════════════════════════════════
   PERCORSO — timeline pubblica
══════════════════════════════════════════════ */
.percorso {
    background: var(--dark); padding-block: var(--py);

    .perc-header { margin-bottom: 48px;
        .h-lg { color: #fff; margin-bottom: 14px; }
        .perc-lead { font-size: 17px; color: rgba(255,255,255,.42); max-width: 520px; line-height: 1.7; }
    }

    .timeline {
        position: relative; display: flex; flex-direction: column; margin-bottom: 44px;
        &::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.06); }
        .tl-item { display: flex; gap: 26px; padding-bottom: 30px; position: relative;
            &:last-child { padding-bottom: 0; }
            .tl-dot { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
                &.done    { background: var(--gold); }
                &.current { background: var(--dark); border: 2px solid var(--gold); &::after { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: blink 1.4s infinite; } }
                &.next, &.future { background: var(--dark); border: 2px solid rgba(255,255,255,.14); }
            }
            .tl-body { flex: 1; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.05);
                .tl-tag   { font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 4px; &.done, &.current { color: var(--gold); } &.dim { color: rgba(255,255,255,.2); } }
                .tl-title { font-family: var(--fd); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 3px; &.dim { color: rgba(255,255,255,.3); } }
                .tl-desc  { font-size: 15px; color: rgba(255,255,255,.4); line-height: 1.6; &.dim { color: rgba(255,255,255,.18); } }
            }
            &:last-child .tl-body { border-bottom: none; padding-bottom: 0; }
        }
    }

    .perc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px;
        .pc {
            border-radius: var(--rm); padding: 26px;
            .pc-ico { font-size: 24px; margin-bottom: 12px; }
            .pc-t   { font-family: var(--fd); font-size: 18px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
            .pc-d   { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.65; }
            &.dim { background: var(--dark-2); border: 1px solid rgba(255,255,255,.06); }
            &.act { background: var(--dark-2); border: 1px solid rgba(232,164,0,.2); position: relative; overflow: hidden; &::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); } }
        }
        @media (max-width: 540px) { grid-template-columns: 1fr; }
    }

    .social-row {
        .sr-l { font-size: 16px; color: rgba(255,255,255,.38); margin-bottom: 14px; }
        .sr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.05); border-radius: var(--rm); overflow: hidden;
            a { display: block; background: var(--dark-2); padding: 20px; text-align: center; transition: background var(--t); &:hover { background: var(--dark-3); }
                .sr-ico  { font-size: 20px; margin-bottom: 6px; }
                .sr-name { font-family: var(--fd); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 2px; }
                .sr-hnd  { font-size: 12px; color: rgba(255,255,255,.28); }
            }
            @media (max-width: 480px) { grid-template-columns: 1fr; }
        }
    }
}

@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.7); } }


/* ══════════════════════════════════════════════
   PILOTA
══════════════════════════════════════════════ */
.pilota {
    background: var(--off-white); padding-block: var(--py);

    .pil-intro { margin-bottom: 30px;
        .h-lg { margin-bottom: 14px; }
        .pil-lead { font-size: 17px; color: var(--body); max-width: 580px; line-height: 1.7; }
    }

    .pil-box {
        background: var(--dark); border-radius: var(--rl); padding: 50px; position: relative; overflow: hidden;
        &::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold)); }
        .pb-sub { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
        .h-md   { color: #fff; margin-bottom: 18px; }
        p { font-size: 16px; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 24px; max-width: 640px; strong { color: #fff; } }
        .pb-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px;
            li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.5;
                &::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
            }
        }
        .pb-note { font-size: 14px; color: rgba(255,255,255,.22); text-align: center; margin-top: 12px; }
        @media (max-width: 640px) { padding: 30px 22px; }
    }
}


/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq {
    background: var(--cream); padding-block: var(--py);

    .faq-head { margin-bottom: 40px;
        .h-lg { margin-bottom: 14px; color:#000}
    }

    .faq-list { border: 1px solid var(--lb); border-radius: var(--rm); overflow: hidden;
        .faq-item { background: var(--off-white); border-bottom: 1px solid var(--lb); &:last-child { border-bottom: none; }
            .fq { display: flex; align-items: center; justify-content: space-between; padding: 21px 24px; cursor: pointer; user-select: none; gap: 14px; transition: background var(--t);
                &:hover { background: #fff; }
                span { font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.3; }
                .fi  { width: 26px; height: 26px; background: var(--lb); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 300; color: var(--muted); flex-shrink: 0; transition: all var(--t); }
            }
            .fa { max-height: 0; overflow: hidden; transition: max-height .36s ease;
                p { padding: 0 24px 21px; font-size: 15px; color: var(--body); line-height: 1.75; }
            }
            &.open .fi  { background: var(--gold); color: var(--dark); transform: rotate(45deg); }
            &.open .fa  { max-height: 400px; }
            &.open .fq  { background: #fff; }
        }
    }
}