* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter',sans-serif;
    background: #f6f8fa;
}


.logo {
    font-size: 14px;
    font-weight: 700;
}

    .logo span {
        color: #8BC6AE;
    }

    .logo img {
        height: 150px;
        width: auto;
        display: block;
    }

.menu {
    display: flex;
    gap: 30px;
}

    .menu a {
        color: white;
        text-decoration: none;
        opacity: .85;
    }

.navbar {
    width: 90%;
    max-width: auto;
    margin: auto;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all .3s ease;
    }

        .nav-links a:hover {
            color: #8BC6AE;
        }

    .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
    }
    .languages {
                display: flex;
                align-items: center;
                gap: 10px;
    }

        .languages a {
                      text-decoration: none;
                      color: rgba(255,255,255,.7);  
                      font-size: 14px;
                      transition: all .3s ease;
        }

        languages a:hover {
            color: #8BC6AE;
        }

        languages .active {
            color: #8bc6ae;
            font-weight: 600;
        }

    .linkedin {
        color: white;
        text-decoration: none;
        padding: 10px 18px;
        border: 1px solid rgba(255,255,255,.2);
        border-radius: 25px;
        transition: .3s;
    }

                .linkedin:hover {
                    color: #8BC6AE;
                    border-color: #8BC6AE;
                }
    .social-link {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.15);
        background: rgba(255,255,255,.05);
        color: white;
        transition: all .3s ease;
    }

        .social-link:hover {
            background: #8BC6AE;
            color: #07131D;
            transform: translateY(-2px);
        }

        .social-link i {
            font-size: 18px;
        }



.btn-nav {
    background: linear-gradient( 90deg, #8BC6AE, #6DE1C2 );
    color: #07131d;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
}




.hero {
    min-height: 100vh;
    background: radial-gradient(circle at 70% 20%, rgba(109,226,197,.10), transparent 40%), linear-gradient( 135deg, #07131d, #0c1c2a, #10293c);
    color: white;
    position: relative;
    overflow: hidden;
}


    .hero::before {
        content: "";
        position: absolute;
        left: -5%;
        bottom: -10%;
        width: 70%;
        height: 70%;
        background-image: radial-gradient( rgba(139,198,174,.6) 1px, transparent 1px);
        background-size: 16px 16px;
        opacity: .25;
        transform: perspective(800px) rotateX(70deg);
    }

.hero-content {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 60vh;
}

.hero-right {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 60vh;
}


.tagline {
    color: #8BC6AE;
    letter-spacing: 4px;
    margin-bottom: 25px;
}


.hero-left h1 {
    font-size: 68px;
    line-height: 1.1;
    max-width: 650px;
}

.hero-left p {
    margin-top: 30px;
    color: #c2c8ce;
    max-width: 550px;
    font-size: 20px;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.dashboard-card {
    position: relative;
    padding: 35px;
    border-radius: 32px;
    background: linear-gradient( 145deg, rgba(10,32,46,.95), rgba(5,18,30,.95) );
    border: 1px solid rgba(121,200,173,.15);
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
    overflow: hidden;
}

    .dashboard-card::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        right: -100px;
        top: -100px;
        border-radius: 50%;
        background: #79c8ad;
        opacity: .12;
        filter: blur(70px);
        z-index: 0;
    }

    .dashboard-card img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 650px;
        display: block;
        border-radius: 18px;
    }

.btn-primary {
    padding: 15px 28px;
    background: #8BC6AE;
    color: #07131d;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    padding: 15px 28px;
    border: 1px solid #8BC6AE;
    border-radius: 50px;
    color: white;
    text-decoration: none;
}

.dashboard {
    width: 450px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 40px;
    margin-left: auto;
}

.kpi {
    padding: 25px;
    margin-bottom: 15px;
    background: rgba(255,255,255,.04);
    border-radius: 20px;
}

    .kpi span {
        display: block;
        color: #8BC6AE;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.summary {
    font-size: 14px;
    font-weight: 700;
}

    .summary span {
        color: #8BC6AE;
    }

    .summary img {
        height: 320px;
        width: auto;
        display: block;
    }


/*.targets {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
}

.targets {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;

    display: flex;
    justify-content: space-between;
    gap: 4rem;
}*/

.targets {
    display: flex;
    justify-content: space-between;
    grid-template-columns:65px 65px 180px 1fr 65px 65px 180px 1fr 65px 65px 180px 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    margin: 1rem auto 0 auto;
    padding: 0 5rem;
    /*background: linear-gradient( 90deg, #041827 0%, #07233a 50%, #0b2b45 100% );*/
    backdrop-filter: blur(10px);
    color: white;
}

/*.targets::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;
    margin: 1rem auto 0 auto;
    background: rgba(255,255,255,0.15);
}  

.targets::after {
    content: "";
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.15);
}*/ 

.target {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.target-icon {
    flex-shrink: 0;

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}


.target-content {
    display: flex;
    flex-direction: column;
}

.target-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8BC6AE;
    letter-spacing: 4px;

    margin-bottom: .6rem;
}

.target-title::after {
    content: "";

    display: block;
    width: 80px;
    height: 2px;

    margin-top: .5rem;

    background: var(--accent-color);
}

.target-description {
    line-height: 1.7;
    opacity: .85;
}


/*    .targets img {
        height: 60px;
        width: auto;
        display: block;
    }

.target-text h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: 4px;
    color: #8BC6AE;
    font-weight: 700;
    text-transform: uppercase;
    color: #8BC6AE;
 }

.target-stringa p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #ffffff;
    max-width: 350px;
}*/

.capabilities {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
}




/*.service-card {
    position: relative;
    background: #f5f7f8;
    padding: 120px 10%;
    overflow: hidden;
}/*

        /*    .service-card::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        right: -250px;
        top: -150px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(111,217,181,.12), transparent 70% );
        z-index: 0;
    }

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../logo/IMG_1739.PNG");
        background-position: center;
        background-size: cover;
        opacity: 0.65;
        pointer-events: none;
    }*/

/*.service-card::after {
        content: "";
        position: absolute;
        left: -100px;
        bottom: -50px;
        width: 900px;
        height: 500px;
        background-image: radial-gradient( rgba(111,217,181,.08) 2px, transparent 2px );
        background-size: 20px 20px;
        opacity: 0.55;
        transform: perspective(1000px) rotateX(70deg);
    }*/

.service-content {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.service-tag {
    color: #07131D;
    letter-spacing: 4px;
    /*font-size: 24px;*/
    font-weight: 700;
}

.service-text h2 {
    margin-top: 20px;
    font-size: 54px;
    line-height: 1.1;
    color: #1a2430;
}

.service-text p {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.7;
    max-width: 600px;
    color: #1a1e1a;
}

.mockup-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    /*box-shadow: 0 30px 90px rgba(0,0,0,.08);*/
    background: rgba(255,255,255,0.050);
    backdrop-filter: blur(12px);
    /*opacity: 0.5;*/
}

.metric {
    margin-top: 25px;
    padding: 20px;
    background: #f5f7f8;
    border-radius: 16px;
}

    .metric span {
        display: block;
        font-size: 34px;
        color: #3d6b66;
        font-weight: 700;
    }

.service-card-2 {
    position: relative;
    background: radial-gradient(circle at 70% 20%, rgba(109,226,197,.10), transparent 40%), linear-gradient( 135deg, #07131d, #0c1c2a, #10293c);
    color: white;
    padding: 120px 10%;
    overflow: hidden;
}

/*\\\\\\\\\\\ BUSINESS INTELLIGENCE  \\\\\\\\\\\\\\\\*/

.hero_BI {
    min-height: 100vh;
    background: radial-gradient(circle at 70% 20%, #f5f7f8, transparent 40%), linear-gradient( 135deg, #f5f7f8, #f5f7f8, #f5f7f8);
    color: white;
    position: relative;
    overflow: hidden;
}

    .hero_BI::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../logo/IMG_1739.PNG");
        background-position: center;
        background-size: cover;
        opacity: 0.55;
        pointer-events: none;
        align-items: center; /* centro verticale */
        justify-items: center;
        min-height: 100vh;
        /*  left: -5%;
        bottom: -10%;
        width: 70%;
        height: 70%;
        /*background-image: radial-gradient( rgba(139,198,174,.6) 1px, transparent 1px);*/
        /*background-size: 16px 16px;*/
        /*opacity: .25;*/
        /*transform: perspective(800px) rotateX(70deg);*/
    }
.hero-content_BI {
    width: 90%;
    max-width:1400px;
    margin:0 auto;
    /*margin: auto;*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height:100vh;
    align-items: center;
    align-content: center;
    height: 90%;
}



.hero-right_BI {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 60vh;
}


.tagline_BI {
    color: rgb(58, 87, 75);
    letter-spacing: 4px;
    margin-bottom: 25px;
    z-index: 1000;
}

.hero-left_BI h1 {
    font-size: 68px;
    line-height: 1.1;
    max-width: 650px;
}

.hero-left_BI p {
    margin-top: 30px;
    color: rgba(70,70, 70,1);
    max-width: 550px;
    font-size: 20px;
    z-index: 1000;
}

.hero-right_BI {
    display: flex;
    justify-content: center;
}

.dashboard-card_BI {
    position: relative;    
    background: white;
        border-radius: 30px;
        padding: 40px;
        /*box-shadow: 0 30px 90px rgba(0,0,0,.08);*/
        background: rgba(255,255,255,0.050);
        backdrop-filter: blur(12px);
    
    /*position: relative;
    padding: 35px;
    border-radius: 32px;
    background: linear-gradient( 145deg, rgba(10,32,46,.95), rgba(5,18,30,.95) );
    border: 1px solid rgba(121,200,173,.15);
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
    overflow: hidden;*/
}


/*opacity: 0.5;*/

    .dashboard-card_BI::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        right: -100px;
        top: -100px;
        border-radius: 50%;
        background: #79c8ad;
        opacity: .12;
        filter: blur(70px);
        z-index: 0;
    }

    .dashboard-card_BI img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 650px;
        display: block;
        border-radius: 18px;
    }

    .buttons_BI {
        margin-top: 40px;
        flex-direction:column;
        display: flex;
        gap: 20px;
    }


/*
hero_BI
hero-content_BI
hero-left_BI
tagline_BI + <p>
buttons_BI
hero-right_BI
dashboard-card_BI + IMAGE

*/

/*\\\\\\\\\\\\\\\\\\\\ FOOTER  \\\\\\\\\\\\\\\\\\\\\\*/

.footer {
    margin-top: auto;
    /*background: linear-gradient( 180deg, #03131d, #02101a );*/
    background: radial-gradient(circle at 70% 20%, rgba(109,226,197,.10), transparent 40%), linear-gradient( 135deg, #07131d, #0c1c2a, #10293c);
    border-top: 1px solid rgba(255,255,255,.08);
    color: #d8e3e8;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 70px 40px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 400px;
}

    .footer-brand h2 {
        margin-bottom: 15px;
        color: #79c8ad;
        font-size: 30px;
    }

    .footer-brand p {
        line-height: 1.8;
        color: #aabcc6;
    }

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

    .footer-links h4 {
        margin-bottom: 20px;
        color: white;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .footer-links a {
        display: block;
        margin-bottom: 12px;
        color: #aabcc6;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #79c8ad;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #7f98a5;
    font-size: 14px;
    max-width: 1400px;
    margin: auto;
}