  /* ─── TOKENS ────────────────────────────────────── */
    :root {
        --navy:        #0A1F44;
        --blue:        #1A5CFF;
        --blue-mid:    #2E72FF;
        --blue-light:  #EBF0FF;
        --blue-pale:   #F4F7FF;
        --blue-border: rgba(26,92,255,0.15);
        --sky:         #38BDF8;
        --white:       #FFFFFF;
        --gray-50:     #F8FAFC;
        --gray-100:    #F1F5F9;
        --gray-200:    #E2E8F0;
        --gray-500:    #64748B;
        --gray-700:    #334155;
        --gray-900:    #0F172A;
        --radius:      14px;
        --radius-lg:   22px;
        --shadow-sm:   0 2px 8px rgba(10,31,68,.07);
        --shadow-md:   0 8px 32px rgba(10,31,68,.10);
        --shadow-lg:   0 20px 60px rgba(10,31,68,.14);
        --transition:  .32s cubic-bezier(.4,0,.2,1);
    }

    /* ─── BASE ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--gray-700);
        background: var(--white);
        overflow-x: hidden;
        line-height: 1.7;
    }

    h1,h2,h3,h4,h5 {
        font-family: 'Fraunces', serif;
        color: var(--navy);
        line-height: 1.2;
    }

    /* ─── NAVBAR OVERRIDE ───────────────────────────── */
    .navbar {
        background: rgba(255,255,255,0.92) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-sm) !important;
        padding: .75rem 0 !important;
        transition: var(--transition);
    }
    .navbar .nav-link {
        color: var(--gray-700) !important;
        font-weight: 500;
        font-size: .93rem;
        padding: .4rem .9rem !important;
        border-radius: 8px;
        transition: var(--transition);
    }
    .navbar .nav-link:hover {
        color: var(--blue) !important;
        background: var(--blue-light);
    }
    .navbar .btn-light.text-primary {
        background: var(--blue) !important;
        color: var(--white) !important;
        border: none !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        padding: .45rem 1.4rem !important;
        transition: var(--transition);
    }
    .navbar .btn-light.text-primary:hover {
        background: var(--navy) !important;
        transform: translateY(-1px);
    }

    /* ─── UTILITY ────────────────────────────────────── */
    .text-blue  { color: var(--blue) !important; }
    .text-navy  { color: var(--navy) !important; }

    .badge-pill {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        background: var(--blue-light);
        color: var(--blue);
        border: 1px solid var(--blue-border);
        border-radius: 50px;
        padding: .35rem 1rem;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
    }
    .badge-pill .dot {
        width: 7px; height: 7px;
        border-radius: 50%;
        background: var(--blue);
        display: inline-block;
        animation: pulse-dot 2s ease infinite;
    }
    @keyframes pulse-dot {
        0%,100% { opacity:1; transform:scale(1); }
        50%      { opacity:.5; transform:scale(.7); }
    }

    .btn-primary-custom {
        background: var(--blue);
        color: var(--white);
        border: none;
        border-radius: 50px;
        padding: .8rem 2.2rem;
        font-weight: 600;
        font-size: .97rem;
        letter-spacing: .01em;
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(26,92,255,.30);
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        text-decoration: none;
    }
    .btn-primary-custom:hover {
        background: var(--navy);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(26,92,255,.38);
        text-decoration: none;
    }

    .btn-outline-custom {
        background: transparent;
        color: var(--navy);
        border: 1.5px solid var(--gray-200);
        border-radius: 50px;
        padding: .78rem 2.2rem;
        font-weight: 600;
        font-size: .97rem;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        text-decoration: none;
    }
    .btn-outline-custom:hover {
        border-color: var(--blue);
        color: var(--blue);
        background: var(--blue-light);
        transform: translateY(-2px);
        text-decoration: none;
    }

    /* ─── HERO ───────────────────────────────────────── */
    .hero {
        position: relative;
        padding: 140px 0 80px;
        overflow: hidden;
        background: var(--white);
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0; right: -5%;
        width: 55%;
        height: 100%;
        background: linear-gradient(160deg, var(--blue-pale) 0%, var(--blue-light) 100%);
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
        z-index: 0;
    }
    .hero::after {
        content: '';
        position: absolute;
        top: 0; right: 0;
        width: 55%;
        height: 100%;
        background-image: radial-gradient(var(--blue-border) 1px, transparent 1px);
        background-size: 22px 22px;
        z-index: 0;
    }

    .hero .container { position: relative; z-index: 1; }

    .hero-title {
        font-size: clamp(2.6rem, 5.5vw, 4rem);
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 1.2rem;
        letter-spacing: -.02em;
    }
    .hero-title .accent {
        position: relative;
        color: var(--blue);
    }
    .hero-title .accent::after {
        content: '';
        position: absolute;
        bottom: -4px; left: 0;
        width: 100%; height: 3px;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--blue), var(--sky));
    }

    .hero-sub {
        font-size: 1.1rem;
        color: var(--gray-500);
        max-width: 480px;
        font-weight: 400;
        margin-bottom: 2.2rem;
    }

    /* Mock dashboard visual */
    .hero-visual { position: relative; z-index: 1; }

    .hero-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
        overflow: hidden;
        transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
        transition: transform .5s ease;
    }
    .hero-card:hover {
        transform: perspective(800px) rotateY(-1deg) rotateX(0deg);
    }
    .hero-card-header {
        background: var(--navy);
        padding: .9rem 1.2rem;
        display: flex;
        align-items: center;
        gap: .5rem;
    }
    .hero-card-header .dot { width: 11px; height: 11px; border-radius: 50%; }
    .hero-card-body { padding: 1.4rem; }

    .mini-stat {
        background: var(--blue-pale);
        border-radius: 10px;
        padding: .75rem 1rem;
        border: 1px solid var(--blue-border);
    }
    .mini-stat-val {
        font-family: 'Fraunces', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--navy);
        line-height: 1;
    }
    .mini-stat-lbl {
        font-size: .75rem;
        color: var(--gray-500);
        font-weight: 500;
        margin-top: .25rem;
    }
    .mini-bar {
        height: 6px;
        border-radius: 3px;
        background: var(--gray-100);
        overflow: hidden;
        margin-top: .6rem;
    }
    .mini-bar-fill {
        height: 100%;
        border-radius: 3px;
        background: linear-gradient(90deg, var(--blue), var(--sky));
    }

    /* floating chips */
    .hero-chip {
        position: absolute;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 50px;
        padding: .5rem 1rem;
        font-size: .82rem;
        font-weight: 600;
        color: var(--navy);
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: center;
        gap: .45rem;
        white-space: nowrap;
        animation: float 4s ease-in-out infinite alternate;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .hero-chip i { color: var(--blue); font-size: .85rem; }
    .hero-chip.chip-1 { top: 12%; left: -8%; animation-delay: 0s; }
    .hero-chip.chip-2 { bottom: 18%; left: -6%; animation-delay: -2s; }
    .hero-chip.chip-3 { top: 5%;  right: -4%; animation-delay: -1s; }
    @keyframes float {
        from { transform: translateY(0px); }
        to   { transform: translateY(-10px); }
    }

    /* ─── LOGOS STRIP ────────────────────────────────── */
    .logos-strip {
        padding: 2.5rem 0;
        border-top: 1px solid var(--gray-100);
        border-bottom: 1px solid var(--gray-100);
    }
    .logos-strip .label {
        font-size: .8rem;
        font-weight: 600;
        color: var(--gray-500);
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
    }
    .logo-pill {
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: 50px;
        padding: .45rem 1.2rem;
        font-size: .88rem;
        font-weight: 600;
        color: var(--gray-700);
        display: flex;
        align-items: center;
        gap: .5rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* ─── FEATURES ───────────────────────────────────── */
    #features { padding: 7rem 0; background: var(--white); }

    .feature-card-new {
        background: var(--white);
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius-lg);
        padding: 2rem 1.8rem;
        height: 100%;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    .feature-card-new::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 4px; height: 100%;
        background: var(--blue);
        opacity: 0;
        transition: var(--transition);
    }
    .feature-card-new:hover {
        border-color: var(--blue-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-5px);
    }
    .feature-card-new:hover::before { opacity: 1; }

    .feat-icon {
        width: 52px; height: 52px;
        border-radius: 13px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    .fi-b1 { background: var(--blue-light);       color: var(--blue); }
    .fi-b2 { background: #E0F2FE;                 color: #0369A1; }
    .fi-b3 { background: #DBEAFE;                 color: #1D4ED8; }
    .fi-b4 { background: #EDE9FE;                 color: #6D28D9; }
    .fi-b5 { background: #D1FAE5;                 color: #047857; }
    .fi-b6 { background: #FEF3C7;                 color: #B45309; }

    .feature-card-new h5 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: .55rem;
    }
    .feature-card-new p {
        font-size: .9rem;
        color: var(--gray-500);
        margin: 0;
        line-height: 1.65;
    }

    /* ─── HOW IT WORKS ───────────────────────────────── */
    #how {
        padding: 7rem 0;
        background: var(--navy);
        position: relative;
        overflow: hidden;
    }
    #how::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 28px 28px;
    }
    #how .section-label { color: var(--sky) !important; }
    #how .section-sub  { color: rgba(255,255,255,0.55); }

    .step-num {
        width: 72px; height: 72px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        border: 2px solid rgba(255,255,255,.15);
        display: flex; align-items: center; justify-content: center;
        font-family: 'Fraunces', serif;
        font-size: 1.7rem;
        font-weight: 700;
        color: var(--sky);
        margin: 0 auto 1.4rem;
    }
    .step-box {
        text-align: center;
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        height: 100%;
        transition: var(--transition);
    }
    .step-box:hover {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.16);
        transform: translateY(-4px);
    }
    .step-box h5 { color: var(--white); font-size: 1.1rem; margin-bottom: .55rem; }
    .step-box p  { color: rgba(255,255,255,.55); font-size: .9rem; margin: 0; }

    /* ─── STATS BAND ─────────────────────────────────── */
    .stats-band { background: var(--blue); padding: 4rem 0; }
    .stat-item  { text-align: center; }
    .stat-val {
        font-family: 'Fraunces', serif;
        font-size: 3rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1;
        display: block;
    }
    .stat-lbl {
        font-size: .85rem;
        color: rgba(255,255,255,.7);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .07em;
        margin-top: .4rem;
        display: block;
    }

    /* ─── TESTIMONIALS ───────────────────────────────── */
    #testimonials { padding: 7rem 0; background: var(--gray-50); }

    .testi-card {
        background: var(--white);
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius-lg);
        padding: 2rem;
        height: 100%;
        transition: var(--transition);
    }
    .testi-card:hover {
        border-color: var(--blue-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }
    .testi-stars { color: #F59E0B; font-size: .85rem; margin-bottom: 1rem; display:flex; gap:.2rem; }
    .testi-quote {
        font-family: 'Fraunces', serif;
        font-size: 3.5rem;
        line-height: 1;
        color: var(--blue-light);
        margin-bottom: -.5rem;
    }
    .testi-text {
        font-size: .93rem;
        color: var(--gray-700);
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .testi-avatar {
        width: 42px; height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
        display: flex; align-items: center; justify-content: center;
        font-weight: 700;
        color: var(--white);
        font-size: .82rem;
        flex-shrink: 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .testi-name { font-weight: 700; font-size: .95rem; color: var(--navy); }
    .testi-loc  { font-size: .8rem; color: var(--gray-500); }

    /* ─── CTA ────────────────────────────────────────── */
    .cta-wrap { padding: 4rem 0 7rem; background: var(--gray-50); }
    .cta-banner {
        background: linear-gradient(130deg, var(--navy) 0%, #0F3281 60%, var(--blue) 100%);
        border-radius: var(--radius-lg);
        padding: 5rem 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 22px 22px;
    }
    .cta-banner::after {
        content: '';
        position: absolute;
        bottom: -60px; right: -60px;
        width: 260px; height: 260px;
        border-radius: 50%;
        background: rgba(56,189,248,0.12);
        filter: blur(40px);
    }
    .cta-banner > * { position: relative; z-index: 1; }
    .cta-banner h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
    .cta-banner p  { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 2rem; }

    .btn-white {
        background: var(--white);
        color: var(--blue);
        border: none;
        border-radius: 50px;
        padding: .85rem 2.4rem;
        font-weight: 700;
        font-size: .97rem;
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0,0,0,.15);
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        text-decoration: none;
    }
    .btn-white:hover {
        background: var(--blue-light);
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0,0,0,.2);
        text-decoration: none;
    }
    .btn-ghost-white {
        background: transparent;
        color: rgba(255,255,255,.85);
        border: 1.5px solid rgba(255,255,255,.3);
        border-radius: 50px;
        padding: .82rem 2.2rem;
        font-weight: 600;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        text-decoration: none;
    }
    .btn-ghost-white:hover {
        border-color: rgba(255,255,255,.7);
        color: var(--white);
        background: rgba(255,255,255,.1);
        transform: translateY(-2px);
        text-decoration: none;
    }

    /* ─── SECTION LABELS ────────────────────────────── */
    .section-label {
        display: block;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: .7rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .section-title-xl {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        margin-bottom: .9rem;
    }
    .section-sub {
        font-size: 1.05rem;
        color: var(--gray-500);
        max-width: 520px;
        margin: 0 auto;
    }

    /* ─── FOOTER OVERRIDE ───────────────────────────── */
    footer {
        background: var(--navy) !important;
        color: rgba(255,255,255,.7) !important;
        border-top: none !important;
    }
    footer h5 { color: var(--white) !important; }
    footer a   { color: rgba(255,255,255,.6) !important; }
    footer a:hover { color: var(--sky) !important; transform: none !important; }
    .footer-bottom { background: rgba(0,0,0,.25) !important; color: rgba(255,255,255,.4) !important; }
    .footer-contact i { color: var(--sky) !important; }
    .social-links a { background: rgba(255,255,255,.08) !important; }
    .social-links a:hover { background: var(--blue) !important; }

    /* ─── SCROLL REVEAL ─────────────────────────────── */
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-d1 { transition-delay: .08s; }
    .reveal-d2 { transition-delay: .16s; }
    .reveal-d3 { transition-delay: .24s; }
    .reveal-d4 { transition-delay: .32s; }
    .reveal-d5 { transition-delay: .40s; }
    .reveal-d6 { transition-delay: .48s; }

    /* ─── RESPONSIVE ────────────────────────────────── */
    @media(max-width:991px){
        .hero { padding: 120px 0 60px; }
        .hero::before, .hero::after { display: none; }
        .hero-chip { display: none; }
    }
    @media(max-width:767px){
        .hero-title { font-size: 2.4rem; }
        .cta-banner { padding: 3rem 1.5rem; }
    }
	
	    @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
  
 @media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff !important;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        margin-top: 10px;
    }

    .navbar .nav-link {
        color: #0F172A !important;
        font-weight: 500;
    }

    .navbar .nav-link:hover {
        background: #EBF0FF;
        color: #1A5CFF !important;
    }

    .navbar-toggler {
        border-color: rgba(0,0,0,0.2);
    }

    .navbar-toggler-icon {
        filter: invert(1); /* rende l'icona visibile su sfondo chiaro */
    }
	.navbar.sticky-top {
    z-index: 9999;
}
}