/* =========================================================
   VARIABILI E RESET
   ========================================================= */
:root {
    --salvia: #A7B8A8;
    --salvia-scuro: #6F7F72;
    --beige: #E8E1D4;
    --testo: #5A5A5A;
    --titolo: #1a1a1a;
    --bianco: #FFFFFF;
    --black: #1a1a1a;
    --header-h: 80px;
    --header-h-mobile: 56px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--testo);
    background: var(--beige);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    background: var(--salvia-scuro);
    border-bottom: 1px solid rgba(232, 225, 212, 0.2);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

.header.header-scrolled {
    height: 64px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-bottom-color: rgba(232, 225, 212, 0.3);
}

/* header-inner usa già .container per width:90% / max-width:1200px */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo {
    height: 52px;
    width: auto;
    border-radius: 6px;
    transition: height 0.3s ease;
}

.header-scrolled .logo {
    height: 40px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1200;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--beige);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Nav desktop */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-list>li>a {
    color: var(--beige);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 6px 0;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-list>li>a:hover {
    opacity: 1;
    color: var(--bianco);
}

.nav-list>li>a.nav-cta {
    background: var(--beige);
    color: var(--salvia-scuro);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-list>li>a.nav-cta:hover {
    background: var(--bianco);
    transform: translateY(-2px);
}


/* =========================================================
   MEGA MENU — DESKTOP
   ========================================================= */
.nav-item-mega {
    position: static;
}

/* Titolo mega menu: barra sinistra come i sottotitoli delle colonne */
.nav-item-mega>.nav-link {
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-item-mega>.nav-link:hover {
    opacity: 1;
    color: var(--bianco);
}

.mega-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: var(--bianco);
    border-top: 1px solid rgba(111, 127, 114, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 999;
    overflow: visible;
}

/* Ponte invisibile che copre il gap tra trigger e menu */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    /* altezza del gap da coprire */
    left: 0;
    width: 100%;
    height: 16px;
    background: transparent;
}

.header.header-scrolled .mega-menu {
    top: 64px;
}

.nav-item-mega.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    gap: 2rem;
}

.mega-column {
    flex: 1;
    min-width: 160px;
}

.mega-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--salvia-scuro);
    margin-bottom: 0.875rem;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--salvia);
    padding-left: 0.75rem;
    text-transform: uppercase;
}

.mega-column ul {
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 0.5rem;
}

.mega-column ul li a {
    color: var(--testo);
    font-size: 0.875rem;
    display: block;
    padding: 2px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-column ul li a:hover {
    color: var(--salvia-scuro);
    transform: translateX(4px);
}


/* =========================================================
   HEADER MOBILE + MEGA MENU MOBILE
   ========================================================= */
@media (max-width: 768px) {

    .header {
        height: var(--header-h-mobile);
    }

    .header.header-scrolled {
        height: var(--header-h-mobile);
    }

    .header-inner {
        height: var(--header-h-mobile);
    }

    .logo {
        height: 36px !important;
    }

    .hamburger {
        display: flex;
    }

    /* Pannello laterale */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--salvia-scuro);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1100;
        padding: 80px 20px 40px;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-list>li {
        width: 100%;
        border-bottom: 1px solid rgba(232, 225, 212, 0.12);
    }

    .nav-list>li:last-child {
        border-bottom: none;
    }

    .nav-list>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        font-size: 1rem;
        color: var(--beige);
        opacity: 1;
        width: 100%;
    }

    .nav-list>li>a:hover {
        color: var(--bianco);
    }

    /* Rimuovi barra sinistra desktop sul mobile */
    .nav-item-mega>.nav-link {
        border-left: none;
        padding-left: 0;
    }

    /* Freccia dropdown */
    .nav-item-mega>.nav-link::after {
        content: "▼";
        font-size: 0.65rem;
        transition: transform 0.3s ease;
        color: rgba(232, 225, 212, 0.6);
        flex-shrink: 0;
    }

    .nav-item-mega.active-mobile>.nav-link::after {
        transform: rotate(180deg);
    }

    /* Mega menu mobile */
    .mega-menu {
        position: static;
        top: auto;
        width: 100%;
        background: rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        margin: 0 0 12px 0;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        display: none;
        transition: none;
    }

    .nav-item-mega.active-mobile .mega-menu {
        display: block;
    }

    .mega-menu-container {
        flex-direction: column;
        padding: 12px 14px;
        gap: 16px;
        width: 100%;
    }

    .mega-column h4 {
        color: rgba(232, 225, 212, 0.7);
        font-size: 0.75rem;
        margin-bottom: 8px;
        border-left-color: rgba(232, 225, 212, 0.4);
    }

    .mega-column ul li {
        margin-bottom: 0;
    }

    .mega-column ul li a {
        color: rgba(232, 225, 212, 0.85);
        font-size: 0.9rem;
        padding: 7px 0;
    }

    .mega-column ul li a:hover {
        color: var(--bianco);
        transform: translateX(4px);
    }

    /* CTA mobile */
    .nav-list li a.nav-cta {
        display: block;
        background: var(--beige);
        color: var(--salvia-scuro) !important;
        padding: 12px 20px !important;
        border-radius: 4px;
        text-align: center;
        margin-top: 8px;
        font-weight: 600;
        opacity: 1;
        justify-content: center;
    }

    .nav-list li a.nav-cta:hover {
        background: var(--bianco);
        transform: none;
    }

    @media (max-width: 768px) {
        .sp-hero .container {
            padding-top: 32px;
        }
    }
}


/* =========================================================
   TABLET
   ========================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-list {
        gap: 16px;
    }

    .nav-list>li>a {
        font-size: 0.95rem;
    }

    .mega-menu-container {
        gap: 1.25rem;
    }

    .mega-column h4 {
        font-size: 0.8rem;
    }

    .mega-column ul li a {
        font-size: 0.8rem;
    }
}


/* =========================================================
   HERO
   ========================================================= */
.hero-samsic {
    position: relative;
    width: 100%;
    height: 80vh;
    /* O l'altezza che usi nel tuo style.css */
    overflow: hidden;
    background-color: #000;
    /* Evita flash bianchi */
}

/* Container che ospita lo stack di video in background */
.hero-samsic-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Ogni video occupa tutto lo spazio del contenitore, impilato sugli altri */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease;
    /* Deve combaciare con DURATA_CROSSFADE nel JS (1000ms) */
    pointer-events: none;
}

/* Il video attivo è visibile; durante il cambio, vecchio e nuovo si sovrappongono e dissolvono insieme */
.hero-video.active {
    opacity: 1;
}

.hero-samsic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.35);
    /* ridotto un po' */
    z-index: 3;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-samsic {
        min-height: 85vh;
        padding-top: var(--header-h-mobile);
    }
}

.hero-samsic2 {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--salvia-scuro) 0%, var(--salvia) 100%);
    color: var(--bianco);
    text-align: center;
    padding-top: var(--header-h);
}

.hero-samsic2-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/chi-siamo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.95;
    pointer-events: none;
}

.hero-samsic-uffici-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/servizi-uffici3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.95;
    pointer-events: none;
}

.hero-samsic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.35);
    pointer-events: none;
}

.hero-samsic-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-samsic h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-samsic h1 span {
    color: var(--beige);
}

.hero-samsic p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: var(--beige);
    color: var(--salvia-scuro);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--bianco);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--bianco);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin-left: 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bianco);
}

@media (max-width: 768px) {
    .hero-samsic {
        padding-top: var(--header-h-mobile);
        min-height: 70vh;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 12px;
        display: block;
        text-align: center;
    }
}


/* =========================================================
   SERVIZI
   ========================================================= */
.servizi-samsic {
    padding: 80px 0;
}

.numbers-samsic h2,
.perche-samsic h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 48px;
    text-align: center;
    color: var(--black);
}

.perche-samsic h2 {
    color: var(--bianco);
}

/* Titolo sezione servizi: barra sinistra, testo allineato a sinistra */
.servizi-samsic h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 48px;
    color: var(--black);
    text-align: left;
    border-left: 3px solid var(--salvia);
    padding-left: 14px;
    display: block;
}

.servizi-samsic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 28px;
}

.servizio-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: var(--salvia-scuro);
    display: block;
    min-height: 280px;
}

.servizio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.servizio-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servizio-card:hover img {
    transform: scale(1.05);
}

.servizio-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--bianco);
}

.servizio-card h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--bianco);
    line-height: 1.3;
}

.servizio-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

@media (max-width: 768px) {
    .servizi-samsic {
        padding: 60px 0;
    }
}


/* =========================================================
   CARD PER SOCIAL
   ========================================================= */
.social-samsic-wrapper {
    position: relative;
    padding: 0 30px;
}

.social-samsic-grid {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.social-samsic-grid::-webkit-scrollbar {
    display: none;
}

.social-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bianco);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--salvia-scuro);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.social-arrow:hover {
    background: var(--beige);
    transform: translateY(-50%) scale(1.08);
}

.social-arrow-left {
    left: 0;
}

.social-arrow-right {
    right: 0;
}

.social-card {
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: var(--bianco);
    width: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.social-card a {
    display: block;
}

.social-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.social-card:hover img {
    transform: scale(1.03);
}

.social-card-label {
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--salvia-scuro);
    text-align: center;
}


/* =========================================================
   NUMBERS
   ========================================================= */
.numbers-samsic {
    background: var(--bianco);
    padding: 70px 0;
}

.numbers-samsic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.number-samsic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.big-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--salvia-scuro);
    line-height: 1;
}

.number-label {
    color: var(--testo);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .numbers-samsic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}


/* =========================================================
   PERCHÉ NOI
   ========================================================= */
.perche-samsic {
    background: var(--salvia-scuro);
    padding: 80px 0;
    color: var(--bianco);
}

.perche-samsic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.perche-samsic-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.perche-samsic-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.perche-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.perche-samsic-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--beige);
    font-weight: 600;
}

.perche-samsic-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .perche-samsic {
        padding: 60px 0;
    }
}


/* =========================================================
   SEZIONE VINO
   ========================================================= */
.sezione-vino {
    background: var(--bianco);
    padding: 80px 0;
}

.vino-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vino-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 14px;
}

.vino-testo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-urgenza {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(167, 184, 168, 0.15);
    color: var(--salvia-scuro);
    border: 1px solid var(--salvia);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.dot-urgenza {
    width: 7px;
    height: 7px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.vino-sottotitolo {
    font-size: 1rem;
    color: var(--salvia-scuro);
    font-weight: 500;
    margin: 0;
}

.vino-titolo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--black);
    line-height: 1.25;
    margin: 0;
}

.vino-titolo span {
    color: var(--salvia-scuro);
}

.vino-testo>p {
    font-size: 0.95rem;
    color: var(--testo);
    line-height: 1.7;
    margin: 0;
}

.vino-punti {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vino-punto {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--testo);
    line-height: 1.5;
}

.icona-punto {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 1px;
}

.vino-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.btn-vino-primario {
    display: inline-block;
    background: var(--salvia-scuro);
    color: var(--bianco);
    padding: 13px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-vino-primario:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.btn-vino-secondario {
    display: inline-block;
    color: var(--salvia-scuro);
    padding: 13px 4px;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--salvia);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-vino-secondario:hover {
    color: var(--black);
    border-color: var(--black);
}

@media (max-width: 900px) {
    .vino-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vino-visual img {
        height: 300px;
    }

    .sezione-vino {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .vino-cta-group {
        flex-direction: column;
    }

    .btn-vino-primario {
        text-align: center;
    }
}


/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--salvia-scuro);
    color: var(--beige);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    align-items: start;
}

.footer-logo {
    height: 48px;
    width: auto;
    border-radius: 6px;
    margin-bottom: 14px;
}

.footer-col>p {
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 18px;
    border-left: 3px solid var(--salvia);
    padding-left: 10px;
    opacity: 0.7;
}

.footer-col ul {
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.875rem;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.footer-col ul li a {
    color: var(--beige);
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
}

.footer-col ul li:hover {
    opacity: 1;
}

.footer-col ul li a:hover {
    color: var(--bianco);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 225, 212, 0.12);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.5;
    color: var(--beige);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-col>p {
        max-width: 100%;
    }
}


/* =========================================================
   WIDGET WHATSAPP
   ========================================================= */
.ws-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ws-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .ws-btn {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}

/* =========================================================
   CHI SIAMO - ABOUT PAGE
   ========================================================= */

/* Hero About */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--salvia-scuro) 0%, var(--salvia) 100%);
    color: var(--bianco);
    padding: 120px 0 80px;
    margin-top: var(--header-h);
    text-align: center;
}

.about-hero .top-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--beige);
}

.team-header {
    text-align: center;
    margin-bottom: 52px;
}

.team-header .top-label {
    display: inline-block;
    background: rgba(111, 127, 114, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--salvia-scuro);
    margin-bottom: 16px;
}

.team-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--salvia-scuro);
    margin-bottom: 12px;
}

.team-header p {
    max-width: 500px;
    margin: 0 auto;
    color: var(--testo);
    line-height: 1.8;
    font-style: italic;
}

/* Team Image */
.team-image-wrapper {
    max-width: 700px;
    margin: 0 auto 64px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-image:hover {
    transform: scale(1.02);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.team-grid--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 616px;
    margin: 24px auto 0;
}

/* Team Card */
.team-card {
    background: var(--bianco);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid var(--salvia);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--salvia);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.team-card:hover::before {
    transform: scaleX(1);
}

/* Team Initials */
.team-initials {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--salvia) 0%, var(--salvia-scuro) 100%);
    color: var(--bianco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.team-card:hover .team-initials {
    transform: scale(1.05);
}

.team-name {
    font-family: 'Merriweather', serif;
    color: var(--salvia-scuro);
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.team-role {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--salvia);
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 500;
}

/* Stile di base per il link email (sia non visitato che visitato) */
.team-email,
.team-email:link,
.team-email:visited {
    font-size: 0.90rem;
    color: var(--testo);
    /* Resta del colore del testo base */
    text-decoration: none;
    opacity: 0.6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    word-break: break-all;
}

/* Cambia colore e opacità SOLO al passaggio del mouse */
.team-email:hover {
    opacity: 1;
    color: var(--salvia-scuro);
}

.team-cta {
    text-align: center;
    margin-top: 52px;
}

/* Numbers Section (versione about) */
.numbers-section {
    background: linear-gradient(135deg, var(--salvia-scuro) 0%, var(--salvia) 100%);
    padding: 60px 0;
    color: var(--bianco);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.number-item .big-num {
    font-size: 2.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.number-item p {
    font-size: 0.85rem;
    opacity: 0.85;
    letter-spacing: 1px;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--bianco);
}

.mission-vision .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-vision .info-card {
    background: var(--beige);
    padding: 40px 32px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.mission-vision .info-card:hover {
    transform: translateY(-4px);
}

.mission-vision .info-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--salvia-scuro);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mission-vision .info-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--salvia);
}

.mission-vision .info-card p {
    color: var(--testo);
    line-height: 1.8;
    margin-top: 16px;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
        margin-top: var(--header-h-mobile);
    }

    .team-section {
        padding: 60px 0;
    }

    .team-image {
        height: 280px;
    }

    .team-grid,
    .team-grid--two {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-vision .grid-2 {
        grid-template-columns: 1fr;
    }

    .mission-vision .info-card {
        padding: 30px 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .team-grid--two {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================
   PAGINE SERVIZIO — Clean2Go /sito/
   Prefisso: sp-  (service page)
   Da aggiungere in fondo a style.css
   ========================================================== */


/* ----------------------------------------------------------
   HERO SERVIZIO
   ---------------------------------------------------------- */

.sp-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: var(--sp-hero-img);
    background-size: cover;
    background-position: center;
    filter: brightness(0.42);
    z-index: 0;
}

.sp-hero .container {
    position: relative;
    z-index: 1;
    padding-bottom: 64px;
}

.sp-hero-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--salvia);
}

.sp-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--salvia-scuro);
    line-height: 1.1;
    margin: 0;
}

.sp-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--salvia-scuro);
    margin: 0;
    line-height: 1.5;
}


/* ----------------------------------------------------------
   LABEL RICORRENTE (eyebrow nelle sezioni chiare)
   ---------------------------------------------------------- */

.sp-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--salvia-scuro);
    margin-bottom: 12px;
}


/* ----------------------------------------------------------
   SEZIONE PROBLEMA / SOLUZIONE + MOSAICO
   ---------------------------------------------------------- */

.sp-problem {
    padding: 80px 0;
    background: var(--bianco);
}

.sp-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sp-problem-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sp-problem-left h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
}

.sp-problem-right p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--testo);
    margin-bottom: 16px;
}

.sp-problem-right p:last-child {
    margin-bottom: 0;
}

/* Mosaico 3 immagini */

.sp-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 440px;
}

.sp-mosaic-main {
    grid-row: 1 / 3;
}

.sp-mosaic-main img,
.sp-mosaic-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.sp-mosaic-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-mosaic-side img {
    flex: 1;
}


/* ----------------------------------------------------------
   PROTOCOLLO
   ---------------------------------------------------------- */

.sp-protocol {
    padding: 80px 0;
    background: var(--beige);
}

.sp-protocol-header {
    margin-bottom: 48px;
}

.sp-protocol-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.sp-protocol-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(111, 127, 114, 0.3);
    border-left: 1px solid rgba(111, 127, 114, 0.3);
}

.sp-protocol-step {
    padding: 32px 28px;
    border-right: 1px solid rgba(111, 127, 114, 0.3);
    border-bottom: 1px solid rgba(111, 127, 114, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bianco);
    transition: background 0.25s ease;
}

.sp-protocol-step:hover {
    background: #f7f4ef;
}

.sp-step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--salvia);
    line-height: 1;
    letter-spacing: -0.02em;
}

.sp-step-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px 0;
}

.sp-step-body p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--testo);
    margin: 0;
}


/* ----------------------------------------------------------
   COSA INCLUDE
   ---------------------------------------------------------- */

.sp-includes {
    padding: 80px 0;
    background: var(--bianco);
}

.sp-includes-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.sp-includes-intro h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.sp-includes-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--testo);
    line-height: 1.65;
    margin: 0;
}

.sp-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sp-checklist li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--black);
    padding: 15px 16px 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.sp-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--salvia-scuro);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}


/* ----------------------------------------------------------
   NUMERI
   ---------------------------------------------------------- */

.sp-numbers {
    padding: 64px 0;
    background: var(--salvia-scuro);
}

.sp-numbers-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.sp-number-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.sp-number-item:last-child {
    border-right: none;
}

.sp-number-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--bianco);
    line-height: 1;
}

.sp-number-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* ----------------------------------------------------------
   CTA FINALE
   ---------------------------------------------------------- */

.sp-cta {
    padding: 96px 0;
    background: var(--black);
}

.sp-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.sp-cta-inner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--bianco);
    line-height: 1.25;
    margin: 0;
}

.sp-cta-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.btn-primary--light {
    background-color: var(--salvia);
    color: var(--black);
    border-color: var(--salvia);
}

.btn-primary--light:hover {
    background-color: var(--bianco);
    color: var(--black);
    border-color: var(--bianco);
}


/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width: 1024px) {
    .sp-protocol-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sp-problem-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sp-mosaic {
        height: 320px;
    }

    .sp-includes-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-numbers-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-number-item:nth-child(2) {
        border-right: none;
    }

    .sp-number-item:nth-child(3),
    .sp-number-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 600px) {
    .sp-hero {
        min-height: 360px;
    }

    .sp-hero .container {
        padding-bottom: 48px;
    }

    .sp-problem,
    .sp-protocol,
    .sp-includes,
    .sp-cta {
        padding: 56px 0;
    }

    .sp-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .sp-mosaic-main {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 220px;
    }

    .sp-mosaic-side {
        grid-column: 1 / 3;
        grid-row: 2;
        flex-direction: row;
        height: 140px;
    }

    .sp-protocol-list {
        grid-template-columns: 1fr;
    }

    .sp-protocol-step {
        padding: 24px 20px;
    }

    .sp-checklist {
        grid-template-columns: 1fr;
    }

    .sp-numbers-list {
        grid-template-columns: 1fr 1fr;
    }

    .sp-numbers {
        padding: 48px 0;
    }
}

/* Hero: offset header fisso */
.sp-hero {
    padding-top: var(--header-h);
}

@media (max-width: 768px) {
    .sp-hero {
        padding-top: var(--header-h-mobile);
        min-height: 300px;
    }

    /* Mosaico mobile: immagine principale a piena larghezza,
       le due laterali affiancate sotto */
    .sp-mosaic {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 8px;
    }

    .sp-mosaic-main {
        width: 100%;
        height: 220px;
    }

    .sp-mosaic-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    .sp-mosaic-side {
        display: flex;
        flex-direction: row;
        gap: 8px;
        height: 130px;
    }

    .sp-mosaic-side img {
        flex: 1;
        width: 50%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    /* Numeri: 2 colonne su mobile */
    .sp-number-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .sp-number-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-right: none;
    }
}

/* ═══════════════════════════
   PERCHÉ CLEAN2GO — editoriale
═══════════════════════════ */
.perche-new {
    background: var(--salvia-scuro);
    padding: 88px 0 92px;
}

.perche-new-header {
    margin-bottom: 56px;
}

.perche-new-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 14px;
}

.perche-new-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: #fff;
    margin: 0;
    font-weight: 700;
    max-width: 520px;
    border-left: none !important;
    padding-left: 0 !important;
    text-align: left !important;
    display: block;
}

.perche-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.perche-new-line {
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, .35);
    margin-bottom: 24px;
}

.perche-new-col h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}

.perche-new-col p {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

@media (max-width: 820px) {
    .perche-new-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ═══════════════════════════
   CHI SIAMO — Download
═══════════════════════════ */
.cs-download {
    background: var(--salvia-scuro);
    padding: 72px 0;
}

.cs-download-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cs-download-inner h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
    font-weight: 700;
}

.cs-download-inner p {
    color: rgba(255, 255, 255, .55);
    font-size: .95rem;
    margin: 0;
}

.cs-download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: 18px 24px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    flex-shrink: 0;
    min-width: 240px;
}

.cs-download-btn:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

.cs-download-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.cs-download-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cs-download-text strong {
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
}

.cs-download-text small {
    color: rgba(255, 255, 255, .5);
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .cs-download-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cs-download-btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════
   GALLERIA — galleria.css
   Dipende da style.css per variabili e .servizio-card
═══════════════════════════════════════════ */


/* ─── HERO ─────────────────────────────── */

.gl-hero {
    background: var(--salvia-scuro);
    padding: 110px 0 88px;
    position: relative;
    overflow: hidden;
}

.gl-hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    transform: translateX(-50%);
    pointer-events: none;
}

.gl-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    pointer-events: none;
}

.gl-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.gl-hero-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 22px;
}

.gl-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.03;
    color: var(--bianco);
    margin: 0 0 28px;
    font-weight: 700;
}

.gl-hero h1 em {
    font-style: normal;
    color: rgba(255, 255, 255, .45);
}

.gl-hero-sub {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    max-width: 420px;
    margin: 0;
}

/* Colonna destra — meta categorie */
.gl-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 2px;
}

.gl-hero-meta-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gl-hero-meta-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.gl-hero-cat-name {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

.gl-hero-cat-count {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}


/* ─── SEZIONE CARD ──────────────────────── */

.gl-cards-section {
    padding: 88px 0 80px;
    background: var(--beige);
}

.gl-cards-header {
    margin-bottom: 48px;
}

.gl-cards-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.1;
    color: var(--titolo);
    margin: 0 0 12px;
    font-weight: 700;
}

.gl-cards-header p {
    font-size: .97rem;
    line-height: 1.75;
    color: var(--testo);
    opacity: .75;
    margin: 0;
    max-width: 480px;
}

.gl-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* Le card riusano .servizio-card da style.css — nessuna regola da ridefinire */


/* ─── RESPONSIVE ────────────────────────── */

@media (max-width: 900px) {
    .gl-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gl-hero {
        padding: 80px 0 64px;
    }

    .gl-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gl-hero {
        padding-top: calc(var(--header-h-mobile) + 40px);
        padding-bottom: 52px;
    }
}

/* ═══════════════════════════
       HERO — stesso schema contatti
    ═══════════════════════════ */
.cs-hero {
    background: var(--salvia-scuro, #4a5e4d);
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
}

.cs-hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.cs-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}

.cs-hero-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 20px;
}

.cs-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.06;
    color: #fff;
    margin: 0 0 24px;
    font-weight: 700;
}

.cs-hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    max-width: 400px;
    margin: 0;
}

/* Numeri a destra nella hero — verticali */
.cs-hero-numbers {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 4px;
}

.cs-hero-num-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.cs-hero-num-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.cs-num-big {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    min-width: 80px;
    flex-shrink: 0;
}

.cs-num-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.4;
    font-weight: 400;
}

/* ═══════════════════════════
       VALORI — lista editoriale
    ═══════════════════════════ */
.cs-valori {
    background: var(--beige, #f5f0e8);
    padding: 88px 0 80px;
}

.cs-section-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--salvia-scuro, #4a5e4d);
    margin-bottom: 16px;
}

.cs-valori-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

.cs-valori-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: var(--titolo, #1a2b1c);
    margin: 0;
}

.cs-valori-header p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--testo, #4a4a3a);
    margin: 0;
    padding-top: 8px;
}

/* Lista valori tipografica con numeri */
.cs-valori-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-valori-item {
    display: grid;
    grid-template-columns: 56px 1fr 1fr;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid rgba(74, 94, 77, .15);
    align-items: start;
}

.cs-valori-item:last-child {
    border-bottom: 1px solid rgba(74, 94, 77, .15);
}

.cs-val-num {
    font-size: .75rem;
    font-weight: 700;
    color: var(--salvia-scuro, #4a5e4d);
    opacity: .45;
    padding-top: 4px;
    letter-spacing: .08em;
}

.cs-val-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--titolo, #1a2b1c);
    margin: 0;
    padding-top: 2px;
}

.cs-val-text {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--testo, #4a4a3a);
    margin: 0;
}

/* ═══════════════════════════
       MISSIONE / VISIONE — testo ampio
    ═══════════════════════════ */
.cs-mv {
    background: #fff;
    padding: 88px 0 80px;
}

.cs-mv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cs-mv-block {}

.cs-mv-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--titolo, #1a2b1c);
    margin: 16px 0 16px;
}

.cs-mv-block p {
    font-size: .97rem;
    line-height: 1.8;
    color: var(--testo, #4a4a3a);
    margin: 0;
}

/* Linea decorativa verticale tra le due colonne */
.cs-mv-inner .cs-mv-block:first-child {
    padding-right: 40px;
    border-right: 1px solid rgba(74, 94, 77, .12);
}

.cs-mv-inner .cs-mv-block:last-child {
    padding-left: 40px;
}

/* ═══════════════════════════
       TEAM — card originali tenute,
       layout più arioso
    ═══════════════════════════ */
.cs-team {
    background: var(--beige, #f5f0e8);
    padding: 88px 0 100px;
}

.cs-team-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 56px;
}

.cs-team-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: var(--titolo, #1a2b1c);
    margin: 0;
}

.cs-team-header p {
    font-size: .97rem;
    line-height: 1.75;
    color: var(--testo, #4a4a3a);
    margin: 0;
}

/* Grid team: 5 card su una riga, un po' più ampia */
.cs-team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CTA finale */
.cs-cta {
    background: var(--beige, #f5f0e8);
    padding: 0 0 88px;
}

.cs-cta-inner {
    border-top: 1px solid rgba(74, 94, 77, .15);
    padding-top: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cs-cta-inner h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--titolo, #1a2b1c);
    margin: 0 0 8px;
    line-height: 1.2;
}

.cs-cta-inner p {
    color: var(--testo, #4a4a3a);
    font-size: .97rem;
    margin: 0;
    opacity: .7;
}

.cs-cta-inner .btn-primary {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .cs-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {

    .cs-hero-inner,
    .cs-valori-header,
    .cs-mv-inner,
    .cs-team-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cs-mv-inner .cs-mv-block:first-child {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(74, 94, 77, .12);
        padding-bottom: 40px;
    }

    .cs-mv-inner .cs-mv-block:last-child {
        padding-left: 0;
    }

    .cs-valori-item {
        grid-template-columns: 44px 1fr;
    }

    .cs-valori-item .cs-val-text {
        grid-column: 2;
    }

    .cs-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cs-hero {
        padding: 72px 0 64px;
    }
}

@media (max-width: 640px) {
    .cs-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-valori-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cs-val-num {
        display: none;
    }
}

@media (max-width: 400px) {
    .cs-team-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   TEAM CARD - VERSIONE PIÙ LARGA
   ========================================================= */

/* Container delle card team più largo */
.cs-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card team ridisegnata - più spaziosa */
.team-card-large {
    background: var(--bianco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.team-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.team-card-large img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.team-card-large .card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--bianco);
}

.team-card-large .card-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 2px 0;
}

.team-card-large .card-body .role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--salvia-scuro);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-card-large .card-body .email {
    font-size: 0.82rem;
    color: var(--testo);
    opacity: 0.7;
    display: block;
    padding: 3px 0;
    transition: opacity 0.2s ease;
    word-break: break-all;
}

.team-card-large .card-body .email:hover {
    opacity: 1;
    color: var(--salvia-scuro);
}

.team-card-large .card-body .email:last-child {
    margin-bottom: 0;
}

/* Separatore tra le email */
.team-card-large .card-body .email-divider {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .cs-team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 576px) {
    .cs-team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .team-card-large img {
        height: 220px;
    }

    .team-card-large .card-body {
        padding: 20px;
    }
}

/* =========================================================
   BEFORE-AFTER SLIDER
   ========================================================= */
.before-after {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    cursor: ew-resize;
}

.before-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.before-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.after-image {
    z-index: 1;
}

.center-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-line .arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 6px;
}

.center-line .arrows i {
    color: white;
    font-size: 18px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.label {
    position: absolute;
    top: 20px;
    z-index: 20;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease;
}

.label.before {
    left: 20px;
}

.label.after {
    right: 20px;
}

@media (max-width: 480px) {
    .center-line .arrows i {
        font-size: 14px;
    }

    .label {
        font-size: 12px;
        top: 12px;
    }

    .label.before {
        left: 12px;
    }

    .label.after {
        right: 12px;
    }
}

/* ═══════════════════════════
   HERO CONTATTI
═══════════════════════════ */
.ct-hero {
    background: var(--salvia-scuro, #4a5e4d);
    padding: 110px 0 72px;
    position: relative;
    overflow: hidden;
}

.ct-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.ct-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}

.ct-hero-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 20px;
}

.ct-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.06;
    color: #fff;
    margin: 0 0 24px;
    font-weight: 700;
}

.ct-hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .65);
    max-width: 380px;
    margin: 0;
}

/* Recapiti nella hero — tipografici, niente box */
.ct-hero-contacts {
    padding-bottom: 4px;
}

.ct-hero-contact-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.ct-hero-contact-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.ct-contact-key {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    min-width: 60px;
    flex-shrink: 0;
}

.ct-contact-val {
    font-size: .97rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity .2s;
}

a.ct-contact-val:hover {
    opacity: .7;
}

.ct-hero-bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
}

.ct-hero-social {
    display: flex;
    gap: 16px;
}

.ct-hero-social a {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-hero-social a:hover {
    color: rgba(255, 255, 255, .9);
}

.ct-hero-social img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    border-radius: 3px;
}

.ct-badge-live {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    margin-left: auto;
}

.ct-badge-live-seg {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
}



.ct-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ed48a;
    animation: dotpulse 2s infinite;
    flex-shrink: 0;
}

@keyframes dotpulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

/* ═══════════════════════════
   SEZIONE FORM
═══════════════════════════ */
.ct-form-section {
    background: var(--beige, #f5f0e8);
    padding: 72px 0 100px;
}

.ct-form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 60px 64px 56px;
    box-shadow: 0 2px 32px rgba(30, 40, 30, .06);
}

.ct-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--titolo, #1a2b1c);
    margin: 0 0 4px;
}

.ct-form-sub {
    font-size: .87rem;
    color: var(--testo, #4a4a3a);
    opacity: .6;
    margin: 0 0 44px;
}

/* Campi — underline style */
.lf-group {
    margin-bottom: 28px;
    position: relative;
}

.lf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.lf-group label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--salvia-scuro, #4a5e4d);
    margin-bottom: 10px;
}

.lf-group label .req {
    color: #c0392b;
    margin-left: 2px;
}

.lf-group input,
.lf-group textarea,
.lf-group select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 2px;
    border: none;
    border-bottom: 1.5px solid #d4cfc6;
    border-radius: 0;
    background: transparent;
    font-size: .96rem;
    color: var(--titolo, #1a2b1c);
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
    appearance: none;
}

.lf-group input:focus,
.lf-group textarea:focus,
.lf-group select:focus {
    border-bottom-color: var(--salvia-scuro, #4a5e4d);
}

.lf-group input::placeholder,
.lf-group textarea::placeholder {
    color: #c0bbb0;
    font-size: .9rem;
}

.lf-group input.valid {
    border-bottom-color: #5aac72;
}

.lf-group input.invalid,
.lf-group textarea.invalid {
    border-bottom-color: #c0392b;
}

.lf-group textarea {
    resize: none;
    min-height: 96px;
    padding-top: 8px;
}

.lf-group select {
    cursor: pointer;
    color: var(--testo, #4a4a3a);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%234a5e4d' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    padding-right: 26px;
}

.lf-msg {
    font-size: .71rem;
    margin-top: 4px;
    min-height: 13px;
    display: block;
}

.lf-msg.ok {
    color: #5aac72;
}

.lf-msg.err {
    color: #c0392b;
}

/* Drop zone */
.lf-drop {
    border: 1.5px dashed #ccc7bc;
    border-radius: 6px;
    padding: 14px 16px;
    text-align: center;
    cursor: pointer;
    margin-top: 4px;
    transition: all .2s;
}

.lf-drop:hover,
.lf-drop.dragover {
    border-color: var(--salvia-scuro, #4a5e4d);
    background: rgba(74, 94, 77, .03);
}

.lf-drop.has-file {
    border-style: solid;
    border-color: var(--salvia-scuro, #4a5e4d);
}

.lf-drop-icon {
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
}

.lf-drop p {
    font-size: .77rem;
    color: #aaa;
    margin: 0;
    line-height: 1.5;
}

.lf-drop strong {
    color: var(--salvia-scuro, #4a5e4d);
}

.lf-previews {
    display: none;
    margin-top: 8px;
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
    gap: 6px;
}

.lf-previews.show {
    display: grid;
}

.lf-preview-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #ede9e2;
}

.lf-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lf-preview-remove {
    position: absolute;
    top: 3px;
    right: 3px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-preview-remove:hover {
    background: rgba(192, 57, 43, .8);
}

.lf-files-count {
    font-size: .71rem;
    color: var(--salvia-scuro, #4a5e4d);
    margin-top: 5px;
    display: block;
    text-align: center;
}

/* Divisore -->  */
.lf-divider {
    border: none;
    border-top: 1px solid #ede8e0;
    margin: 8px 0 32px;
}

/* Submit row */
.lf-submit-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.lf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    background: var(--salvia-scuro, #4a5e4d);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, gap .2s, transform .15s;
    flex-shrink: 0;
}

.lf-submit:hover {
    background: #3a4d3d;
    gap: 14px;
    transform: translateY(-1px);
}

.lf-submit.loading {
    opacity: .6;
    pointer-events: none;
}

.lf-submit .arr {
    font-size: .95rem;
}

.lf-privacy {
    font-size: .72rem;
    color: #bbb;
    line-height: 1.5;
    margin: 0;
}

/* Feedback */
#ct-response {
    display: none;
    margin-top: 20px;
    padding: 13px 18px;
    border-radius: 4px;
    font-size: .88rem;
    font-weight: 500;
}

#ct-response.success {
    background: #eaf5ec;
    color: #1a5c2a;
    border-left: 3px solid #5aac72;
}

#ct-response.error {
    background: #fdecea;
    color: #a12b2b;
    border-left: 3px solid #c0392b;
}

/* Thank you */
.ct-thankyou {
    display: none;
    text-align: center;
    padding: 20px 0 10px;
}

.ct-thankyou-icon {
    font-size: 44px;
    margin-bottom: 14px;
    display: block;
}

.ct-thankyou h3 {
    font-size: 1.4rem;
    color: var(--salvia-scuro, #4a5e4d);
    margin-bottom: 8px;
}

.ct-thankyou p {
    color: var(--testo, #4a4a3a);
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: .96rem;
}

/* Responsive */
@media (max-width: 900px) {
    .ct-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ct-hero {
        padding: 60px 0 56px;
    }

    .ct-form-wrap {
        padding: 44px 32px 40px;
    }
}

@media (max-width: 560px) {
    .lf-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ct-form-wrap {
        padding: 36px 20px 32px;
        border-radius: 8px;
    }

    .ct-form-section {
        padding: 48px 0 72px;
    }
}

/* ── LIGHTBOX ── */
.glr-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.glr-modal.open {
    display: flex;
}

.glr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, .92);
}

.glr-modal-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 92vw;
    max-height: 92vh;
}

#glr-modal-img {
    max-width: 80vw;
    max-height: 86vh;
    border-radius: 4px;
    display: block;
    object-fit: contain;
}

.glr-modal-badge {
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    white-space: nowrap;
    background: rgba(111, 127, 114, .88);
    color: #fff;
}

.glr-modal-btn {
    background: rgba(232, 225, 212, .12);
    border: 1px solid rgba(232, 225, 212, .2);
    color: var(--beige);
    cursor: pointer;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}

.glr-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(232, 225, 212, .12);
    border: 1px solid rgba(232, 225, 212, .2);
    color: var(--beige);
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.glr-modal-btn:hover,
.glr-modal-close:hover {
    background: rgba(232, 225, 212, .28);
}

/* ── PLACEHOLDER GALLERIA VUOTA ── */
.glr-empty {
    text-align: center;
    padding: 70px 20px 50px;
    max-width: 520px;
    margin: 0 auto;
}

.glr-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(111, 127, 114, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glr-empty-icon i {
    font-size: 28px;
    color: var(--salvia-scuro);
}

.glr-empty h3 {
    font-family: 'Cormorant Garamond', 'Merriweather', serif;
    font-size: 1.5rem;
    color: var(--salvia-scuro);
    margin: 0 0 12px;
}

.glr-empty p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--testo);
    margin: 0 0 28px;
}

.glr-empty .glr-cta {
    margin-top: 0;
}

/* ── Prima & Dopo: hero più compatta ── */
.primadopo .gl-hero {
    padding: 60px 0 48px;
}

.primadopo .glr-section {
    padding-top: 48px;
}

/* ── SUBMENU GALLERIA ── */
.gl-submenu {
    background: var(--salvia-scuro);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.gl-submenu-list {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gl-submenu-link {
    display: block;
    padding: 16px 28px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.gl-submenu-link:hover {
    color: rgba(255, 255, 255, .85);
}

.gl-submenu-link.active {
    color: var(--bianco);
    border-bottom-color: var(--beige);
}

@media (max-width: 768px) {
    .gl-submenu-list {
        justify-content: center;
    }

    .gl-submenu-link {
        padding: 14px 20px;
        font-size: .72rem;
    }
}

/* GALLERIA COMPATTA */
.gallery-compact {
    padding: 60px 0;
    background: var(--beige);
}

.gallery-compact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-grid-compact .gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: #e0e0e0;
    border-radius: 8px;
}

.gallery-grid-compact .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-compact .gallery-item:hover img {
    transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }

    .lightbox-close {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }
}

/* =========================================================
   DICONO DI NOI
   ========================================================= */

.dc-hero {
    background: var(--salvia-scuro);
    padding: 110px 0 88px;
    position: relative;
    overflow: hidden;
}

.dc-hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.dc-hero-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 22px;
}

.dc-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.03;
    color: var(--bianco);
    margin: 0 0 28px;
    font-weight: 700;
}

.dc-hero h1 em {
    font-style: normal;
    color: rgba(255, 255, 255, .45);
}

.dc-hero-sub {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    max-width: 520px;
    margin: 0;
}

.dc-testimonials {
    padding: 88px 0 80px;
    background: var(--beige);
}

.dc-section-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--salvia-scuro);
    margin-bottom: 16px;
}

.dc-testimonials-header {
    margin-bottom: 56px;
}

.dc-testimonials-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: var(--titolo);
    margin: 0;
}

.dc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.dc-card {
    background: var(--bianco);
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    border-top: 3px solid var(--salvia);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.dc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.dc-card-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--salvia);
    font-family: Georgia, serif;
}

.dc-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--testo);
    margin: 0;
    flex: 1;
    font-style: italic;
}

.dc-card-client {
    border-top: 1px solid rgba(111, 127, 114, .15);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dc-card-client strong {
    font-size: .95rem;
    color: var(--titolo);
    font-weight: 700;
}

.dc-card-client span {
    font-size: .8rem;
    color: var(--salvia-scuro);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.dc-numbers {
    background: var(--salvia-scuro);
    padding: 72px 0;
}

.dc-numbers-header {
    margin-bottom: 48px;
}

.dc-numbers-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--bianco);
    margin: 0;
}

.dc-numbers-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px;
}

.dc-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dc-number-item {
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dc-number-item:last-child {
    border-right: none;
}

.dc-number-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--bianco);
    line-height: 1;
}

.dc-number-label {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.dc-cta {
    background: var(--beige);
    padding: 88px 0;
}

.dc-cta-inner {
    border-top: 1px solid rgba(74, 94, 77, .15);
    padding-top: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.dc-cta-inner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--titolo);
    margin: 0 0 8px;
    line-height: 1.2;
}

.dc-cta-inner p {
    color: var(--testo);
    font-size: .97rem;
    margin: 0;
    opacity: .7;
}

@media (max-width: 768px) {
    .dc-hero {
        padding-top: calc(var(--header-h-mobile) + 40px);
        padding-bottom: 52px;
    }

    .dc-grid {
        grid-template-columns: 1fr;
    }

    .dc-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dc-number-item:nth-child(2) {
        border-right: none;
    }

    .dc-number-item:nth-child(3),
    .dc-number-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, .18);
    }

    .dc-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   FAQ
   ========================================================= */

.fq-hero {
    background: var(--salvia-scuro);
    padding: 110px 0 88px;
    position: relative;
    overflow: hidden;
}

.fq-hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.fq-hero-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 22px;
}

.fq-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.03;
    color: var(--bianco);
    margin: 0 0 28px;
    font-weight: 700;
}

.fq-hero h1 em {
    font-style: normal;
    color: rgba(255, 255, 255, .45);
}

.fq-hero-sub {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    max-width: 560px;
    margin: 0;
}

.fq-section {
    padding: 88px 0 80px;
    background: var(--beige);
}

.fq-section-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--salvia-scuro);
    margin-bottom: 16px;
}

.fq-header {
    margin-bottom: 56px;
}

.fq-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: var(--titolo);
    margin: 0;
}

.fq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fq-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 32px;
    padding: 36px 0;
    border-top: 1px solid rgba(111, 127, 114, .18);
    align-items: start;
}

.fq-item:last-child {
    border-bottom: 1px solid rgba(111, 127, 114, .18);
}

.fq-num {
    font-size: .72rem;
    font-weight: 700;
    color: var(--salvia-scuro);
    opacity: .45;
    padding-top: 4px;
    letter-spacing: .08em;
}

.fq-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--titolo);
    margin: 0 0 12px;
    line-height: 1.3;
}

.fq-body p {
    font-size: .97rem;
    line-height: 1.75;
    color: var(--testo);
    margin: 0;
}

.fq-cta {
    background: var(--bianco);
    padding: 72px 0;
}

.fq-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.fq-cta-inner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--titolo);
    margin: 0 0 8px;
    line-height: 1.2;
}

.fq-cta-inner p {
    color: var(--testo);
    font-size: .97rem;
    margin: 0;
    opacity: .7;
}

.btn-primary--beige {
    display: inline-block;
    background: var(--salvia-scuro);
    color: var(--beige);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary--beige:hover {
    background: var(--bianco);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .fq-hero {
        padding-top: calc(var(--header-h-mobile) + 40px);
        padding-bottom: 52px;
    }

    .fq-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .fq-num {
        display: none;
    }

    .fq-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================
   PAGINE LISTA (Servizi / Trattamenti) — pg-
   Stili condivisi, usati sia da servizi.php che trattamenti.php
   ========================================================== */

/* ─── HERO ─────────────────────────────── */
.pg-hero {
    background: var(--salvia-scuro, #4a5e4d);
    padding: 110px 0 88px;
    position: relative;
    overflow: hidden;
}

.pg-hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    transform: translateX(-50%);
    pointer-events: none;
}

.pg-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    pointer-events: none;
}

.pg-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.pg-hero-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 22px;
}

.pg-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.03;
    color: #fff;
    margin: 0 0 28px;
    font-weight: 700;
}

.pg-hero h1 em {
    font-style: normal;
    color: rgba(255, 255, 255, .4);
}

.pg-hero-sub {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    max-width: 420px;
    margin: 0;
}

/* Colonna destra — indice categorie */
.pg-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 2px;
}

.pg-hero-meta-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pg-hero-meta-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.pg-hero-cat-name {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

.pg-hero-cat-count {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}

/* Colonna destra hero — variante immagine */
.pg-hero-visual {
    position: relative;
}

.pg-hero-visual-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45);
}

.pg-hero-visual-frame img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.pg-hero-visual-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(74, 94, 77, 0) 55%, rgba(26, 33, 27, .55) 100%);
    pointer-events: none;
}

.pg-hero-visual-caption {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 1;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
}

@media (max-width: 900px) {
    .pg-hero-visual-frame img {
        height: 260px;
    }
}

/* ─── INTRO EDITORIALE (solo trattamenti) ── */
.pg-intro {
    background: #fff;
    padding: 80px 0 72px;
    border-bottom: 1px solid rgba(74, 94, 77, .08);
}

.pg-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.pg-intro-inner h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.15;
    color: var(--titolo, #1a2b1c);
    margin: 0;
    font-weight: 700;
}

.pg-intro-inner p {
    font-size: .97rem;
    line-height: 1.8;
    color: var(--testo, #4a4a3a);
    margin: 0 0 16px;
}

.pg-intro-inner p:last-child {
    margin: 0;
}

/* ─── STRIP MATERIALI (solo trattamenti) ── */
.pg-materials-strip {
    background: var(--salvia-scuro, #4a5e4d);
    padding: 56px 0;
}

.pg-materials-inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.pg-mat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    white-space: nowrap;
    margin-right: 40px;
    flex-shrink: 0;
}

.pg-mat-list {
    display: flex;
    gap: 0;
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.pg-mat-list li {
    padding: 10px 28px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    white-space: nowrap;
}

.pg-mat-list li:last-child {
    border-right: 1px solid rgba(255, 255, 255, .12);
}

/* ─── SEZIONI LISTA ──────────────────────── */
.pg-section {
    padding: 88px 0 80px;
}

.pg-section--light {
    background: #fff;
}

.pg-section--beige {
    background: var(--beige, #f5f0e8);
}

.pg-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(74, 94, 77, .12);
}

.pg-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--salvia-scuro, #4a5e4d);
    margin-bottom: 14px;
}

.pg-section-header h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.1;
    color: var(--titolo, #1a2b1c);
    margin: 0;
    font-weight: 700;
}

.pg-section-header p {
    font-size: .97rem;
    line-height: 1.75;
    color: var(--testo, #4a4a3a);
    margin: 0;
    opacity: .75;
    padding-top: 6px;
}

/* Lista voci (servizio o trattamento) */
.pg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pg-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(74, 94, 77, .1);
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.pg-item::before {
    content: '';
    position: absolute;
    left: -24px;
    right: -24px;
    top: 0;
    bottom: 0;
    background: rgba(74, 94, 77, .04);
    border-radius: 6px;
    opacity: 0;
    transition: opacity .18s;
}

.pg-item:hover::before {
    opacity: 1;
}

.pg-item-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--titolo, #1a2b1c);
    margin: 0 0 5px;
    transition: color .18s;
}

.pg-item:hover .pg-item-name {
    color: var(--salvia-scuro, #4a5e4d);
}

/* Variante più grande per voci servizio principali */
.pg-item-name--lg {
    font-size: 1.38rem;
}

.pg-item-desc {
    font-size: .87rem;
    color: var(--testo, #4a4a3a);
    opacity: .6;
    margin: 0;
    line-height: 1.5;
}

.pg-item-arrow {
    font-size: 1.3rem;
    color: var(--salvia-scuro, #4a5e4d);
    opacity: .3;
    transition: opacity .18s, transform .18s;
    flex-shrink: 0;
}

.pg-item:hover .pg-item-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.pg-item--soon {
    pointer-events: none;
    opacity: .45;
}

.pg-item--soon .pg-item-arrow {
    display: none;
}

.pg-badge-soon {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--salvia-scuro, #4a5e4d);
    background: rgba(74, 94, 77, .1);
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ─── STRIP NUMERI (solo servizi) ────────── */
.pg-numbers-strip {
    background: var(--salvia);
    padding: 52px 0;
}

.pg-numbers-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pg-num-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.pg-num-item:last-child {
    border-right: none;
}

.pg-num-big {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.pg-num-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
    letter-spacing: .04em;
}

/* ─── CTA FINALE ─────────────────────────── */
.pg-cta {
    background: var(--beige, #f5f0e8);
    padding: 0 0 100px;
}

.pg-cta-inner {
    border-top: 1px solid rgba(74, 94, 77, .15);
    padding-top: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.pg-cta-inner h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--titolo, #1a2b1c);
    margin: 0 0 8px;
    line-height: 1.2;
}

.pg-cta-inner p {
    color: var(--testo, #4a4a3a);
    font-size: .97rem;
    margin: 0;
    opacity: .7;
}

.pg-cta-inner .btn-primary {
    flex-shrink: 0;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {

    .pg-hero-inner,
    .pg-intro-inner,
    .pg-section-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pg-hero {
        padding: 80px 0 64px;
    }

    .pg-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .pg-mat-label {
        display: none;
    }

    .pg-mat-list {
        gap: 0;
    }

    .pg-mat-list li {
        font-size: .8rem;
        padding: 8px 16px;
    }

    .pg-hero-visual {
        margin-top: 8px;
    }

    .pg-numbers-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .pg-num-item:nth-child(2) {
        border-right: none;
    }

    .pg-num-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, .12);
        border-top: 1px solid rgba(255, 255, 255, .12);
        padding-top: 24px;
    }

    .pg-num-item:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, .12);
        padding-top: 24px;
    }
}

@media (max-width: 560px) {
    .pg-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pg-item-arrow {
        display: none;
    }
}

/* ==========================================================================
   WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-premium {
    display: flex;
    align-items: center;
    background: var(--salvia-scuro);
    color: var(--bianco);
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-premium:hover {
    transform: translateY(-5px);
    background: var(--salvia);
}

.wa-text {
    display: flex;
    flex-direction: column;
    margin-right: 12px;
    font-size: 0.85rem;
}

.wa-text strong {
    font-size: 1rem;
}

.wa-icon {
    background: #25D366;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-icon svg {
    fill: white;
}

.wa-link-bot {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f0f0;
    color: #2d3436 !important;
    padding: 8px 12px;
    margin-top: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ddd;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--salvia-scuro);
    color: white;
    border: none;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* AGGIUNGI QUESTE RIGHE */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.back-to-top i {
    font-size: 1.8rem;
    line-height: 1;
}

.back-to-top:hover {
    background-color: var(--salvia);
    transform: translateY(-5px);
    color: white;
}