*, *::before, *::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body, button, input, select, textarea, optgroup{
    font-family:'Poppins', sans-serif;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* HERO */

.hero{
    height:100vh;
    background-image:url("img2/home\ mandorle.jpeg");
    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.05);
    pointer-events:none;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;

    height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-tagline{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#0F172A;
    background:rgba(255, 255, 255, 0.45);
    backdrop-filter:blur(8px);
    padding:8px 22px;
    border-radius:9999px;
    border:1px solid rgba(0, 0, 0, 0.08);
    margin-bottom:20px;
    box-shadow:0 4px 15px rgba(0, 0, 0, 0.03);
}

.hero-content h1{
    font-size:clamp(4.5rem, 9.5vw, 9rem);
    font-weight:900;
    color:#111827;
    letter-spacing:-2px;
    line-height:0.95;
    margin:0 0 20px 0;
    text-shadow:0 2px 10px rgba(0, 0, 0, 0.04);
}

.hero-subtitle{
    font-size:clamp(17px, 1.8vw, 22px);
    font-weight:500;
    color:#1e293b;
    max-width:700px;
    margin:0 auto 38px;
    line-height:1.6;
    padding:0 20px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    position:relative;
    z-index:10;
    margin:0 auto;
    width:100%;
    max-width:580px;
}

.btn-dark{
    background:#111111;
    color:#ffffff;
    text-decoration:none;
    padding:17px 36px;
    min-width:230px;
    border-radius:50px;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    text-align:center;
    border:2px solid #111111;
    transition:all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:0 8px 24px rgba(0,0,0,0.12);
}

.btn-dark:hover{
    background:#7EE6DE;
    border-color:#7EE6DE;
    color:#111111;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(13,138,128,0.28);
}

.btn-outline{
    border:2px solid #111111;
    color:#111111;
    background:rgba(255,255,255,0.20);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    text-decoration:none;
    padding:17px 36px;
    min-width:230px;
    border-radius:50px;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    text-align:center;
    transition:all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover{
    background:#111111;
    color:#ffffff;
    border-color:#111111;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

@media(max-width:768px){

    .hero-content h1{
        font-size:4.5rem;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
        width:85%;
        max-width:300px;
    }

    .btn-dark,
    .btn-outline{
        width:100%;
        text-align:center;
        padding:15px 25px;
    }

}








/* STATISTICHE */

/* ========================================= */
/*        STATS SECTION - FLOATING CARDS     */
/* ========================================= */

.stats-section{
    padding:80px 8% 40px;
    background:#ffffff;
    position:relative;
}

.stats-container{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:35px;
}

.stat-card{
    background:#ffffff;
    border:1px solid rgba(17, 24, 39, 0.09);
    border-radius:24px;
    padding:44px 34px 40px;
    text-align:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(0, 0, 0, 0.16), 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color:rgba(17, 24, 39, 0.18);
}

.stat-accent{
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:6px;
}

.stat-tiffany .stat-accent{
    background:linear-gradient(90deg, #7EE6DE, #4ecdc4);
}

.stat-rosa .stat-accent{
    background:linear-gradient(90deg, #F8C8DC, #f497ba);
}

.stat-oro .stat-accent{
    background:linear-gradient(90deg, #FFD54A, #f6b93b);
}

.stat-number{
    font-size:68px;
    font-weight:800;
    line-height:1;
    margin-bottom:12px;
    letter-spacing:-1px;
}

.stat-tiffany .stat-number{
    color:#2bb3a8;
}

.stat-rosa .stat-number{
    color:#e4719d;
}

.stat-oro .stat-number{
    color:#d99b16;
}

.stat-card h3{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.stat-card p{
    font-size:15px;
    line-height:1.6;
    color:#64748B;
    margin:0;
}

/* ========================================= */
/*     GLOBAL SUPPLIER & VALUE PILLARS       */
/* ========================================= */

.global-supplier{
    padding:80px 8% 100px;
    background:#ffffff;
}

.global-container{
    max-width:1280px;
    margin:0 auto;
    text-align:center;
}

.section-badge{
    display:inline-block;
    background:rgba(126, 230, 222, 0.15);
    color:#0d8a80;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    padding:7px 18px;
    border-radius:9999px;
    border:1px solid rgba(126, 230, 222, 0.4);
    margin-bottom:20px;
}

.global-container h2{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
    color:#111827;
    letter-spacing:-0.5px;
}

.global-intro{
    font-size:18px;
    line-height:1.8;
    color:#475569;
    max-width:850px;
    margin:0 auto 60px;
}

/* 4 PILLARS GRID */
.pillars-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    text-align:left;
}

.pillar-card{
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:20px;
    padding:32px 24px;
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position:relative;
}

.pillar-card:hover{
    background:#ffffff;
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(0, 0, 0, 0.07);
    border-color:#CBD5E1;
}

.pillar-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    transition:all 0.3s ease;
}

.pillar-card:hover .pillar-icon{
    transform:scale(1.08);
}

.pillar-icon.tiffany-circle{
    background:#D2F6F3;
    border:1px solid rgba(126, 230, 222, 0.4);
}

.pillar-icon.rosa-circle{
    background:#FDE6EE;
    border:1px solid rgba(248, 200, 220, 0.5);
}

.pillar-icon.oro-circle{
    background:#FFF2C6;
    border:1px solid rgba(255, 213, 74, 0.45);
}

.pillar-icon svg{
    display:block;
    transition:transform 0.3s ease;
}

.pillar-card h4{
    font-size:18px;
    font-weight:700;
    color:#0F172A;
    margin-bottom:10px;
}

.pillar-card p{
    font-size:14px;
    line-height:1.6;
    color:#64748B;
    margin:0;
}

@media(max-width:1050px){
    .stats-container{
        gap:20px;
    }
    .pillars-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }
    .global-container h2{
        font-size:40px;
    }
}

@media(max-width:768px){
    .stats-section{
        padding:50px 6% 30px;
    }
    .stats-container{
        grid-template-columns:1fr;
        gap:20px;
    }
    .global-supplier{
        padding:50px 6% 70px;
    }
    .global-container h2{
        font-size:32px;
    }
    .global-intro{
        font-size:16px;
        margin-bottom:40px;
    }
    .pillars-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
}











/* CATEGORIE */

.categorie{

    padding:120px 10%;
    background:#ffffff;
    text-align:center;

}

.titolo-categorie h2{

    font-size:50px;
    margin-bottom:15px;

}

.titolo-categorie p{

    color:#666;
    margin-bottom:70px;

}

.categorie-container{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:35px;
    max-width:1150px;
    margin:0 auto;
}

.categoria-card{
    text-decoration:none;
    color:#111;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.categoria-img{
    width:190px;
    height:190px;
    border-radius:50%;
    background:#ffffff;
    border:1px solid rgba(0, 0, 0, 0.06);
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.04);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow:hidden;
    padding:10px;
}

.categoria-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform 0.35s ease;
}

.categoria-card:hover .categoria-img{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0, 0, 0, 0.09);
    border-color:rgba(0, 0, 0, 0.12);
}

.categoria-card:hover .categoria-img img{
    transform:scale(1.08);
}

.categoria-card h3{
    margin-top:20px;
    font-size:22px;
    font-weight:700;
    color:#0F172A;
    transition:color 0.25s ease;
}

.categoria-card:hover h3{
    color:#0d8a80;
}

@media(max-width:950px){
    .categorie-container{
        grid-template-columns:repeat(2, 1fr);
        gap:30px;
    }
}

@media(max-width:550px){
    .categorie-container{
        grid-template-columns:1fr;
        gap:25px;
    }
}
.footer{
    background:#111111;
    color:#ffffff;
    padding:80px 8% 30px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-container{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr 0.9fr 1.1fr 1.3fr;
    gap:50px;
}

.footer-col h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:#ffffff;
}

.footer-col h3 span{
    color:#7EE6DE;
}

.footer-col h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:22px;
    color:#ffffff;
    letter-spacing:0.5px;
    position:relative;
    padding-bottom:10px;
}

.footer-col h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:35px;
    height:2px;
    background:#7EE6DE;
    border-radius:2px;
}

.footer-brand p{
    color:#b0b0b0;
    line-height:1.7;
    font-size:14px;
    margin-bottom:15px;
}

.footer-brand p strong{
    color:#ffffff;
    font-size:15px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#b0b0b0;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
    display:inline-block;
}

.footer-col ul li a:hover{
    color:#7EE6DE;
    transform:translateX(4px);
}

.footer-contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact-list li{
    color:#b0b0b0;
    font-size:14px;
    line-height:1.7;
    margin-bottom:12px;
}

.footer-contact-list li strong{
    color:#ffffff;
    font-weight:600;
}

.footer-contact-list a{
    color:#7EE6DE;
    text-decoration:none;
    transition:0.3s;
    word-break:break-all;
}

.footer-contact-list a:hover{
    color:#ffffff;
    text-decoration:underline;
}

.footer-bottom{
    max-width:1280px;
    margin:60px auto 0;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.1);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    color:#888888;
    font-size:13px;
}

@media(max-width:1024px){
    .footer-container{
        grid-template-columns:repeat(2, 1fr);
        gap:40px;
    }
}

@media(max-width:640px){
    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}










/* ========================================= */
/*      AZIENDA MODERNO & ULTRA DINAMICO     */
/* ========================================= */

.azienda-hero{
    position:relative;
    padding:165px 8% 85px;
    text-align:center;
    background:#ffffff;
    overflow:hidden;
}

.azienda-hero-video-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.35;
    z-index:1;
    pointer-events:none;
    mask-image:radial-gradient(ellipse at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 85%);
    -webkit-mask-image:radial-gradient(ellipse at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 85%);
    filter:contrast(1.06) brightness(1.02);
}

.azienda-hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:radial-gradient(ellipse at center, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.85) 100%);
    pointer-events:none;
    z-index:1;
}

.azienda-hero-bg-visual{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:url("img2/azienda-hero-bg.jpg");
    background-size:cover;
    background-position:center;
    opacity:0.18;
    mask-image:radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 85%);
    -webkit-mask-image:radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 85%);
    pointer-events:none;
    z-index:1;
    animation:heroBgPulse 14s ease-in-out infinite alternate;
}

@keyframes heroBgPulse{
    0%{ transform:scale(1); opacity:0.15; }
    100%{ transform:scale(1.03); opacity:0.25; }
}

.ambient-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    pointer-events:none;
    z-index:1;
}

.orb-tiffany{
    width:380px;
    height:380px;
    background:rgba(126, 230, 222, 0.35);
    top:-60px;
    left:10%;
    animation:orbFloat1 10s ease-in-out infinite alternate;
}

.orb-rose{
    width:340px;
    height:340px;
    background:rgba(248, 200, 220, 0.40);
    top:20px;
    right:10%;
    animation:orbFloat2 12s ease-in-out infinite alternate;
}

.orb-gold{
    width:300px;
    height:300px;
    background:rgba(255, 213, 74, 0.28);
    bottom:-50px;
    left:40%;
    animation:orbFloat1 9s ease-in-out infinite alternate;
}

@keyframes orbFloat1{
    0%{ transform:translate(0, 0) scale(1); }
    100%{ transform:translate(30px, -25px) scale(1.12); }
}

@keyframes orbFloat2{
    0%{ transform:translate(0, 0) scale(1); }
    100%{ transform:translate(-25px, 30px) scale(1.08); }
}

.azienda-hero-content{
    position:relative;
    z-index:2;
    max-width:1050px;
    margin:0 auto;
}

.azienda-hero .section-badge{
    margin-bottom:18px;
    animation:fadeSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.azienda-hero h1{
    font-size:clamp(3.8rem, 7vw, 6.5rem);
    color:#0F172A;
    font-weight:900;
    margin-bottom:22px;
    letter-spacing:-1.5px;
    line-height:1.02;
    animation:fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.azienda-hero-subtitle{
    font-size:clamp(17px, 1.8vw, 22px);
    color:#475569;
    line-height:1.65;
    max-width:780px;
    margin:0 auto 40px;
    font-weight:500;
    animation:fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.azienda-hero-highlights{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    animation:fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.azienda-highlight-pill{
    background:rgba(255, 255, 255, 0.90);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid rgba(226, 232, 240, 0.9);
    border-radius:9999px;
    padding:12px 26px;
    font-size:14.5px;
    color:#1E293B;
    box-shadow:0 6px 20px rgba(0, 0, 0, 0.04);
    display:flex;
    align-items:center;
    gap:12px;
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.azienda-highlight-pill:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(126, 230, 222, 0.25);
    border-color:#7EE6DE;
}

.pill-bullet{
    width:9px;
    height:9px;
    border-radius:50%;
    display:inline-block;
    box-shadow:0 0 8px currentColor;
    animation:pulseBullet 2.2s ease-in-out infinite;
}

.tiffany-bullet{ background:#0d8a80; color:#7EE6DE; }
.rosa-bullet{ background:#e06287; color:#F8C8DC; }
.oro-bullet{ background:#d49f05; color:#FFD54A; }

@keyframes pulseBullet{
    0%, 100%{ transform:scale(1); opacity:0.85; }
    50%{ transform:scale(1.35); opacity:1; }
}

@keyframes fadeSlideUp{
    from{ opacity:0; transform:translateY(24px); }
    to{ opacity:1; transform:translateY(0); }
}

@keyframes fadeSlideDown{
    from{ opacity:0; transform:translateY(-16px); }
    to{ opacity:1; transform:translateY(0); }
}

/* SFONDO PULITO & LUMINOSO */
.azienda-parallax{
    background:linear-gradient(180deg, #f8fcfc 0%, #ffffff 45%, #f6fafb 100%);
    position:relative;
    overflow:hidden;
}

/* FLUID ASYMMETRIC SECTIONS */
.azienda-section-block{
    padding:100px 8%;
    position:relative;
}

.azienda-container{
    display:grid;
    grid-template-columns:1.1fr 1.15fr;
    gap:70px;
    align-items:center;
    max-width:1280px;
    margin:0 auto;
}

.azienda-container.reverse{
    grid-template-columns:1.15fr 1.1fr;
}

.azienda-container.reverse .azienda-img-card{
    order:2;
}

.azienda-container.reverse .azienda-testo-card{
    order:1;
}

/* DYNAMIC ORGANIC IMAGE CARD */
.azienda-img-card{
    position:relative;
}

.azienda-img-wrapper{
    position:relative;
    width:100%;
    height:480px;
    border-radius:36px 14px 36px 14px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(15, 23, 42, 0.08);
    border:1px solid rgba(226, 232, 240, 0.8);
    background:#f1f5f9;
    transition:all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.azienda-container.reverse .azienda-img-wrapper{
    border-radius:14px 36px 14px 36px;
}

.azienda-img-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.azienda-img-card:hover .azienda-img-wrapper{
    transform:translateY(-6px);
    box-shadow:0 30px 70px rgba(15, 23, 42, 0.12);
}

.azienda-img-card:hover .azienda-img-wrapper img{
    transform:scale(1.06);
}

.azienda-floating-tag{
    position:absolute;
    bottom:22px;
    left:22px;
    background:rgba(15, 23, 42, 0.88);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    color:#7EE6DE;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.8px;
    text-transform:uppercase;
    padding:8px 22px;
    border-radius:9999px;
    border:1px solid rgba(126, 230, 222, 0.4);
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.25);
    animation:tagFloat 4s ease-in-out infinite;
}

@keyframes tagFloat{
    0%, 100%{ transform:translateY(0); }
    50%{ transform:translateY(-5px); }
}

/* FLUID TEXT SIDE (NO RIGID HEAVY SQUARES) */
.azienda-testo-card{
    background:transparent;
    padding:10px 0;
}

.content-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12.5px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.8px;
    color:#0d8a80;
    margin-bottom:14px;
    background:rgba(126, 230, 222, 0.15);
    padding:6px 16px;
    border-radius:9999px;
}

.azienda-testo-card h2{
    font-size:clamp(2.2rem, 3.4vw, 3.2rem);
    color:#0F172A;
    font-weight:900;
    line-height:1.15;
    margin-bottom:22px;
    letter-spacing:-0.8px;
}

.azienda-testo-card p{
    font-size:16px;
    line-height:1.8;
    color:#475569;
    margin-bottom:18px;
}

/* DYNAMIC INTERACTIVE FEATURE POINTS */
.azienda-feature-points{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.feature-point{
    display:flex;
    align-items:center;
    gap:18px;
    padding:16px 20px;
    border-radius:20px;
    background:#ffffff;
    border:1px solid #E2E8F0;
    box-shadow:0 6px 20px rgba(0,0,0,0.03);
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-point:hover{
    background:#ffffff;
    border-color:#7EE6DE;
    box-shadow:0 12px 30px rgba(126, 230, 222, 0.18);
    transform:translateX(6px);
}

.feature-point .point-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:transform 0.3s ease;
}

.feature-point:hover .point-icon{
    transform:scale(1.12);
}

.feature-point h4{
    font-size:16px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:3px;
}

.feature-point p{
    font-size:13.5px;
    color:#64748B;
    margin:0;
    line-height:1.45;
}

@media(max-width:1050px){
    .azienda-container,
    .azienda-container.reverse{
        grid-template-columns:1fr;
        gap:40px;
    }
    .azienda-container.reverse .azienda-img-card{
        order:1;
    }
    .azienda-container.reverse .azienda-testo-card{
        order:2;
    }
    .azienda-img-wrapper{
        height:350px;
    }
}

.futuro{

    background:transparent;

    padding:120px 10%;

    text-align:center;
}

.futuro h2{

    font-size:60px;

    margin-bottom:30px;
}

.futuro p{

    max-width:900px;

    margin:auto;

    line-height:1.9;

    color:#555;
}

/* ========================================= */
/*       AZIENDA VIDEO SHOWCASE SECTION      */
/* ========================================= */
.azienda-video-section{
    padding:100px 8% 120px;
    background:linear-gradient(180deg, #ffffff 0%, #f7fdfc 50%, #edfcf9 100%);
    position:relative;
}

.azienda-video-container{
    max-width:1200px;
    margin:0 auto;
    text-align:center;
}

.azienda-video-header{
    max-width:850px;
    margin:0 auto 40px;
}

.azienda-video-header h2{
    font-size:clamp(2.2rem, 3.8vw, 3.4rem);
    color:#0F172A;
    font-weight:900;
    line-height:1.2;
    margin-bottom:16px;
    letter-spacing:-0.8px;
}

.azienda-video-header p{
    font-size:clamp(16px, 1.4vw, 19px);
    color:#475569;
    line-height:1.6;
}

.video-player-frame{
    position:relative;
    width:100%;
    max-width:1050px;
    margin:0 auto;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(13,138,128,0.14), 0 10px 25px rgba(0,0,0,0.06);
    border:1px solid rgba(126,230,222,0.5);
    background:#0F172A;
}

.video-player-frame video{
    width:100%;
    height:auto;
    display:block;
    border-radius:28px;
    object-fit:cover;
}

.video-badge-overlay{
    position:absolute;
    top:20px;
    left:20px;
    background:rgba(15, 23, 42, 0.82);
    backdrop-filter:blur(10px);
    border:1px solid rgba(126, 230, 222, 0.4);
    color:#7EE6DE;
    padding:8px 18px;
    border-radius:9999px;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.5px;
    display:flex;
    align-items:center;
    gap:8px;
    z-index:3;
}

.video-badge-overlay::before{
    content:'';
    display:inline-block;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#7EE6DE;
    box-shadow:0 0 10px #7EE6DE;
    animation:pulseDot 2s infinite;
}

@keyframes pulseDot{
    0%{ transform:scale(0.95); opacity:0.8; }
    50%{ transform:scale(1.3); opacity:1; }
    100%{ transform:scale(0.95); opacity:0.8; }
}

.video-quote-caption{
    margin-top:40px;
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:35px 45px;
    max-width:920px;
    margin-left:auto;
    margin-right:auto;
    box-shadow:0 10px 30px rgba(0,0,0,0.03);
}

.video-quote-caption h3{
    font-size:clamp(1.4rem, 2.2vw, 1.9rem);
    color:#0F172A;
    font-weight:800;
    margin-bottom:10px;
    line-height:1.3;
}

.video-quote-caption p{
    font-size:16px;
    color:#64748B;
    line-height:1.6;
    margin:0;
}

@media(max-width:900px){

    .azienda-container{

        flex-direction:column;
    }

    .azienda-hero h1{

        font-size:55px;
        margin-top: 30px;
    }

    .azienda-testo h2,
    .valori h2,
    .futuro h2,
    .citazione h2{

        font-size:38px;
    }

}
/* ========================================= */
/*      I NOSTRI VALORI (MODERNO & B2B)      */
/* ========================================= */

.valori{
    padding:110px 8% 120px;
    background:linear-gradient(180deg, #ffffff 0%, #f4fbfb 50%, #ffffff 100%);
    position:relative;
}

.valori-header{
    text-align:center;
    max-width:820px;
    margin:0 auto 60px;
}

.valori-header h2{
    font-size:clamp(2.4rem, 4vw, 3.6rem);
    color:#0F172A;
    font-weight:900;
    margin-bottom:16px;
    letter-spacing:-0.8px;
    line-height:1.15;
}

.valori-header p{
    font-size:clamp(16px, 1.4vw, 19px);
    color:#64748B;
    line-height:1.6;
}

.valori-grid-modern{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
    max-width:1280px;
    margin:0 auto;
}

.valore-card-modern{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:38px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.03);
    position:relative;
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display:flex;
    flex-direction:column;
}

.valore-card-modern:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(13,138,128,0.10);
}

.valore-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.valore-icon-box{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform 0.3s ease;
}

.valore-card-modern:hover .valore-icon-box{
    transform:scale(1.08);
}

.valore-num{
    font-size:14px;
    font-weight:900;
    letter-spacing:1px;
    color:#94A3B8;
    background:#F8FAFC;
    padding:4px 12px;
    border-radius:9999px;
    border:1px solid #E2E8F0;
}

.valore-card-modern h3{
    font-size:21px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:12px;
    line-height:1.3;
}

.valore-card-modern p{
    font-size:15px;
    color:#64748B;
    line-height:1.7;
    margin:0;
}

/* CARD ACCENT VARIATIONS */
.card-tiffany:hover{ border-color:#7EE6DE; }
.card-tiffany .valore-icon-box{ background:rgba(126,230,222,0.22); color:#0d8a80; }

.card-rosa:hover{ border-color:#F8C8DC; }
.card-rosa .valore-icon-box{ background:rgba(248,200,220,0.35); color:#d86088; }

.card-oro:hover{ border-color:#FFD54A; }
.card-oro .valore-icon-box{ background:rgba(255,213,74,0.25); color:#b28300; }

.card-smeraldo:hover{ border-color:#10B981; }
.card-smeraldo .valore-icon-box{ background:rgba(16,185,129,0.18); color:#059669; }

.card-indaco:hover{ border-color:#818CF8; }
.card-indaco .valore-icon-box{ background:rgba(129,140,248,0.20); color:#4F46E5; }

.card-ambra:hover{ border-color:#FB923C; }
.card-ambra .valore-icon-box{ background:rgba(251,146,60,0.20); color:#C2410C; }

/* FUTURO MODERN BANNER */
.futuro{
    padding:70px 8% 90px;
    text-align:center;
}

.futuro-card{
    max-width:1050px;
    margin:0 auto;
    background:linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius:28px;
    padding:50px 60px;
    color:#ffffff;
    box-shadow:0 20px 50px rgba(15,23,42,0.15);
    border:1px solid rgba(126,230,222,0.3);
    position:relative;
    overflow:hidden;
}

.futuro-card::before{
    content:'';
    position:absolute;
    top:-50%;
    right:-20%;
    width:350px;
    height:350px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(126,230,222,0.2) 0%, transparent 70%);
    pointer-events:none;
}

.futuro-card h2{
    font-size:clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight:900;
    color:#ffffff;
    margin-bottom:18px;
    line-height:1.2;
}

.futuro-card p{
    font-size:clamp(15px, 1.3vw, 18px);
    color:#CBD5E1;
    line-height:1.7;
    max-width:850px;
    margin:0 auto;
}

@media(max-width:1024px){
    .valori-grid-modern{ grid-template-columns:repeat(2, 1fr); }
    .futuro-card{ padding:40px 30px; }
}

@media(max-width:640px){
    .valori-grid-modern{ grid-template-columns:1fr; }
    .valori{ padding:70px 6% 80px; }
}

/* SFONDO PULITO & LUMINOSO AZIENDA */
.azienda-parallax{
    background:#ffffff;
}

/* ========================================= */
/*           FILIERA & RACCOLTA              */
/* ========================================= */

.filiera-raccolta{
    padding:90px 8% 100px;
    background:rgba(255, 255, 255, 0.92);
    border-top:1px solid rgba(0,0,0,0.06);
    border-bottom:1px solid rgba(0,0,0,0.06);
}

.filiera-header{
    text-align:center;
    max-width:820px;
    margin:0 auto 60px;
}

.filiera-header .section-badge{
    margin-bottom:15px;
}

.filiera-header h2{
    font-size:clamp(2.5rem, 4.5vw, 3.8rem);
    color:#111827;
    font-weight:900;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.filiera-header p{
    font-size:clamp(16px, 1.4vw, 19px);
    color:#475569;
    line-height:1.7;
}

.filiera-gallery{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
    max-width:1300px;
    margin:0 auto;
}

.filiera-card{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display:flex;
    flex-direction:column;
}

.filiera-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
    border-color:#CBD5E1;
}

.filiera-img-wrap{
    position:relative;
    width:100%;
    height:260px;
    overflow:hidden;
    background:#e2e8f0;
}

.filiera-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.5s ease;
}

.filiera-card:hover .filiera-img-wrap img{
    transform:scale(1.06);
}

.filiera-tag{
    position:absolute;
    bottom:14px;
    left:14px;
    background:rgba(15, 23, 42, 0.85);
    backdrop-filter:blur(8px);
    color:#7EE6DE;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.8px;
    text-transform:uppercase;
    padding:5px 14px;
    border-radius:9999px;
    border:1px solid rgba(126, 230, 222, 0.3);
}

.filiera-card-text{
    padding:24px 24px 28px;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.filiera-card-text h3{
    font-size:20px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:8px;
    line-height:1.3;
}

.filiera-card-text p{
    font-size:14px;
    color:#64748B;
    line-height:1.6;
    margin:0;
}

@media(max-width:1050px){
    .filiera-gallery{
        grid-template-columns:1fr;
        max-width:600px;
    }
    .filiera-img-wrap{
        height:300px;
    }
}
/* ========================================= */
/*      MODERN FLOATING CAPSULE NAVBAR       */
/* ========================================= */

.main-navbar-wrapper{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:24px 20px 0;
    display:flex;
    justify-content:center;
    pointer-events:none;
}

.floating-navbar{
    pointer-events:auto;
    width:100%;
    max-width:1320px;
    background:rgba(18, 22, 31, 0.90);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255, 255, 255, 0.12);
    border-radius:9999px;
    padding:10px 18px 10px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 14px 35px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(255,255,255,0.03);
    transition:all 0.3s ease;
}

/* BRAND / LOGO */
.navbar-brand{
    font-size:18px;
    font-weight:800;
    color:#ffffff;
    text-decoration:none;
    letter-spacing:0.5px;
    display:flex;
    align-items:center;
    white-space:nowrap;
    transition:transform 0.2s ease;
}

.navbar-brand:hover{
    transform:scale(1.02);
}

.navbar-brand span{
    color:#7EE6DE;
    margin-left:5px;
    font-weight:600;
}

/* MENU LINKS */
.navbar-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-item{
    color:#D1D5DB;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.8px;
    text-decoration:none;
    transition:color 0.25s ease;
    position:relative;
    padding:4px 0;
    white-space:nowrap;
}

.nav-item:hover{
    color:#7EE6DE;
}

.nav-item.active{
    color:#7EE6DE;
    font-weight:700;
}

.nav-item.active::after{
    content:"";
    position:absolute;
    bottom:-3px;
    left:50%;
    transform:translateX(-50%);
    width:16px;
    height:2px;
    background:#7EE6DE;
    border-radius:2px;
    box-shadow:0 0 8px rgba(126,230,222,0.6);
}

/* ACTIONS RIGHT */
.navbar-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

/* LANGUAGE SELECTOR PILL */
.lang-selector{
    background:rgba(255, 255, 255, 0.08);
    padding:3px;
    border-radius:9999px;
    display:flex;
    align-items:center;
    gap:2px;
    border:1px solid rgba(255, 255, 255, 0.06);
}

.lang-btn{
    color:#94A3B8;
    font-size:11.5px;
    font-weight:700;
    padding:4px 9px;
    border-radius:9999px;
    text-decoration:none;
    transition:all 0.2s ease;
    letter-spacing:0.5px;
}

.lang-btn:hover{
    color:#ffffff;
}

.lang-btn.active{
    background:#7EE6DE;
    color:#0F172A;
    font-weight:800;
}

/* CTA BUTTON */
.btn-cta-nav{
    background:#7EE6DE;
    color:#0F172A;
    font-size:12.5px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.6px;
    padding:10px 22px;
    border-radius:9999px;
    text-decoration:none;
    transition:all 0.25s ease;
    white-space:nowrap;
    box-shadow:0 4px 14px rgba(126, 230, 222, 0.25);
}

.btn-cta-nav:hover{
    background:#9EF2EB;
    transform:translateY(-1px);
    box-shadow:0 6px 20px rgba(126, 230, 222, 0.45);
}

/* RESPONSIVE */
@media(max-width:1100px){
    .navbar-links{
        gap:18px;
    }
    .nav-item{
        font-size:12px;
    }
    .floating-navbar{
        padding:8px 14px 8px 20px;
    }
}

@media(max-width:920px){
    .main-navbar-wrapper{
        padding:12px 10px 0;
    }
    .floating-navbar{
        flex-wrap:wrap;
        justify-content:center;
        border-radius:20px;
        gap:10px;
        padding:10px 14px;
    }
    .navbar-links{
        gap:14px;
        order:2;
        width:100%;
        justify-content:center;
    }
    .navbar-actions{
        order:1;
    }
}






/* NAVBAR SOLO PAGINA AZIENDA */

.azienda-page .azienda-hero{
    padding:120px 10% 70px;
}












/* ========================= */
/*         PRODOTTI          */
/* ========================= */

.prodotti-hero{
    padding:130px 10% 50px;
    text-align:center;
    background:#fff7fb;
}

.prodotti-hero h1{
    font-size:5rem;
    color:#1F1F1F;
    margin-bottom:20px;
}

.prodotti-hero p{
    font-size:22px;
    color:#555;
    max-width:650px;
    margin:0 auto;
    line-height:1.5;
}

.prodotti-grid{
    padding:40px 8% 90px;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
    background:#fff7fb;
}

.prodotto-card{
    min-height:340px;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    text-decoration:none;
    color:white;
    background-size:cover;
    background-position:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.14);
    transition:0.3s;
}

.prodotto-card:hover{
    transform:translateY(-8px);
}

.prodotto-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.50),
        rgba(0,0,0,0.08)
    );
}

.prodotto-content{
    position:absolute;
    left:45px;
    bottom:40px;
    z-index:2;
    max-width:420px;
}

.prodotto-content h2{
    font-size:52px;
    margin-bottom:15px;
}

.prodotto-content p{
    font-size:19px;
    line-height:1.5;
    margin-bottom:25px;
}

.prodotto-content span{
    display:inline-block;
    border:2px solid white;
    padding:12px 26px;
    border-radius:35px;
    font-weight:600;
}

/* IMMAGINI DEI RIQUADRI */

.pistacchio-card{
    background-image:url("img2/sfondo\ pistacchio\ giallo.jpeg");
}

.mandorle-card{
    background-image:url("img2/mandorle\ tiffany.jpg");
}

.nocciole-card{
    background-image:url("img2/nocciole.jpg");
}

.bio-card{
    background-image:url("img2/immagibe\ BIO.png");
}

/* RESPONSIVE PRODOTTI */

@media(max-width:768px){

    .prodotti-hero{
        padding:60px 8% 35px;
    }

    .prodotti-hero h1{
        font-size:3rem;
    }

    .prodotti-hero p{
        font-size:18px;
    }

    .prodotti-grid{
        grid-template-columns:1fr;
        padding:30px 6% 70px;
    }

    .prodotto-card{
        min-height:300px;
    }

    .prodotto-content{
        left:28px;
        bottom:30px;
    }

    .prodotto-content h2{
        font-size:38px;
    }

    .prodotto-content p{
        font-size:16px;
    }
}













/* ========================= */
/*   PAGINE DETTAGLIO PRODOTTI */
/* ========================= */

.pistacchio-detail-page{
    background:linear-gradient(
        135deg,
        #fffdf2 0%,
        #fff4b8 55%,
        #ffe66b 100%
    );
}

.mandorle-detail-page{
    background:linear-gradient(
        135deg,
        #f5ffff 0%,
        #d9fbf7 55%,
        #b9f3ec 100%
    );
}

.detail-hero{
    padding:130px 8% 60px;
    text-align:center;
}

.detail-hero h1{
    font-size:7rem;
    line-height:1;
    color:#1F1F1F;
    margin-bottom:25px;
}

.detail-hero p{
    font-size:24px;
    color:#333;
    max-width:760px;
    margin:0 auto;
    line-height:1.6;
}

.detail-products{
    padding:30px 8% 80px;
}

.detail-item{
    display:grid;
    grid-template-columns:170px 1fr;
    gap:35px;
    align-items:center;

    padding:28px 0;
    border-bottom:1px solid rgba(0,0,0,0.18);
}

.detail-item img{
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:24px;
    background:white;
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
}

.detail-item h2{
    font-size:34px;
    color:#1F1F1F;
    margin-bottom:12px;
}

.detail-item p{
    font-size:18px;
    color:#333;
    line-height:1.6;
}

.detail-values{
    margin:0 8% 80px;
    padding:45px;
    border-radius:30px;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
    text-align:center;
}

.pistacchio-values{
    background:#1F1F1F;
    color:#FFE66B;
}

.mandorle-values{
    background:#1F1F1F;
    color:#7EE6DE;
}

.detail-values span{
    display:flex;
    justify-content:center;
    align-items:center;

    width:58px;
    height:58px;

    margin:0 auto 18px;

    border:2px solid currentColor;
    border-radius:50%;

    font-size:26px;
    font-weight:700;
}

.detail-values h3{
    font-size:22px;
    color:white;
}

/* MOBILE */

@media(max-width:768px){

    .detail-hero h1{
        font-size:4rem;
    }

    .detail-hero p{
        font-size:18px;
    }

    .detail-item{
        grid-template-columns:1fr;
        text-align:center;
    }

    .detail-item img{
        margin:auto;
    }

    .detail-item h2{
        font-size:28px;
    }

    .detail-values{
        grid-template-columns:1fr 1fr;
        padding:30px;
    }
}







.back-products{
    display:inline-block;
    margin-top:35px;
    padding:14px 28px;
    border:2px solid #1F1F1F;
    border-radius:40px;
    color:#1F1F1F;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.back-products:hover{
    background:#1F1F1F;
    color:white;
}











/* ========================= */
/*          BIO              */
/* ========================= */

.bio-detail-page{
    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #f3fbf6 55%,
        #dcefe5 100%
    );
}

.bio-hero{
    padding:130px 8% 70px;
    text-align:center;
}

.bio-hero h1{
    font-size:7rem;
    color:#1F1F1F;
    line-height:1;
    margin-bottom:25px;
}

.bio-hero p{
    font-size:24px;
    color:#444;
    max-width:780px;
    margin:0 auto;
    line-height:1.6;
}

.bio-sections{
    padding:30px 10% 70px;
}

.bio-box{
    padding:45px 0;
    border-bottom:1px solid rgba(0,0,0,0.12);
}

.bio-box h2{
    font-size:38px;
    color:#1F1F1F;
    margin-bottom:20px;
}

.bio-box p{
    font-size:18px;
    line-height:1.9;
    color:#444;
    max-width:950px;
}

.bio-values{
    margin:0 8% 80px;
    padding:45px;
    border-radius:30px;

    background:#1F1F1F;
    color:#BFE8D1;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
    text-align:center;
}

.bio-values span{
    display:flex;
    justify-content:center;
    align-items:center;

    width:58px;
    height:58px;
    margin:0 auto 18px;

    border:2px solid currentColor;
    border-radius:50%;

    font-size:26px;
    font-weight:700;
}

.bio-values h3{
    font-size:22px;
    color:white;
}

/* MOBILE BIO */

@media(max-width:768px){

    .bio-hero h1{
        font-size:4rem;
    }

    .bio-hero p{
        font-size:18px;
    }

    .bio-box h2{
        font-size:30px;
    }

    .bio-box p{
        font-size:16px;
    }

    .bio-values{
        grid-template-columns:1fr 1fr;
        padding:30px;
    }
}





/* ========================================= */
/*          QUALITÀ (MODERNA & DINAMICA)     */
/* ========================================= */

.qualita-page{
    background:#faf8f5;
    color:#1E293B;
}

.qualita-hero-modern{
    position:relative;
    padding:150px 8% 70px;
    text-align:center;
    background:linear-gradient(180deg, #ffffff 0%, #f4fbfb 60%, #e8f9f7 100%);
    overflow:hidden;
}

.qualita-hero-container{
    position:relative;
    z-index:2;
    max-width:1050px;
    margin:0 auto;
}

.qualita-hero-modern h1{
    font-size:clamp(3.5rem, 6.5vw, 5.5rem);
    color:#0F172A;
    font-weight:900;
    margin-bottom:18px;
    letter-spacing:-1.2px;
    line-height:1.05;
}

.qualita-hero-modern .qualita-hero-desc{
    font-size:clamp(16px, 1.6vw, 20px);
    color:#475569;
    max-width:780px;
    margin:0 auto 35px;
    line-height:1.6;
}

.qualita-kpi-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    max-width:980px;
    margin:40px auto 0;
}

.qualita-kpi-card{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:20px;
    padding:22px 18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.03);
    transition:transform 0.3s ease, border-color 0.3s ease;
}

.qualita-kpi-card:hover{
    transform:translateY(-4px);
    border-color:#7EE6DE;
}

.qualita-kpi-card .kpi-number{
    font-size:clamp(2rem, 3vw, 2.5rem);
    font-weight:900;
    color:#0d8a80;
    line-height:1;
    margin-bottom:6px;
}

.qualita-kpi-card .kpi-label{
    font-size:13px;
    font-weight:600;
    color:#64748B;
    line-height:1.3;
}

/* QUALITA VIDEO SECTION */
.qualita-video-block{
    padding:80px 8%;
    max-width:1280px;
    margin:0 auto;
}

.qualita-video-block .product-section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 45px;
}

/* 4 PILASTRI QUALITA */
.qualita-pillars-section{
    padding:70px 8% 90px;
    max-width:1380px;
    margin:0 auto;
}

.qualita-pillars-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.pillar-card-modern{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:35px 28px;
    box-shadow:0 12px 30px rgba(0,0,0,0.03);
    transition:all 0.35s ease;
    display:flex;
    flex-direction:column;
}

.pillar-card-modern:hover{
    transform:translateY(-6px);
    border-color:#7EE6DE;
    box-shadow:0 20px 45px rgba(13,138,128,0.1);
}

.pillar-card-icon{
    width:56px;
    height:56px;
    border-radius:18px;
    background:rgba(126,230,222,0.18);
    color:#0d8a80;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.pillar-card-modern h3{
    font-size:20px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:12px;
    line-height:1.3;
}

.pillar-card-modern p{
    font-size:14.5px;
    color:#64748B;
    line-height:1.6;
    margin:0;
}

/* SPLIT SECTIONS WITH IMAGES */
.qualita-split-section{
    padding:60px 8%;
    max-width:1380px;
    margin:0 auto;
}

.qualita-split-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:90px;
}

.qualita-split-row.reverse{
    direction:rtl;
}

.qualita-split-row.reverse > *{
    direction:ltr;
}

.qualita-split-img{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    border:1px solid #E2E8F0;
}

.qualita-split-img img{
    width:100%;
    height:auto;
    display:block;
    transition:transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.qualita-split-img:hover img{
    transform:scale(1.03);
}

.qualita-split-text h2{
    font-size:clamp(2rem, 3vw, 2.8rem);
    color:#0F172A;
    font-weight:900;
    margin-bottom:18px;
    line-height:1.2;
    letter-spacing:-0.5px;
}

.qualita-split-text p{
    font-size:16px;
    color:#475569;
    line-height:1.7;
    margin-bottom:20px;
}

.qualita-check-list{
    list-style:none;
    padding:0;
    margin:25px 0 0;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.qualita-check-list li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    font-weight:600;
    color:#1E293B;
}

.qualita-check-list li span{
    width:24px;
    height:24px;
    border-radius:50%;
    background:rgba(126,230,222,0.25);
    color:#0d8a80;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:800;
}

/* CERTIFICAZIONI GRID */
.certificazioni-grid-section{
    padding:80px 8%;
    background:linear-gradient(180deg, #faf8f5 0%, #f0faf8 100%);
}

.certificazioni-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    max-width:1280px;
    margin:0 auto;
}

.cert-badge-card{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:22px;
    padding:30px 25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.02);
    display:flex;
    align-items:flex-start;
    gap:18px;
    transition:all 0.3s ease;
}

.cert-badge-card:hover{
    transform:translateY(-4px);
    border-color:#7EE6DE;
    box-shadow:0 15px 35px rgba(13,138,128,0.08);
}

.cert-badge-card .cert-icon{
    font-size:26px;
    background:#F1F5F9;
    width:50px;
    height:50px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.cert-badge-card h4{
    font-size:17px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:6px;
}

.cert-badge-card p{
    font-size:13.5px;
    color:#64748B;
    line-height:1.5;
    margin:0;
}

@media(max-width:1024px){
    .qualita-kpi-grid{ grid-template-columns:repeat(2, 1fr); }
    .qualita-pillars-grid{ grid-template-columns:repeat(2, 1fr); }
    .qualita-split-row{ grid-template-columns:1fr; gap:40px; }
    .qualita-split-row.reverse{ direction:ltr; }
    .certificazioni-grid{ grid-template-columns:repeat(2, 1fr); }
}

@media(max-width:640px){
    .qualita-kpi-grid{ grid-template-columns:1fr; }
    .qualita-pillars-grid{ grid-template-columns:1fr; }
    .certificazioni-grid{ grid-template-columns:1fr; }
}













/* ========================================= */
/*             CONTATTI MODERNO              */
/* ========================================= */

.contatti-page{
    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #f8fdfd 50%,
        #eefbf9 100%
    );
    min-height:100vh;
}

.contatti-hero{
    padding:130px 8% 50px;
    text-align:center;
    max-width:900px;
    margin:0 auto;
}

.contatti-hero .section-badge{
    margin-bottom:15px;
}

.contatti-hero h1{
    font-size:clamp(3.5rem, 6.5vw, 6rem);
    color:#111827;
    line-height:1.05;
    font-weight:900;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.contatti-hero p{
    font-size:clamp(17px, 1.8vw, 21px);
    color:#475569;
    line-height:1.6;
    max-width:720px;
    margin:0 auto;
}

/* MAIN CONTACT HUB (2-COLUMN) */
.contact-hub{
    padding:20px 8% 90px;
    max-width:1300px;
    margin:0 auto;
}

.contact-hub-grid{
    display:grid;
    grid-template-columns:1.05fr 1.35fr;
    gap:45px;
    align-items:start;
}

/* LEFT COLUMN: DIRECT CHANNELS */
.contact-info-col{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-channel-card{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:26px 28px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    box-shadow:0 8px 25px rgba(0, 0, 0, 0.04);
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 35px rgba(0, 0, 0, 0.08);
    border-color:#CBD5E1;
}

.contact-channel-card .pillar-icon{
    margin-bottom:0;
    flex-shrink:0;
}

.contact-channel-details{
    flex:1;
}

.contact-channel-details h4{
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#64748B;
    margin-bottom:6px;
}

.contact-channel-details a{
    font-size:20px;
    font-weight:800;
    color:#0F172A;
    text-decoration:none;
    display:inline-block;
    margin-bottom:6px;
    transition:color 0.25s ease;
    word-break:break-word;
}

.contact-channel-details a:hover{
    color:#0d8a80;
}

.contact-channel-details p{
    font-size:13.5px;
    color:#64748B;
    line-height:1.5;
    margin:0;
}

/* TRUST / SLA BOX */
.contact-sla-box{
    background:rgba(126, 230, 222, 0.12);
    border:1px solid rgba(126, 230, 222, 0.35);
    border-radius:22px;
    padding:24px 26px;
    margin-top:10px;
}

.contact-sla-box h5{
    font-size:15px;
    font-weight:800;
    color:#0d8a80;
    text-transform:uppercase;
    letter-spacing:0.8px;
    margin-bottom:14px;
    display:flex;
    align-items:center;
    gap:8px;
}

.contact-sla-list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.contact-sla-list li{
    font-size:13.5px;
    color:#334155;
    display:flex;
    align-items:center;
    gap:10px;
    line-height:1.4;
}

.contact-sla-list li svg{
    flex-shrink:0;
    color:#0d8a80;
}

/* RIGHT COLUMN: INTERACTIVE FORM */
.contact-form-container{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:28px;
    padding:45px 40px;
    box-shadow:0 18px 45px rgba(0, 0, 0, 0.06);
    position:relative;
}

.contact-form-header{
    margin-bottom:30px;
}

.contact-form-header h3{
    font-size:28px;
    font-weight:800;
    color:#111827;
    margin-bottom:8px;
    letter-spacing:-0.5px;
}

.contact-form-header p{
    font-size:15px;
    color:#64748B;
    line-height:1.5;
    margin:0;
}

.modern-contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:7px;
    text-align:left;
}

.form-group label{
    font-size:13px;
    font-weight:700;
    color:#334155;
    letter-spacing:0.3px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    font-family:'Poppins', sans-serif;
    font-size:14.5px;
    color:#111827;
    background:#F8FAFC;
    border:1px solid #CBD5E1;
    border-radius:14px;
    padding:13px 16px;
    transition:all 0.25s ease;
    outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    background:#ffffff;
    border-color:#7EE6DE;
    box-shadow:0 0 0 4px rgba(126, 230, 222, 0.25);
}

.form-group textarea{
    resize:vertical;
    min-height:120px;
}

.btn-submit-contact{
    background:#7EE6DE;
    color:#0F172A;
    font-family:'Poppins', sans-serif;
    font-size:15px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:0.8px;
    border:none;
    border-radius:14px;
    padding:16px 32px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:all 0.3s ease;
    box-shadow:0 8px 22px rgba(126, 230, 222, 0.35);
    margin-top:10px;
}

.btn-submit-contact:hover{
    background:#96EFE8;
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(126, 230, 222, 0.5);
}

/* BOTTOM EXPORT BADGES SECTION */
.contact-bottom-features{
    padding:40px 8% 80px;
    max-width:1300px;
    margin:0 auto;
}

.features-3-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.feature-mini-card{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:20px;
    padding:28px 24px;
    display:flex;
    flex-direction:column;
    gap:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.03);
}

.feature-mini-card .feature-tag{
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#0d8a80;
}

.feature-mini-card h4{
    font-size:17px;
    font-weight:800;
    color:#0F172A;
    margin:0;
}

.feature-mini-card p{
    font-size:13.5px;
    color:#64748B;
    line-height:1.6;
    margin:0;
}

/* ========================================= */
/*      DOVE SIAMO & MAPPA INTERATTIVA       */
/* ========================================= */

.smeraldo-circle{
    background:rgba(16, 185, 129, 0.18);
    border:1px solid rgba(16, 185, 129, 0.35);
}

.smeraldo-circle svg{
    stroke:#059669;
}

.contact-map-section{
    padding:30px 8% 90px;
    max-width:1300px;
    margin:0 auto;
}

.contact-map-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 35px;
}

.contact-map-header h2{
    font-size:clamp(2.2rem, 3.5vw, 3rem);
    color:#0F172A;
    font-weight:900;
    margin-bottom:14px;
    letter-spacing:-0.5px;
}

.contact-map-header p{
    font-size:16px;
    color:#64748B;
    line-height:1.7;
    margin:0;
}

.contact-map-wrapper{
    position:relative;
    width:100%;
    height:460px;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.04);
    border:1px solid rgba(15, 23, 42, 0.09);
    background:#e2e8f0;
}

.contact-map-wrapper iframe{
    width:100%;
    height:100%;
    border:none;
    display:block;
    filter:contrast(1.02) saturate(1.05);
}

.map-overlay-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:rgba(15, 23, 42, 0.90);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:#ffffff;
    font-size:13.5px;
    font-weight:600;
    padding:10px 20px;
    border-radius:9999px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    box-shadow:0 10px 25px rgba(0, 0, 0, 0.25);
    border:1px solid rgba(255, 255, 255, 0.15);
    z-index:2;
    pointer-events:none;
}

.map-overlay-badge svg{
    color:#7EE6DE;
}

@media(max-width:768px){
    .contact-map-wrapper{
        height:340px;
        border-radius:20px;
    }
    .map-overlay-badge{
        top:12px;
        left:12px;
        font-size:12px;
        padding:8px 14px;
        max-width:calc(100% - 24px);
    }
}

/* RESPONSIVE */
@media(max-width:1050px){
    .contact-hub-grid{
        grid-template-columns:1fr;
        gap:35px;
    }
    .features-3-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:650px){
    .contact-form-container{
        padding:30px 20px;
    }
    .form-grid-2{
        grid-template-columns:1fr;
    }
    .contact-channel-card{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
    }
}













/* ========================================= */
/*      PAGINE DETTAGLIO PRODOTTO (MODERNE)  */
/* ========================================= */

.nocciole-detail-page,
.mandorle-detail-page,
.pistacchio-detail-page,
.bio-detail-page{
    background:#faf8f5;
    color:#1E293B;
}

/* Accent Color Variations */
.mandorle-detail-page .product-pill span{ background:#FFD54A; }
.mandorle-detail-page .product-card-badge{ color:#FFD54A; border-color:rgba(255,213,74,0.4); }
.mandorle-detail-page .product-card-modern:hover{ border-color:#FFD54A; }
.mandorle-detail-page .cultivar-origin-tag{ color:#92400e; background:#FEF3C7; }
.mandorle-detail-page .btn-b2b-inquiry{ background:#FFD54A; box-shadow:0 8px 25px rgba(255,213,74,0.35); }

.pistacchio-detail-page .product-pill span{ background:#7EE6DE; }
.pistacchio-detail-page .product-card-badge{ color:#7EE6DE; border-color:rgba(126,230,222,0.4); }
.pistacchio-detail-page .product-card-modern:hover{ border-color:#7EE6DE; }
.pistacchio-detail-page .cultivar-origin-tag{ color:#065f46; background:#D1FAE5; }
.pistacchio-detail-page .btn-b2b-inquiry{ background:#7EE6DE; box-shadow:0 8px 25px rgba(126,230,222,0.35); }

.bio-detail-page .product-pill span{ background:#10B981; }
.bio-detail-page .product-card-badge{ color:#34D399; border-color:rgba(16,185,129,0.4); }
.bio-detail-page .product-card-modern:hover{ border-color:#10B981; }
.bio-detail-page .cultivar-origin-tag{ color:#065f46; background:#D1FAE5; }
.bio-detail-page .btn-b2b-inquiry{ background:#10B981; color:#ffffff; box-shadow:0 8px 25px rgba(16,185,129,0.35); }

.product-detail-hero{
    position:relative;
    padding:150px 8% 70px;
    text-align:center;
    background:linear-gradient(180deg, #ffffff 0%, #faf6f0 60%, #f5efe6 100%);
    overflow:hidden;
}

.product-hero-container{
    position:relative;
    z-index:2;
    max-width:1000px;
    margin:0 auto;
}

.back-to-products{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:600;
    color:#64748B;
    text-decoration:none;
    margin-bottom:24px;
    background:rgba(255, 255, 255, 0.85);
    padding:8px 20px;
    border-radius:9999px;
    border:1px solid #E2E8F0;
    box-shadow:0 2px 8px rgba(0,0,0,0.02);
    transition:all 0.25s ease;
}

.back-to-products:hover{
    color:#0F172A;
    border-color:#CBD5E1;
    transform:translateX(-3px);
}

.product-detail-hero h1{
    font-size:clamp(3.5rem, 6.5vw, 5.5rem);
    color:#0F172A;
    font-weight:900;
    margin-bottom:18px;
    letter-spacing:-1.2px;
    line-height:1.05;
}

.product-detail-hero .product-hero-desc{
    font-size:clamp(16px, 1.6vw, 20px);
    color:#475569;
    max-width:740px;
    margin:0 auto 35px;
    line-height:1.6;
}

.product-hero-pills{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.product-pill{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:9999px;
    padding:9px 20px;
    font-size:13.5px;
    font-weight:600;
    color:#334155;
    box-shadow:0 4px 15px rgba(0,0,0,0.03);
    display:flex;
    align-items:center;
    gap:8px;
}

.product-pill span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#F8C8DC;
}

/* SEZIONE LAVORAZIONI & FORMATI */
.product-showcase-section{
    padding:80px 8%;
    max-width:1380px;
    margin:0 auto;
}

.product-section-header{
    text-align:center;
    max-width:780px;
    margin:0 auto 55px;
}

.product-section-header .section-badge{
    margin-bottom:12px;
}

.product-section-header h2{
    font-size:clamp(2.2rem, 3.4vw, 3rem);
    color:#0F172A;
    font-weight:900;
    margin-bottom:14px;
    letter-spacing:-0.6px;
}

.product-section-header p{
    font-size:16px;
    color:#64748B;
    line-height:1.6;
}

/* 6-CARD GRID FOR PRODUCT FORMATS */
.product-cards-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.product-card-modern{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.04);
    transition:all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display:flex;
    flex-direction:column;
}

.product-card-modern:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(0,0,0,0.08);
    border-color:#F8C8DC;
}

.product-card-img-wrap{
    position:relative;
    width:100%;
    height:250px;
    overflow:hidden;
    background:#f1f5f9;
}

.product-card-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.6s ease;
}

.product-card-modern:hover .product-card-img-wrap img{
    transform:scale(1.06);
}

.product-card-badge{
    position:absolute;
    bottom:14px;
    left:14px;
    background:rgba(15, 23, 42, 0.85);
    backdrop-filter:blur(10px);
    color:#F8C8DC;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.6px;
    text-transform:uppercase;
    padding:6px 14px;
    border-radius:9999px;
    border:1px solid rgba(248, 200, 220, 0.3);
}

.product-card-body{
    padding:26px 24px 28px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.product-card-body h3{
    font-size:21px;
    color:#0F172A;
    font-weight:800;
    margin-bottom:10px;
    letter-spacing:-0.3px;
}

.product-card-body p{
    font-size:14.5px;
    color:#64748B;
    line-height:1.6;
    margin-bottom:20px;
    flex-grow:1;
}

.product-card-specs{
    background:#F8FAFC;
    border-radius:14px;
    padding:12px 14px;
    border:1px solid #F1F5F9;
    font-size:12.5px;
    color:#475569;
    line-height:1.5;
}

.product-card-specs strong{
    color:#0F172A;
}

/* VARIETA / ORIGINI SHOWCASE */
.cultivar-section{
    background:linear-gradient(180deg, #ffffff 0%, #faf6f0 100%);
    border-top:1px solid #E2E8F0;
    border-bottom:1px solid #E2E8F0;
    padding:90px 8%;
}

.cultivar-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
    max-width:1380px;
    margin:0 auto;
}

.cultivar-card{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:28px 24px;
    box-shadow:0 10px 25px rgba(0,0,0,0.03);
    transition:all 0.35s ease;
    position:relative;
}

.cultivar-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.07);
    border-color:#F8C8DC;
}

.cultivar-origin-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:11.5px;
    font-weight:700;
    color:#9d174d;
    background:#FDF2F8;
    padding:4px 12px;
    border-radius:9999px;
    margin-bottom:14px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.cultivar-card h3{
    font-size:19px;
    color:#0F172A;
    font-weight:800;
    margin-bottom:10px;
}

.cultivar-card p{
    font-size:13.5px;
    color:#64748B;
    line-height:1.55;
}

/* B2B SPECS & PACKAGING BAR */
.product-b2b-specs-box{
    background:#0F172A;
    color:#ffffff;
    border-radius:32px;
    padding:55px 50px;
    margin:70px auto 0;
    max-width:1380px;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:45px;
    align-items:center;
    box-shadow:0 25px 60px rgba(15, 23, 42, 0.2);
}

.product-b2b-specs-box h3{
    font-size:clamp(1.8rem, 2.5vw, 2.4rem);
    color:#ffffff;
    font-weight:800;
    margin-bottom:12px;
}

.product-b2b-specs-box p{
    color:#94A3B8;
    font-size:15px;
    line-height:1.6;
    margin-bottom:20px;
}

.packaging-list{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.pack-tag{
    background:rgba(255, 255, 255, 0.08);
    border:1px solid rgba(255, 255, 255, 0.15);
    color:#E2E8F0;
    font-size:13px;
    padding:6px 16px;
    border-radius:9999px;
}

.specs-cta-side{
    text-align:right;
}

.btn-b2b-inquiry{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#F8C8DC;
    color:#0F172A;
    font-size:15px;
    font-weight:700;
    padding:16px 36px;
    border-radius:9999px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(248, 200, 220, 0.35);
    transition:all 0.3s ease;
}

.btn-b2b-inquiry:hover{
    background:#ffffff;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(248, 200, 220, 0.5);
}

@media(max-width:1050px){
    .product-cards-grid{
        grid-template-columns:repeat(2, 1fr);
    }
    .cultivar-grid{
        grid-template-columns:repeat(2, 1fr);
    }
    .product-b2b-specs-box{
        grid-template-columns:1fr;
        padding:35px 28px;
        text-align:left;
    }
    .specs-cta-side{
        text-align:left;
    }
}

@media(max-width:680px){
    .product-cards-grid,
    .cultivar-grid{
        grid-template-columns:1fr;
    }
}










/* MODULO CONTATTI - VERSIONE ELEGANTE */

.contact-form{
    max-width:900px;
    margin:50px auto 0;
    padding:45px;
    border-radius:30px;
    background:rgba(255,255,255,0.78);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px 22px;
    margin-bottom:20px;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:18px;
    background:white;
    font-family:'Poppins', sans-serif;
    font-size:16px;
    color:#333;
    outline:none;
    box-shadow:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#7EE6DE;
}

.contact-form textarea{
    min-height:160px;
    resize:none;
}

.contact-form button{
    display:block;
    margin:10px auto 0;
    border:none;
    cursor:pointer;
    font-family:'Poppins', sans-serif;
    font-size:16px;
}

@media(max-width:768px){
    .contact-form{
        padding:28px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }
}