@font-face { font-family: "Figtree"; src: url("../fonts/figtree-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: block; }
@font-face { font-family: "Figtree"; src: url("../fonts/figtree-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: block; }
@font-face { font-family: "Figtree"; src: url("../fonts/figtree-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: block; }
@font-face { font-family: "Figtree"; src: url("../fonts/figtree-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: block; }
@font-face { font-family: "Figtree"; src: url("../fonts/figtree-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: block; }
@font-face { font-family: "Outfit"; src: url("../fonts/outfit-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: block; }
@font-face { font-family: "Outfit"; src: url("../fonts/outfit-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: block; }
@font-face { font-family: "Outfit"; src: url("../fonts/outfit-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: block; }
@font-face { font-family: "Outfit"; src: url("../fonts/outfit-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: block; }
@font-face { font-family: "Outfit"; src: url("../fonts/outfit-800.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: block; }

/* Il Sito Facile — stile globale (come home) */
:root {
    --blu: #122d4d;
    --blu-soft: #1e4a72;
    --arancio: #d4621f;
    --arancio-glow: #e88a45;
    --gold: #c4a35a;
    --verde-logo: #5da833;
    --verde-wa: #25d366;
    --scuro: #0c1829;
    --grigio-chiaro: #f4f6f9;
    --bianco: #ffffff;
    --cream: #faf8f5;
    --cream-rich: #f3eee6;
    --blu-deep: #0a1f35;
    --shadow-premium: 0 28px 60px rgba(18, 45, 77, 0.09);
    --shadow-luxury: 0 40px 80px rgba(12, 24, 41, 0.12);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Figtree', system-ui, sans-serif;
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-silk: cubic-bezier(0.25, 0.8, 0.35, 1);
    --motion-enter: 1.25s;
    --motion-reveal: 1.1s;
    --motion-stagger: 0.14s;
    --header-offset: 90px;
    --header-offset-mobile: 80px;
    --below-header-gap: 1.5rem;
    --below-header-gap-mobile: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--scuro);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196, 163, 90, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(30, 74, 114, 0.04), transparent 50%),
        radial-gradient(ellipse 50% 35% at 0% 80%, rgba(212, 98, 31, 0.03), transparent 45%);
    pointer-events: none;
    z-index: 0;
}
body > * { position: relative; z-index: 1; }

.container { max-width: 1100px; margin: auto; padding: 0 20px; }

h1, h2, h3, .page-title, .card-title {
    font-family: var(--font-display);
}

/* HEADER — logo e voci sempre visibili; barra solo allo scroll */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 90px;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition:
        background 0.55s var(--ease-luxury),
        box-shadow 0.55s var(--ease-luxury),
        backdrop-filter 0.55s var(--ease-luxury),
        border-color 0.55s var(--ease-luxury);
}
header.header-visible {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom-color: rgba(196, 163, 90, 0.15);
    box-shadow: 0 8px 32px rgba(18, 45, 77, 0.08);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; position: relative; }
.logo img {
    height: 85px;
    width: auto;
    display: block;
    transition: transform 0.5s var(--ease-luxury), filter 0.5s ease;
}
.logo:hover img { transform: scale(1.02); filter: drop-shadow(0 4px 12px rgba(18, 45, 77, 0.1)); }

.desktop-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
    color: var(--blu);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: color 0.4s var(--ease-luxury);
}
.nav-link:hover { color: var(--arancio); }
.nav-link.active {
    color: var(--arancio);
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; }
.hamburger span { display: block; width: 30px; height: 3px; background: var(--blu); margin: 6px 0; transition: transform 0.45s var(--ease-luxury), opacity 0.35s ease; border-radius: 3px; }

.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 1px solid #f1f5f9;
    backdrop-filter: blur(10px);
    z-index: 1001;
}
.mobile-menu a { display: block; padding: 15px 0; color: var(--blu); text-decoration: none; font-weight: 700; font-size: 1.2rem; border-bottom: 1px solid #f1f5f9; }
.mobile-menu a.btn-nav { color: white; background: var(--blu); border-bottom: none; display: inline-block; margin-top: 10px; border-radius: 50px; }
.mobile-menu a.btn-nav:hover { color: white; background: var(--arancio); }
.mobile-menu.active { display: flex; }

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.btn-nav {
    background: linear-gradient(135deg, var(--blu) 0%, var(--blu-soft) 100%);
    color: white;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.5s var(--ease-luxury);
    box-shadow: 0 6px 24px rgba(18, 45, 77, 0.22), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-nav:hover {
    background: linear-gradient(135deg, var(--arancio) 0%, var(--arancio-glow) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 98, 31, 0.35);
}

/* Pulsante WhatsApp verde con icona ufficiale */
.btn-wa-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    letter-spacing: 0.02em;
    text-decoration: none;
    color: white !important;
    background: var(--verde-wa);
    border: none;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury), background-color 0.35s ease;
}
.btn-wa-green img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
    .btn-wa-green:hover {
        transform: translateY(-2px);
        background: #20ba5a;
        box-shadow: 0 14px 36px rgba(37, 211, 102, 0.42);
        color: white !important;
    }
}

/* CTA finale — WhatsApp, telefono, email */
.cta-section .btn-whatsapp img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.cta-section .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    margin: 10px;
    letter-spacing: 0.02em;
    transition: all 0.5s var(--ease-luxury);
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.cta-section .btn-call svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
    .cta-section .btn-call:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
}
@media (max-width: 768px) {
    .cta-section .btn-whatsapp,
    .cta-section .btn-call,
    .cta-section .btn-email {
        width: 100%;
        justify-content: center;
    }
}

/* ANIMAZIONI — fluide e luxury */
@keyframes luxuryEnter {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity var(--motion-reveal) var(--ease-luxury),
        transform var(--motion-reveal) var(--ease-luxury);
    backface-visibility: hidden;
}
.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.page-header {
    text-align: center;
    padding-top: calc(var(--header-offset) + var(--below-header-gap));
    padding-bottom: 40px;
    opacity: 0;
    animation: luxuryEnter var(--motion-enter) var(--ease-luxury) 0.15s forwards;
}

/* Servizi + I Nostri Lavori — fascia titolo con sfondo (non full screen) */
.page-header-banner {
    width: 100%;
    text-align: center;
    padding-top: calc(var(--header-offset) + var(--below-header-gap) + 1.5rem);
    padding-bottom: 3.5rem;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    background-color: var(--cream);
    background-image:
        linear-gradient(
            to bottom,
            rgba(250, 248, 245, 0.42) 0%,
            rgba(250, 248, 245, 0.55) 38%,
            rgba(250, 248, 245, 0.72) 62%,
            rgba(250, 248, 245, 0.9) 82%,
            #faf8f5 100%
        ),
        url('../immagini/sfondo2.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    margin-bottom: 0;
    border: none;
    opacity: 0;
    animation: luxuryEnter var(--motion-enter) var(--ease-luxury) 0.15s forwards;
}
.page-header-banner .container {
    position: relative;
    z-index: 1;
}
.page-header-banner .page-title {
    color: var(--blu);
    text-shadow: 0 2px 28px rgba(255, 255, 255, 0.92), 0 1px 3px rgba(255, 255, 255, 0.6);
    hyphens: none;
    -webkit-hyphens: none;
}
.page-header-banner .page-subtitle {
    color: #2d3f52;
    text-shadow: 0 1px 20px rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.page-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: var(--blu);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.page-subtitle {
    color: #5a6b7d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
    font-weight: 400;
}

.portfolio-grid > .portfolio-card:not(.card-empty),
.other-sectors,
.portfolio-grid > .portfolio-card.card-empty {
    opacity: 0;
    animation: luxuryEnter var(--motion-enter) var(--ease-luxury) forwards;
}
.portfolio-grid > .portfolio-card:not(.card-empty):nth-child(1) { animation-delay: 0.18s; }
.portfolio-grid > .portfolio-card:not(.card-empty):nth-child(2) { animation-delay: 0.32s; }
.portfolio-grid > .portfolio-card.card-empty { animation-delay: 0.46s; }
.other-sectors { animation-delay: 0.5s; }

.portfolio-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(196, 163, 90, 0.15);
    box-shadow: var(--shadow-premium);
    transition: transform 0.75s var(--ease-luxury), box-shadow 0.75s var(--ease-luxury);
    backface-visibility: hidden;
}
.portfolio-card:hover {
    box-shadow: var(--shadow-luxury);
}

.card-title { font-weight: 700; color: var(--blu); }

.hero-section {
    padding-top: calc(var(--header-offset) + var(--below-header-gap)) !important;
    opacity: 0;
    animation: luxuryEnter 1.35s var(--ease-luxury) 0.12s forwards;
}
.feature-box {
    opacity: 0;
    animation: luxuryEnter var(--motion-enter) var(--ease-luxury) forwards;
}
.features-grid .feature-box:nth-child(1) { animation-delay: 0.2s; }
.features-grid .feature-box:nth-child(2) { animation-delay: 0.34s; }
.features-grid .feature-box:nth-child(3) { animation-delay: 0.48s; }

.btn-outline {
    transition: all 0.5s var(--ease-luxury);
}

.wa-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9998;
    transition: transform 0.55s var(--ease-luxury), background-color 0.4s ease, box-shadow 0.55s var(--ease-luxury);
    animation: waGlowSoft 4.5s var(--ease-silk) infinite;
}
.wa-floating:hover { transform: scale(1.08); background-color: #20ba5a; }
@keyframes waGlowSoft {
    0%, 100% { box-shadow: 0 4px 18px rgba(0,0,0,0.28), 0 0 0 0 rgba(37, 211, 102, 0.12); }
    50% { box-shadow: 0 6px 22px rgba(0,0,0,0.22), 0 0 0 10px rgba(37, 211, 102, 0); }
}
.wa-floating img { width: 35px; height: 35px; }

/* FOOTER */
.site-footer {
    width: 100%;
    background: linear-gradient(180deg, #0c1829 0%, #0a1422 100%);
    margin: 0;
    padding: 60px 0 30px;
    color: white;
    font-family: var(--font-body);
}
.site-footer .container { max-width: 1100px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
    align-items: center;
}
.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-col-brand {
    align-self: center;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 86px;
    width: auto;
    display: block;
    filter: brightness(1.05);
    transition: transform 0.5s var(--ease-luxury);
}
.footer-logo:hover img { transform: scale(1.03); }
.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.65;
}
.footer-heading {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--arancio-glow);
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 1.3;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.35s var(--ease-luxury);
    font-size: 0.95rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}
.footer-bottom p { margin-bottom: 5px; font-size: 0.95rem; }
.footer-bottom p:last-child { font-size: 0.75rem; }

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 24, 41, 0.96);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    font-size: 14px;
    font-family: var(--font-body);
    border-top: 1px solid rgba(196, 163, 90, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(12px);
}
#cookie-banner button {
    background: linear-gradient(135deg, var(--arancio), var(--arancio-glow));
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.4s var(--ease-luxury);
}
#cookie-banner button:hover { transform: translateY(-2px); }

@media (min-width: 769px) {
    .footer-grid {
        grid-template-columns: minmax(240px, 1.45fr) repeat(3, 1fr);
        gap: 48px 40px;
        align-items: center;
    }
    .footer-col:not(.footer-col-brand) {
        min-height: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header { min-height: 80px; }
    .logo img { height: 65px; }
    .header-inner { justify-content: space-between; }
    .desktop-nav { display: none; }
    .hamburger { display: block; }
    .page-header {
        padding-top: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile));
        padding-bottom: 28px;
    }
    .page-header-banner {
        padding-top: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile) + 1.25rem);
        padding-bottom: 2.75rem;
        padding-left: 16px;
        padding-right: 16px;
        background-position: center 32%;
    }
    .hero-section {
        padding-top: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile)) !important;
    }
    body > .container {
        margin-top: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile));
    }
    .page-title { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }
    .page-subtitle { font-size: 1rem; padding: 0 16px; line-height: 1.65; }
    .portfolio-grid { gap: 28px; }
    .card-content { padding: 22px 18px; }
    .card-image-wrapper { height: 210px; }
    .footer-grid {
        gap: 32px;
        align-items: stretch;
    }
    .footer-col {
        text-align: center;
        align-items: center;
    }
    .footer-logo { margin-left: auto; margin-right: auto; }
    .footer-links { text-align: center; }
    .wa-floating { bottom: 85px; right: 20px; width: 55px; height: 55px; }
    .footer-logo img { height: 68px; }
    #cookie-banner { padding: 14px 16px; font-size: 13px; gap: 12px; }
}

/* Titoli sezioni — pagine settore */
.features-section .section-title,
.concept-section .section-title {
    opacity: 0;
    animation: luxuryEnter var(--motion-enter) var(--ease-luxury) 0.22s forwards;
}

/* === Pagine servizio (Artigiani, Beauty, Ristorazione) — luxury === */
body.sector-page .hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    color: var(--blu);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
}
body.sector-page .hero-lead {
    font-size: 1.12rem;
    color: var(--blu);
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}
body.sector-page .hero-text p:not(.hero-lead) {
    font-size: 1.05rem;
    color: #5a6b7d;
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 36em;
}
body.sector-page .hero-section {
    padding-top: calc(var(--header-offset) + var(--below-header-gap) + 1.35rem) !important;
}
body.sector-page .hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(196, 163, 90, 0.22);
}
body.sector-page .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    padding: 0 12px;
}
body.sector-page .section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--arancio), var(--gold));
}
body.sector-page .section-intro {
    color: #5a6b7d;
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    padding: 0 16px;
}
body.sector-page .features-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 248, 245, 0.85) 100%);
    padding: 88px 0;
    border-top: 1px solid rgba(196, 163, 90, 0.18);
    border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}
body.sector-page .feature-box {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow-premium);
    text-align: left;
}
body.sector-page .feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(212, 98, 31, 0.35);
}
body.sector-page .feature-box h3 {
    font-family: var(--font-display);
    font-size: 1.28rem;
    color: var(--blu);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
body.sector-page .feature-box p {
    color: #4a5d73;
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 400;
}
body.sector-page .feature-icon {
    width: 36px;
    height: 36px;
    color: var(--blu);
    margin-bottom: 14px;
    opacity: 0.88;
}
body.sector-page .concept-section {
    padding: 88px 20px;
    background-color: rgba(255, 255, 255, 0.55);
    background-image:
        radial-gradient(rgba(18, 45, 77, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, transparent, rgba(196, 163, 90, 0.04) 50%, transparent);
    background-size: 36px 36px, 100% 100%;
}
body.sector-page .portfolio-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(196, 163, 90, 0.18);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}
body.sector-page .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}
body.sector-page .card-image-wrapper {
    height: 250px;
}
body.sector-page .card-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(18, 45, 77, 0.06);
    pointer-events: none;
}
body.sector-page .badge {
    background: linear-gradient(135deg, var(--blu), var(--blu-soft));
    letter-spacing: 0.06em;
    font-size: 0.72rem;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(18, 45, 77, 0.2);
}
body.sector-page .card-content {
    padding: 28px 26px 30px;
}
body.sector-page .card-title {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--blu);
    margin-bottom: 10px;
}
body.sector-page .card-desc {
    color: #5a6b7d;
    font-size: 0.97rem;
    line-height: 1.65;
}
body.sector-page .cta-section {
    padding: 40px 20px 100px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: none;
    margin: 0;
}
body.sector-page .cta-section .btn-gigante {
    background: var(--verde-wa);
    color: white;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
@media (max-width: 768px) {
    body.sector-page .hero-section {
        gap: 28px;
    }
    body.sector-page .hero-text h1 {
        font-size: clamp(1.95rem, 6.5vw, 2.35rem);
    }
    body.sector-page .hero-lead,
    body.sector-page .hero-text p:not(.hero-lead) {
        font-size: 1rem;
    }
    body.sector-page .features-section,
    body.sector-page .concept-section {
        padding: 56px 0;
    }
    body.sector-page .concept-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    body.sector-page .feature-box {
        padding: 28px 22px;
    }
    body.sector-page .hero-section {
        padding-top: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile) + 1rem) !important;
    }
    body.sector-page .cta-section {
        padding: 40px 16px 60px;
    }
    body.sector-page .cta-section .btn-gigante {
        width: 100%;
        font-size: 0.95rem;
        padding: 18px 16px;
    }
    body.sector-page .card-image-wrapper {
        height: 220px;
    }
}

/* Privacy / Cookie — entrata morbida + distacco navbar */
body > .container {
    margin-top: calc(var(--header-offset) + var(--below-header-gap));
    opacity: 0;
    animation: luxuryEnter var(--motion-enter) var(--ease-luxury) 0.08s forwards;
}
body > .container .back-home {
    transition: color 0.45s var(--ease-luxury), transform 0.45s var(--ease-luxury);
}
body > .container .back-home:hover {
    transform: translateX(-3px);
}

/* Transizioni uniformi — override stili inline pagina */
.feature-box,
.portfolio-card,
.modal-trigger,
.btn-outline,
.btn-wa-alt,
.btn-gigante,
.close-modal,
.modal-caption a,
.other-sectors,
.step-card {
    transition-timing-function: var(--ease-luxury) !important;
}
.feature-box {
    transition-property: transform, box-shadow, border-color !important;
    transition-duration: 0.75s !important;
}
.portfolio-card {
    transition-property: transform, box-shadow !important;
    transition-duration: 0.75s !important;
}
.card-image-wrapper img,
.hero-image img {
    transition-property: transform, filter !important;
    transition-duration: 0.9s !important;
    transition-timing-function: var(--ease-luxury) !important;
}
.btn-outline,
.btn-wa-alt,
.btn-gigante,
.close-modal,
.modal-caption a,
.modal-trigger {
    transition-duration: 0.55s !important;
}
.btn-gigante {
    animation: waGlowSoft 4.5s var(--ease-silk) infinite !important;
}
.btn-gigante:hover,
.btn-wa-alt:hover {
    transform: scale(1.04) !important;
}
@media (prefers-reduced-motion: reduce) {
    header,
    header.header-visible {
        background: rgba(250, 248, 245, 0.92);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 1px 0 rgba(196, 163, 90, 0.15), 0 8px 32px rgba(18, 45, 77, 0.04);
    }
    .page-header, .page-header-banner, .portfolio-grid > .portfolio-card, .other-sectors,
    .hero-section, .feature-box, .reveal, .wa-floating,
    .features-section .section-title, .concept-section .section-title,
    body > .container {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}


html.page-home .hero {
            text-align: center;
            padding: 140px 0 80px;
            position: relative;
        }
        html.page-home .hero .container {
            width: 100%;
        }
        html.page-home .hero-content {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            text-align: center;
        }
        html.page-home .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.3rem, 7vw, 4rem);
            color: var(--blu);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }
        html.page-home .hero h1 span {
            color: var(--arancio);
            font-weight: 700;
        }
        html.page-home .hero-subtitle {
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            line-height: 1.5;
            color: #374151;
            font-weight: 500;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        html.page-home .hero p {
            font-weight: 400;
            letter-spacing: 0.01em;
        }
        html.page-home .hero-badge, html.page-home .hero h1, html.page-home .hero-subtitle, html.page-home .hero-features, html.page-home .hero-cta {
            opacity: 0;
        }
        html.page-home body.hero-ready .hero-badge, html.page-home body.hero-ready .hero h1 {
            transform-origin: center center;
            animation: home-heroZoomIn 1.5s var(--ease-luxury) forwards;
        }
        html.page-home body.hero-ready .hero-badge { animation-delay: 0s; }
        html.page-home body.hero-ready .hero h1 { animation-delay: 0.35s; }
        html.page-home body.hero-ready .hero-subtitle {
            animation: home-heroSlideInRight 1.4s var(--ease-luxury) forwards;
            animation-delay: 0.9s;
        }
        html.page-home body.hero-ready .hero-features {
            animation: home-heroSlideInLeft 1.4s var(--ease-luxury) forwards;
            animation-delay: 1.5s;
        }
        html.page-home body.hero-ready .hero-cta {
            animation: home-heroFadeIn 1.2s var(--ease-luxury) forwards;
            animation-delay: 2.1s;
        }
        @keyframes home-heroZoomIn {
            from { opacity: 0; transform: scale(0.94); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes home-heroSlideInRight {
            from { opacity: 0; transform: translate3d(22px, 0, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        @keyframes home-heroSlideInLeft {
            from { opacity: 0; transform: translate3d(-22px, 0, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        @keyframes home-heroFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        html.page-home .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e8ecf0;
            color: #475569;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            padding: 10px 18px;
            border-radius: 10px;
            margin: 0 auto 1.15rem;
        }
        html.page-home .hero-badge svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
        html.page-home .hero-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            margin: 0 auto 1.75rem;
            width: 100%;
        }
        html.page-home .hero-feature-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            text-align: left;
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(18, 45, 77, 0.08);
            border-radius: 14px;
            padding: 14px 14px;
            box-shadow: 0 6px 20px rgba(18, 45, 77, 0.06);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        html.page-home .hero-feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(244, 246, 249, 0.9));
            border: 1px solid rgba(196, 163, 90, 0.22);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blu);
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(18, 45, 77, 0.06);
        }
        html.page-home .hero-feature-icon svg {
            width: 24px;
            height: 24px;
        }
        html.page-home .hero-feature-icon--fast {
            color: var(--arancio);
            background: linear-gradient(145deg, rgba(255, 247, 240, 0.98), rgba(255, 255, 255, 0.92));
            border-color: rgba(212, 98, 31, 0.25);
        }
        html.page-home .hero-feature-icon--shield {
            color: var(--verde-logo);
            background: linear-gradient(145deg, rgba(240, 250, 236, 0.98), rgba(255, 255, 255, 0.92));
            border-color: rgba(93, 168, 51, 0.28);
        }
        html.page-home .hero-feature-copy {
            flex: 1;
            min-width: 0;
        }
        html.page-home .hero-feature-title {
            display: block;
            font-family: var(--font-display);
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--blu);
            line-height: 1.25;
            margin-bottom: 4px;
        }
        html.page-home .hero-feature-sub {
            font-size: 0.82rem;
            line-height: 1.45;
            color: #64748b;
            font-weight: 400;
            margin: 0;
            text-align: left;
        }
        html.page-home .hero-feature-emoji {
            font-size: 1.35rem;
            line-height: 1;
        }

        /* SITO PRO — sezione full-width */
        html.page-home .sito-pro-section {
            padding: 100px 0;
            text-align: center;
        }
        html.page-home .sito-pro-section .section-title {
            margin-bottom: 1.15rem;
        }
        html.page-home .sito-pro-benefits {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 22px;
            margin-bottom: 2.75rem;
        }
        html.page-home .sito-pro-benefit {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 14px;
            padding: 32px 18px 28px;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(196, 163, 90, 0.12);
            border-radius: 22px;
            box-shadow: var(--shadow-premium);
            transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury);
        }
        html.page-home .sito-pro-benefit.is-revealed:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-luxury);
        }
        html.page-home .sito-pro-benefit-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            color: var(--blu);
            opacity: 0.9;
        }
        html.page-home .sito-pro-benefit p {
            font-family: var(--font-display);
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--blu);
            margin: 0;
            line-height: 1.4;
        }
        html.page-home .sito-pro-cta {
            margin-top: 0;
        }
        html.page-home .sito-pro-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }

        /* Recensioni */
        html.page-home .reviews-section {
            padding: 100px 0 88px;
        }
        html.page-home .reviews-intro {
            text-align: center;
            color: #5a6b7d;
            max-width: 620px;
            margin: 0 auto 40px;
            font-size: 1.05rem;
            line-height: 1.65;
        }
        html.page-home .reviews-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: start;
            gap: 28px;
            max-width: 920px;
            margin: 0 auto;
        }
        html.page-home .review-card {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 36px 28px;
            border-radius: 24px;
            box-shadow: var(--shadow-premium);
            border: 1px solid rgba(196, 163, 90, 0.12);
            text-align: center;
            transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury);
        }
        html.page-home .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-luxury);
        }
        html.page-home .review-stars {
            color: #eab308;
            font-size: 1.05rem;
            letter-spacing: 3px;
            margin-bottom: 14px;
        }
        html.page-home .review-client {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--blu);
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        html.page-home .review-quote {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.75;
            font-style: italic;
            margin: 0;
        }
        html.page-home .reviews-footer-cta {
            text-align: center;
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 22px;
        }
        html.page-home .google-cta-sub {
            font-size: clamp(1rem, 2.2vw, 1.08rem);
            color: #5a6b7d;
            line-height: 1.7;
            max-width: 520px;
            margin: 0;
            padding: 0 12px;
        }
        html.page-home .btn-google-maps {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 18px 42px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.08rem;
            letter-spacing: 0.03em;
            text-decoration: none;
            color: var(--blu);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.88) 100%);
            border: 1px solid rgba(196, 163, 90, 0.35);
            box-shadow:
                0 12px 32px rgba(18, 45, 77, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury), border-color 0.45s ease;
        }
        html.page-home .btn-google-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(18, 45, 77, 0.1);
            flex-shrink: 0;
        }
        html.page-home .btn-google-icon svg {
            width: 22px;
            height: 22px;
        }
        html.page-home .btn-google-arrow {
            font-size: 1.15rem;
            color: var(--arancio);
            line-height: 1;
            transition: transform 0.45s var(--ease-luxury);
        }

        /* LAVORI — card portfolio */
        html.page-home .pacchetti-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: stretch;
        }
        html.page-home .pacchetto-card {
            position: relative;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.85);
            border-radius: 24px;
            padding: 36px 32px 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury);
            display: flex;
            flex-direction: column;
        }
        html.page-home .pacchetto-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 50px rgba(18, 45, 77, 0.08);
        }
        html.page-home .pacchetto-header {
            margin-bottom: 16px;
        }
        html.page-home .pacchetto-name {
            font-family: var(--font-display);
            font-size: clamp(1.35rem, 2.5vw, 1.65rem);
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }
        html.page-home .pacchetto-price {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--arancio);
        }
        html.page-home .pacchetto-desc {
            color: #5a6b7d;
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 22px;
        }
        /* LAVORI HOME */
        html.page-home .lavori-home-section .section-desc { margin-bottom: 2.5rem; }
        html.page-home .lavori-home-grid {
            max-width: 960px;
            margin-left: auto;
            margin-right: auto;
        }
        html.page-home .lavori-home-card { padding: 0; overflow: hidden; }
        html.page-home .lavori-home-preview {
            width: 100%;
            height: 210px;
            overflow: hidden;
            background: rgba(18, 45, 77, 0.05);
            flex-shrink: 0;
        }
        html.page-home .lavori-home-preview--logo {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            padding: 28px 24px;
        }
        html.page-home .lavori-home-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.75s var(--ease-luxury);
        }
        html.page-home .lavori-home-preview--logo img {
            width: auto;
            max-width: 88%;
            max-height: 100%;
            object-fit: contain;
            object-position: center;
        }
        html.page-home .lavori-home-card:hover .lavori-home-preview img { transform: scale(1.04); }
        html.page-home .lavori-home-body {
            padding: 28px 32px 32px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        html.page-home .lavori-home-body .pacchetto-header { padding-right: 0; margin-bottom: 12px; }
        html.page-home .lavori-home-body .pacchetto-desc { margin-bottom: 0; }
        html.page-home .lavori-home-cta { text-align: center; margin-top: 2.5rem; }
        html.page-home .lavori-home-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 16px 38px;
        }

        /* Scroll reveal */
        html.page-home .fade-in-up {
            opacity: 0;
            transform: translate3d(0, 28px, 0);
            transition: opacity 1.1s var(--ease-luxury), transform 1.1s var(--ease-luxury);
        }
        html.page-home .fade-in-up.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        html.page-home .scroll-stagger-card {
            opacity: 0;
            transform: translate3d(0, 32px, 0);
            transition: none !important;
        }
        html.page-home .scroll-stagger-card.is-revealed {
            animation: home-scrollStaggerIn 1s var(--ease-luxury) forwards;
            animation-delay: var(--reveal-delay, 0s);
        }
        @keyframes home-scrollStaggerIn {
            from { opacity: 0; transform: translate3d(0, 32px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        @keyframes home-scrollStaggerInFeatured {
            from { opacity: 0; transform: translate3d(0, 32px, 0); }
            to { opacity: 1; transform: translate3d(0, -16px, 0); }
        }
        html.page-home .review-card--featured {
            border-top: 3px solid var(--arancio);
        }
        html.page-home .review-card--featured.scroll-stagger-card.is-revealed {
            animation: home-scrollStaggerInFeatured 1s var(--ease-luxury) forwards;
            animation-delay: var(--reveal-delay, 0s);
        }
        html.page-home .review-card.scroll-stagger-card.is-revealed:hover { transform: translateY(-8px); }
        html.page-home .review-card--featured.scroll-stagger-card.is-revealed:hover { transform: translateY(-20px); }
        html.page-home .sito-pro-benefit.scroll-stagger-card.is-revealed:hover { transform: translateY(-6px); }

        html.page-home .hero-cta {
            margin-top: 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }
        html.page-home .hero-cta-note {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            margin: 8px 0 0;
            font-family: var(--font-body);
            font-size: 0.88rem;
            font-weight: 500;
            font-style: italic;
            letter-spacing: 0.01em;
            line-height: 1.4;
            color: #475569;
        }
        html.page-home .hero-cta-note svg {
            width: 0.85em;
            height: 0.85em;
            flex-shrink: 0;
        }
        html.page-home .hero-cta-btn {
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 1.2rem !important;
            padding: 20px 40px !important;
            background: var(--verde-wa) !important;
            color: white !important;
        }
        html.page-home .hero-cta-btn img {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }

        @media (min-width: 769px) {
            html.page-home .hero {
                text-align: left;
                padding: calc(var(--header-offset) + var(--below-header-gap)) 0 72px;
                min-height: 88vh;
                display: flex;
                align-items: flex-start;
                background: url('../immagini/sfondo1.jpg') left center / cover no-repeat;
            }
            html.page-home .hero .container {
                max-width: 1280px;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                padding-left: clamp(32px, 5vw, 72px);
                padding-right: 24px;
                padding-top: 0.5rem;
            }
            html.page-home .hero-content {
                width: min(520px, 46%);
                max-width: 520px;
                margin: 0;
                text-align: left;
            }
            html.page-home .hero h1 {
                font-size: clamp(2.1rem, 2.8vw, 3.15rem);
                margin-bottom: 1.25rem;
            }
            html.page-home .hero-subtitle {
                margin: 0 0 1.75rem;
                max-width: none;
                font-size: 1.15rem;
                line-height: 1.55;
            }
            html.page-home .hero-badge {
                margin: 0 0 1.25rem;
            }
            html.page-home .hero-features {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
                margin: 0 0 1.75rem;
                max-width: none;
            }
            html.page-home .hero-feature-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                background: rgba(255, 255, 255, 0.65);
                padding: 14px 12px;
            }
            html.page-home .hero-feature-title {
                font-size: 0.85rem;
            }
            html.page-home .hero-feature-sub {
                font-size: 0.75rem;
            }
            html.page-home .hero-cta-btn {
                width: 100%;
                max-width: 100%;
            }
        }

        @media (min-width: 769px) and (max-width: 1100px) {
            html.page-home .hero-content {
                width: min(480px, 52%);
            }
            html.page-home .hero-features {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            html.page-home .hero-feature-item {
                flex-direction: row;
                align-items: center;
                gap: 14px;
            }
        }

        html.page-home .section { padding: 100px 0; }
        
        html.page-home .premium-bg {
            background-color: rgba(255, 255, 255, 0.6);
            background-image:
                radial-gradient(rgba(18, 45, 77, 0.04) 1px, transparent 1px),
                linear-gradient(180deg, transparent, rgba(196, 163, 90, 0.02) 50%, transparent);
            background-size: 40px 40px, 100% 100%;
            border-bottom: 1px solid rgba(196, 163, 90, 0.22);
        }
        html.page-home .premium-bg-warm {
            background-color: var(--cream-rich);
        }
        html.page-home .elegant-typography h2, html.page-home .elegant-typography h3, html.page-home .section-title {
            font-family: var(--font-display) !important;
        }
        html.page-home .elegant-typography h2, html.page-home .section-title {
            font-weight: 700 !important;
            letter-spacing: -0.02em !important;
        }
        html.page-home .elegant-typography h3 { font-weight: 500 !important; letter-spacing: 0.01em; }
        html.page-home .elegant-typography p { font-weight: 400 !important; }

        html.page-home .section-title {
            text-align: center;
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            color: var(--blu);
            margin-bottom: 28px;
            position: relative;
        }
        html.page-home .section-title span {
            display: block;
            background: linear-gradient(90deg, var(--gold), var(--arancio));
            height: 3px;
            width: 80px;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        html.page-home .section-desc {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 3rem;
            position: relative;
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            line-height: 1.85;
            font-weight: 400;
            letter-spacing: 0.02em;
        }

        html.page-home .section-desc-custom {
            font-family: var(--font-body) !important;
            font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
            letter-spacing: 0.01em !important;
            text-transform: none !important;
            color: #4a5d73 !important;
            line-height: 1.85 !important;
            font-weight: 400 !important;
        }
        html.page-home .section-desc-custom strong {
            font-family: var(--font-body) !important;
            font-weight: 600 !important;
        }
        html.page-home .section-desc strong {
            font-weight: 600;
        }

        html.page-home .cta-section {
            background: linear-gradient(155deg, var(--blu-deep) 0%, var(--blu) 40%, #1a3d5c 100%);
            color: white;
            text-align: center;
            padding: 110px 0;
            overflow: hidden;
            position: relative;
        }
        html.page-home .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 80% at 20% 50%, rgba(196, 163, 90, 0.12), transparent 50%),
                radial-gradient(ellipse 40% 60% at 80% 30%, rgba(212, 98, 31, 0.08), transparent 45%);
            animation: home-ctaGlow 20s ease-in-out infinite alternate;
            pointer-events: none;
        }
        @keyframes home-ctaGlow {
            0%, 100% { opacity: 0.82; }
            50% { opacity: 1; }
        }
        html.page-home .cta-section .container { position: relative; z-index: 1; }
        html.page-home .cta-box {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 56px 40px;
            border-radius: 28px;
            border: 1px solid rgba(196, 163, 90, 0.25);
            width: 100%;
            max-width: 900px;
            display: inline-block;
            box-shadow: var(--shadow-luxury);
        }
        html.page-home .cta-box h2 {
            font-family: var(--font-display) !important;
            font-weight: 700 !important;
            letter-spacing: -0.02em;
        }
        
        html.page-home .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--verde-wa);
            color: white;
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
        }
        html.page-home .btn-whatsapp img {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
        html.page-home .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45); color: white; }
        html.page-home .btn-call {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.12);
            color: white;
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: transform 0.5s var(--ease-luxury), background-color 0.5s var(--ease-luxury);
            border: 1px solid rgba(255, 255, 255, 0.35);
        }
        html.page-home .btn-call svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }
        html.page-home .btn-call:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        html.page-home .btn-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--blu);
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
            border: 1px solid rgba(196, 163, 90, 0.3);
        }
        html.page-home .btn-email:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,255,255,0.15); }

        @media (hover: hover) and (pointer: fine) {
            html.page-home .btn-google-maps:hover {
                transform: translateY(-4px);
                border-color: rgba(212, 98, 31, 0.45);
                box-shadow:
                    0 18px 44px rgba(18, 45, 77, 0.1),
                    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
                color: var(--blu);
            }
            html.page-home .btn-google-maps:hover .btn-google-arrow {
                transform: translateX(4px);
            }
        }

        @media (min-width: 769px) and (max-width: 1199px) {
            html.page-home .sito-pro-benefits {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            html.page-home .reviews-grid {
                grid-template-columns: 1fr 1fr;
                max-width: 720px;
                margin: 0 auto;
            }
        }

        @media (min-width: 769px) { html.page-home .desktop-only { display: block; content: ""; margin-top: 10px; } }
        @media (max-width: 768px) { 
            html.page-home .desktop-only { display: none; } 
            html.page-home .section-desc-custom { font-size: 1rem !important; line-height: 1.75 !important; padding: 0 12px; }
            html.page-home .hero {
                padding: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile)) 12px 52px;
                background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 1) 45%), url('../immagini/sfondo.jpg') top center/100% auto no-repeat !important;
            }
            html.page-home .hero-badge {
                margin-bottom: 0.75rem;
            }
            html.page-home .hero h1 {
                margin-bottom: 1rem;
                font-size: clamp(2rem, 6.5vw, 2.5rem);
            }
            html.page-home .hero-subtitle {
                margin-bottom: 1.35rem;
                font-size: 1.05rem;
            }
            html.page-home .hero-features {
                margin-bottom: 1.35rem;
                gap: 8px;
            }
            html.page-home .hero-cta-btn {
                width: 100%;
                font-size: 1rem !important;
                padding: 18px 20px !important;
            }
            html.page-home .section { padding: 60px 0; }
            html.page-home .cta-box { padding: 40px 20px; }
            html.page-home .btn-whatsapp, html.page-home .btn-call, html.page-home .btn-email { width: 100%; justify-content: center; }
            html.page-home .sito-pro-section {
                padding: 60px 0;
            }
            html.page-home .sito-pro-benefits {
                grid-template-columns: 1fr;
                gap: 14px;
                margin-bottom: 2rem;
            }
            html.page-home .sito-pro-benefit {
                flex-direction: row;
                text-align: left;
                padding: 18px 20px;
            }
            html.page-home .sito-pro-btn {
                width: 100%;
                max-width: 340px;
            }
            html.page-home .reviews-section {
                padding: 60px 0 64px;
            }
            html.page-home .reviews-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            html.page-home .review-card {
                padding: 28px 22px;
            }
            html.page-home .reviews-footer-cta {
                margin-top: 2.25rem;
                gap: 18px;
            }
            html.page-home .btn-google-maps {
                width: 100%;
                max-width: 100%;
                padding: 16px 28px;
                font-size: 1rem;
                gap: 12px;
            }
            html.page-home .btn-google-icon {
                width: 36px;
                height: 36px;
            }
            html.page-home .pacchetti-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            html.page-home .pacchetto-card {
                padding: 28px 22px 24px;
            }
            html.page-home .lavori-home-preview { height: 180px; }
            html.page-home .lavori-home-body { padding: 22px 22px 24px; }
            html.page-home .lavori-home-cta { margin-top: 2rem; }
            html.page-home .lavori-home-btn { width: 100%; max-width: 340px; }
        }
        @media (prefers-reduced-motion: reduce) {
            html.page-home .cta-section::before { animation: none; }
            html.page-home body.hero-ready .hero-badge, html.page-home body.hero-ready .hero h1, html.page-home body.hero-ready .hero-subtitle, html.page-home body.hero-ready .hero-features, html.page-home body.hero-ready .hero-cta {
                animation: none;
                opacity: 1;
                transform: none;
            }
            html.page-home .fade-in-up, html.page-home .scroll-stagger-card, html.page-home .pricing-card {
                opacity: 1;
                transform: none;
                transition: none;
                animation: none !important;
            }
            html.page-home .pricing-card.is-revealed:hover { transform: none; }
        }

        /* ===== PRICING CARDS ===== */
        html.page-home .pricing-cards-wrap {
            margin: 0 auto 2.25rem;
        }
        html.page-home .pricing-cards-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 28px;
            max-width: 960px;
            margin: 0 auto;
        }
        html.page-home .pricing-card {
            position: relative;
            border-radius: 28px;
            padding: 40px 36px 36px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: translateY(32px);
            transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury);
        }
        html.page-home .pricing-card.is-revealed {
            animation: home-pricingRevealIn 0.95s var(--ease-luxury) forwards;
            animation-delay: var(--reveal-delay, 0s);
        }
        @keyframes home-pricingRevealIn {
            from { opacity: 0; transform: translateY(32px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        html.page-home .pricing-card.is-revealed:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-luxury);
        }
        html.page-home .pricing-card--primary {
            background: linear-gradient(155deg, rgba(255,255,255,0.97) 0%, rgba(255,248,242,0.94) 55%, rgba(250,240,230,0.9) 100%);
            border: 1px solid rgba(212, 98, 31, 0.22);
            box-shadow: 0 20px 48px rgba(212, 98, 31, 0.1), 0 8px 24px rgba(18,45,77,0.05), 0 0 0 1px rgba(255,255,255,0.7) inset;
        }
        html.page-home .pricing-card--primary::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--arancio), var(--arancio-glow));
        }
        html.page-home .pricing-card--secondary {
            background: linear-gradient(155deg, rgba(255,255,255,0.92) 0%, rgba(234,242,255,0.88) 100%);
            border: 1px solid rgba(18, 45, 77, 0.12);
            box-shadow: 0 20px 48px rgba(18, 45, 77, 0.08), 0 8px 24px rgba(18,45,77,0.04);
        }
        html.page-home .pricing-card--secondary::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blu), #1a4675);
        }
        html.page-home .pricing-card-name {
            font-family: var(--font-display);
            font-size: clamp(1.18rem, 2.2vw, 1.45rem);
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        html.page-home .pricing-card-subtitle {
            color: #64748b;
            font-size: 0.92rem;
            line-height: 1.65;
            margin-bottom: 22px;
        }
        html.page-home .pricing-card-amount {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            color: var(--arancio);
            letter-spacing: -0.04em;
            line-height: 1;
            display: block;
            margin-bottom: 4px;
        }
        html.page-home .pricing-card-amount-note {
            font-size: 0.77rem;
            color: #94a3b8;
            font-weight: 500;
            display: block;
            margin-bottom: 22px;
        }
        html.page-home .pricing-card-quote {
            font-family: var(--font-display);
            font-size: clamp(0.95rem, 1.8vw, 1.08rem);
            font-weight: 600;
            color: var(--blu);
            margin-bottom: 22px;
            padding: 14px 18px;
            background: rgba(18, 45, 77, 0.05);
            border-radius: 14px;
            border-left: 3px solid var(--blu);
            line-height: 1.5;
        }
        html.page-home .pricing-card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
            flex-grow: 1;
        }
        html.page-home .pricing-card-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px solid rgba(196, 163, 90, 0.09);
            font-size: 0.92rem;
            color: #374151;
            font-weight: 500;
        }
        html.page-home .pricing-card-features li:last-child { border-bottom: none; }
        html.page-home .pricing-card-features li svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            color: var(--verde-logo);
            margin-top: 2px;
        }
        html.page-home .pricing-card-renewal {
            font-size: 0.82rem;
            color: #5a6b7d;
            line-height: 1.55;
            margin-bottom: 18px;
            padding: 10px 14px;
            background: rgba(196, 163, 90, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(196, 163, 90, 0.28);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        html.page-home .pricing-card-renewal svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            color: #c4a35a;
        }
        html.page-home .pricing-card-renewal span {
            white-space: nowrap;
        }
        html.page-home .pricing-card-disclaimer {
            font-size: 0.74rem;
            color: #94a3b8;
            line-height: 1.5;
            margin-top: 10px;
            text-align: center;
            padding: 0 4px;
        }
        html.page-home .pricing-card-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 28px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.96rem;
            letter-spacing: 0.02em;
            text-decoration: none;
            margin-top: auto;
            transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury);
        }
        html.page-home .pricing-card-btn--primary {
            background: linear-gradient(135deg, var(--arancio) 0%, var(--arancio-glow) 100%);
            color: white !important;
            box-shadow: 0 10px 28px rgba(212, 98, 31, 0.28);
        }
        html.page-home .pricing-card-btn--secondary {
            background: linear-gradient(135deg, var(--blu) 0%, #1a4675 100%);
            color: white !important;
            box-shadow: 0 10px 28px rgba(18, 45, 77, 0.22);
        }
        @media (hover: hover) and (pointer: fine) {
            html.page-home .pricing-card-btn--primary:hover  { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(212,98,31,0.38); color: white !important; }
            html.page-home .pricing-card-btn--secondary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(18,45,77,0.3); color: white !important; }
        }
        @media (max-width: 768px) {
            html.page-home .pricing-cards-grid { grid-template-columns: 1fr !important; gap: 20px; }
            html.page-home .pricing-card { padding: 30px 22px 26px; border-radius: 22px; }
            html.page-home .pricing-card-renewal span { white-space: normal; }
        }

        /* Pre-loader — stesso ritmo di growganic.it */
        html.page-home.preloader-active {
            overflow: hidden;
        }
        html.page-home.preloader-active body {
            background: #0c1829;
        }
        html.page-home .preloader-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: clamp(0.35rem, 1.2vw, 0.55rem);
            background: #0c1829;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
            pointer-events: none;
        }
        html.page-home .preloader-overlay.hide {
            opacity: 0;
            visibility: hidden;
        }
        html.page-home .preloader-logo-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0 5%;
            box-sizing: border-box;
            transform-origin: center center;
        }
        html.page-home .preloader-logo {
            display: block;
            width: min(100%, 560px);
            max-height: min(72vh, 520px);
            height: auto;
            object-fit: contain;
            transform-origin: center center;
            animation: home-preloaderZoomIn 1.5s ease-out forwards;
        }
        html.page-home .preloader-slogan {
            margin: 0;
            padding: 0 5%;
            font-family: var(--font-display);
            font-size: clamp(0.68rem, 2.4vw, 1.05rem);
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.92);
            opacity: 0;
            line-height: 1.35;
            white-space: nowrap;
            max-width: 100%;
            animation: home-preloaderSloganFade 0.6s ease-out 1s forwards;
        }
        @keyframes home-preloaderZoomIn {
            from { transform: scale(0.3); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        @keyframes home-preloaderSloganFade {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @media (max-width: 400px) {
            html.page-home .preloader-slogan {
                font-size: 0.54rem;
                letter-spacing: 0.08em;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            html.page-home .preloader-logo { animation: none; opacity: 1; transform: none; }
            html.page-home .preloader-slogan { animation: none; opacity: 1; }
            html.page-home .preloader-overlay { transition-duration: 0.15s; }
        }

        html.page-home .steps-timeline {
          display: flex;
          flex-direction: column;
          gap: 0;
          max-width: 680px;
          margin: 0 auto;
        }
        html.page-home .step-tl-item {
          display: grid;
          grid-template-columns: 56px 32px 1fr;
          gap: 0 20px;
          align-items: start;
        }
        html.page-home .step-tl-icon {
          width: 56px;
          height: 56px;
          border-radius: 16px;
          background: rgba(255,255,255,0.92);
          border: 1px solid rgba(196,163,90,0.18);
          box-shadow: 0 8px 24px rgba(18,45,77,0.08);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--blu);
          flex-shrink: 0;
          position: relative;
          z-index: 1;
        }
        html.page-home .step-tl-connector {
          width: 2px;
          background: linear-gradient(to bottom, rgba(196,163,90,0.35), rgba(196,163,90,0.1));
          margin: 0 auto;
          min-height: 60px;
          align-self: stretch;
        }
        html.page-home .step-tl-connector--last {
          background: transparent;
        }
        html.page-home .step-tl-content {
          padding-bottom: 40px;
        }
        html.page-home .step-tl-label {
          font-size: 0.72rem;
          font-weight: 700;
          letter-spacing: 0.18em;
          text-transform: uppercase;
          color: var(--arancio);
          margin: 0 0 6px;
          line-height: 1;
          padding-top: 14px;
        }
        html.page-home .step-tl-title {
          font-family: var(--font-display) !important;
          font-size: 1.2rem !important;
          font-weight: 700 !important;
          color: var(--blu) !important;
          margin: 0 0 10px !important;
          letter-spacing: -0.01em !important;
        }
        html.page-home .step-tl-text {
          color: #5a6b7d;
          font-size: 0.95rem;
          line-height: 1.75;
          margin: 0;
        }
        html.page-home .faq-list {
            max-width: 720px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        html.page-home .faq-item {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 24px;
            border: 1px solid rgba(196, 163, 90, 0.12);
            box-shadow: var(--shadow-premium);
            overflow: hidden;
        }
        html.page-home .faq-heading {
            margin: 0;
            font-size: inherit;
            font-weight: inherit;
        }
        html.page-home .faq-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            padding: 22px 26px;
            font-family: var(--font-display);
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--blu);
            letter-spacing: -0.01em;
            line-height: 1.35;
        }
        html.page-home .faq-trigger:focus-visible {
            outline: 2px solid var(--arancio);
            outline-offset: -2px;
        }
        html.page-home .faq-trigger svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--arancio);
            transition: transform 0.45s var(--ease-luxury);
        }
        html.page-home .faq-item.is-open .faq-trigger svg {
            transform: rotate(180deg);
        }
        html.page-home .faq-panel {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.5s var(--ease-luxury);
        }
        html.page-home .faq-item.is-open .faq-panel {
            grid-template-rows: 1fr;
        }
        html.page-home .faq-panel-inner {
            overflow: hidden;
        }
        html.page-home .faq-panel-inner p {
            margin: 0;
            padding: 0 26px 22px;
            color: #5a6b7d;
            font-size: 0.95rem;
            line-height: 1.75;
        }
        @media (max-width: 768px) {
            html.page-home .faq-trigger {
                padding: 18px 20px;
                font-size: 1rem;
            }
            html.page-home .faq-panel-inner p {
                padding: 0 20px 18px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            html.page-home .faq-panel, html.page-home .faq-trigger svg {
                transition: none;
            }
        }


/* Ritmo verticale unificato */
        html.page-servizi .section { padding: 96px 0; }

        html.page-servizi body.servizi-page .page-header-banner {
            padding-bottom: 2rem;
        }
        html.page-servizi body.servizi-page .page-title {
            max-width: 920px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.14;
        }
        html.page-servizi body.servizi-page .page-subtitle {
            max-width: 640px;
            margin-top: 18px;
            line-height: 1.65;
        }

        html.page-servizi .premium-bg {
            background-color: rgba(255, 255, 255, 0.6);
            background-image:
                radial-gradient(rgba(18, 45, 77, 0.04) 1px, transparent 1px),
                linear-gradient(180deg, transparent, rgba(196, 163, 90, 0.02) 50%, transparent);
            background-size: 40px 40px, 100% 100%;
            border-bottom: 1px solid rgba(196, 163, 90, 0.12);
        }
        html.page-servizi .premium-bg-warm {
            background-color: var(--cream-rich);
            border-bottom: 1px solid rgba(196, 163, 90, 0.22);
        }

        html.page-servizi .elegant-typography h2, html.page-servizi .elegant-typography h3, html.page-servizi .section-title {
            font-family: var(--font-display) !important;
        }
        html.page-servizi .elegant-typography h2, html.page-servizi .section-title {
            font-weight: 700 !important;
            letter-spacing: -0.02em !important;
        }
        html.page-servizi .elegant-typography h3 { font-weight: 600 !important; letter-spacing: 0.01em; }
        html.page-servizi .elegant-typography p { font-weight: 400 !important; }

        html.page-servizi .section-title {
            text-align: center;
            font-size: clamp(1.85rem, 4vw, 2.75rem);
            color: var(--blu);
            margin-bottom: 14px;
            line-height: 1.2;
        }
        html.page-servizi .section-title span {
            display: block;
            background: linear-gradient(90deg, var(--gold), var(--arancio));
            height: 3px;
            width: 80px;
            margin: 14px auto 0;
            border-radius: 2px;
        }

        html.page-servizi .section-lead {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            font-size: clamp(1rem, 2.1vw, 1.12rem);
            line-height: 1.8;
            color: #5a6b7d;
            letter-spacing: 0.01em;
        }

        /* Banner — animazione ingresso */
        html.page-servizi .page-header-banner .page-title, html.page-servizi .page-header-banner .page-subtitle {
            opacity: 0;
        }
        html.page-servizi body.page-ready .page-header-banner .page-title {
            will-change: transform, opacity;
            animation: servizi-heroZoomIn 1.5s var(--ease-luxury) forwards;
        }
        html.page-servizi body.page-ready .page-header-banner .page-subtitle {
            will-change: transform, opacity;
            animation: servizi-heroFadeUp 1.4s var(--ease-luxury) forwards;
            animation-delay: 0.35s;
        }
        @keyframes servizi-heroZoomIn {
            from { opacity: 0; transform: scale(0.94); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes servizi-heroFadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }
        html.page-servizi .fade-in-up {
            opacity: 0;
            transform: translate3d(0, 28px, 0);
            transition: opacity 1.1s var(--ease-luxury), transform 1.1s var(--ease-luxury);
            backface-visibility: hidden;
        }
        html.page-servizi .fade-in-up.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        /* Settori — 3 card */
        html.page-servizi .settori-section {
            padding: 88px 0 36px;
        }

        /* Altro settore */
        html.page-servizi body.servizi-page .other-sectors-wrap {
            padding: 40px 20px 88px;
        }
        html.page-servizi body.servizi-page .other-sectors {
            background: rgba(250, 248, 245, 0.72) !important;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 56px 40px;
            border-radius: 28px;
            margin-bottom: 0;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.55) !important;
            box-shadow: 0 20px 48px rgba(18, 45, 77, 0.06), 0 8px 24px rgba(0, 0, 0, 0.03);
            transition: box-shadow 0.55s var(--ease-luxury);
        }
        html.page-servizi body.servizi-page .other-sectors h3 {
            font-family: var(--font-display);
            font-size: clamp(1.45rem, 3.5vw, 1.85rem);
            color: var(--blu);
            font-weight: 700;
            margin-bottom: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            letter-spacing: -0.02em;
        }
        html.page-servizi body.servizi-page .other-sectors h3 svg {
            color: var(--arancio);
            flex-shrink: 0;
        }
        html.page-servizi body.servizi-page .other-sectors p {
            max-width: 720px;
            margin: 0 auto 28px;
            color: #5a6b7d;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            line-height: 1.7;
        }
        html.page-servizi body.servizi-page .btn-wa-alt {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--verde-wa);
            color: white;
            padding: 16px 34px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury), background-color 0.35s ease;
            box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
            max-width: 100%;
            justify-content: center;
        }
        html.page-servizi body.servizi-page .btn-wa-alt img {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }
        @media (hover: hover) and (pointer: fine) {
            html.page-servizi body.servizi-page .btn-wa-alt:hover {
                transform: translateY(-2px) scale(1.02);
                background: #20ba5a;
                box-shadow: 0 14px 36px rgba(37, 211, 102, 0.42);
                color: white;
            }
        }
        html.page-servizi .settori-section .section-title {
            margin-bottom: 10px;
        }
        html.page-servizi .settori-intro {
            text-align: center;
            max-width: 620px;
            margin: 0 auto 2.75rem;
            color: #5a6b7d;
            font-size: clamp(0.98rem, 2vw, 1.05rem);
            line-height: 1.72;
        }
        html.page-servizi body.servizi-page .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }
        html.page-servizi body.servizi-page .portfolio-card {
            border-radius: 26px;
            overflow: hidden;
            text-decoration: none;
            color: var(--scuro);
            display: flex;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.65) !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03) !important;
            transition: transform 0.85s var(--ease-luxury), box-shadow 0.85s var(--ease-luxury) !important;
        }
        html.page-servizi body.servizi-page .card-image-wrapper {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: rgba(18, 45, 77, 0.04);
        }
        html.page-servizi body.servizi-page .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            transition: transform 0.75s var(--ease-luxury), filter 0.75s var(--ease-luxury);
        }
        html.page-servizi body.servizi-page .card-content {
            padding: 28px 26px 30px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        html.page-servizi body.servizi-page .card-title {
            font-family: var(--font-display);
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            color: var(--blu);
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        html.page-servizi body.servizi-page .card-desc {
            color: #5a6b7d;
            font-size: 0.98rem;
            line-height: 1.65;
            margin-bottom: 18px;
            flex-grow: 1;
        }
        html.page-servizi body.servizi-page .card-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: auto;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--blu);
            transition: color 0.4s var(--ease-luxury), gap 0.4s var(--ease-luxury);
        }
        html.page-servizi body.servizi-page .card-link svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            transition: transform 0.4s var(--ease-luxury);
        }
        @media (hover: hover) and (pointer: fine) {
            html.page-servizi body.servizi-page .portfolio-card:hover {
                transform: translateY(-5px) !important;
                box-shadow: 0 24px 44px rgba(18, 45, 77, 0.06) !important;
            }
            html.page-servizi body.servizi-page .portfolio-card:hover .card-image-wrapper img {
                transform: scale(1.02);
            }
            html.page-servizi body.servizi-page .portfolio-card:hover .card-link {
                color: var(--arancio);
                gap: 12px;
            }
            html.page-servizi body.servizi-page .portfolio-card:hover .card-link svg {
                transform: translateX(3px);
            }
        }

        html.page-servizi .portfolio-grid > .portfolio-card {
            animation: none;
        }

        /* Scroll reveal */
        html.page-servizi .scroll-stagger-card {
            opacity: 0;
            transform: translate3d(0, 32px, 0);
            will-change: opacity, transform;
            transition: none !important;
        }

        html.page-servizi .scroll-stagger-card.is-revealed {
            animation: servizi-scrollStaggerIn 1s var(--ease-luxury) forwards;
            animation-delay: var(--reveal-delay, 0s);
        }

        @keyframes servizi-scrollStaggerIn {
            from { opacity: 0; transform: translate3d(0, 32px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }

        @media (max-width: 1024px) {
            html.page-servizi body.servizi-page .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            html.page-servizi .settori-section { padding: 72px 0 32px; }
        }

        @media (max-width: 768px) {
            html.page-servizi .section { padding: 56px 0; }
            html.page-servizi body.servizi-page .page-header-banner {
                padding-top: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile) + 1rem);
                padding-bottom: 1.25rem;
            }
            html.page-servizi body.servizi-page .page-title {
                font-size: clamp(1.65rem, 6.8vw, 2.15rem);
                line-height: 1.18;
                padding: 0 4px;
            }
            html.page-servizi body.servizi-page .page-subtitle {
                font-size: 0.98rem;
                margin-top: 14px;
                padding: 0 8px;
            }
            html.page-servizi .section-title {
                font-size: clamp(1.55rem, 5.5vw, 2rem);
                margin-bottom: 10px;
            }
            html.page-servizi .section-title span {
                margin-top: 12px;
            }
            html.page-servizi body.servizi-page .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            html.page-servizi body.servizi-page .portfolio-card {
                border-radius: 22px;
            }
            html.page-servizi body.servizi-page .card-image-wrapper {
                height: 220px;
            }
            html.page-servizi body.servizi-page .card-content {
                padding: 22px 20px 24px;
            }
            html.page-servizi .settori-section {
                padding: 52px 0 24px;
            }
            html.page-servizi .settori-intro {
                margin-bottom: 2rem;
                padding: 0 4px;
            }
            html.page-servizi body.servizi-page .other-sectors-wrap {
                padding: 28px 16px 56px;
            }
            html.page-servizi body.servizi-page .other-sectors {
                padding: 36px 20px;
                border-radius: 22px;
            }
            html.page-servizi body.servizi-page .other-sectors h3 {
                font-size: 1.28rem;
            }
            html.page-servizi body.servizi-page .other-sectors p {
                margin-bottom: 22px;
            }
            html.page-servizi body.servizi-page .btn-wa-alt {
                width: 100%;
                max-width: 100%;
                padding: 16px 24px;
                font-size: 1rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html.page-servizi body.page-ready .page-header-banner .page-title, html.page-servizi body.page-ready .page-header-banner .page-subtitle {
                animation: none;
                opacity: 1;
                transform: none;
            }
            html.page-servizi .scroll-stagger-card, html.page-servizi .fade-in-up {
                opacity: 1;
                transform: none;
                animation: none;
                transition: none;
            }
        }

        /* ===== PRICING CARDS ===== */
        html.page-servizi .pricing-card {
            position: relative;
            border-radius: 28px;
            padding: 40px 36px 36px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: translateY(32px);
            transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury);
        }
        html.page-servizi .pricing-card--primary {
            background: linear-gradient(155deg, rgba(255,255,255,0.97) 0%, rgba(255,248,242,0.94) 55%, rgba(250,240,230,0.9) 100%);
            border: 1px solid rgba(212, 98, 31, 0.22);
            box-shadow: 0 20px 48px rgba(212, 98, 31, 0.1), 0 8px 24px rgba(18,45,77,0.05), 0 0 0 1px rgba(255,255,255,0.7) inset;
        }
        html.page-servizi .pricing-card--primary::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--arancio), var(--arancio-glow));
        }
        html.page-servizi .pricing-card--secondary {
            background: linear-gradient(155deg, rgba(255,255,255,0.92) 0%, rgba(234,242,255,0.88) 100%);
            border: 1px solid rgba(18, 45, 77, 0.12);
            box-shadow: 0 20px 48px rgba(18, 45, 77, 0.08), 0 8px 24px rgba(18,45,77,0.04);
        }
        html.page-servizi .pricing-card--secondary::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blu), #1a4675);
        }
        html.page-servizi .pricing-card-name {
            font-family: var(--font-display);
            font-size: clamp(1.18rem, 2.2vw, 1.45rem);
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        html.page-servizi .pricing-card-subtitle {
            color: #64748b;
            font-size: 0.92rem;
            line-height: 1.65;
            margin-bottom: 22px;
        }
        html.page-servizi .pricing-card-amount {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            color: var(--arancio);
            letter-spacing: -0.04em;
            line-height: 1;
            display: block;
            margin-bottom: 4px;
        }
        html.page-servizi .pricing-card-amount-note {
            font-size: 0.77rem;
            color: #94a3b8;
            font-weight: 500;
            display: block;
            margin-bottom: 22px;
        }
        html.page-servizi .pricing-card-quote {
            font-family: var(--font-display);
            font-size: clamp(0.95rem, 1.8vw, 1.08rem);
            font-weight: 600;
            color: var(--blu);
            margin-bottom: 22px;
            padding: 14px 18px;
            background: rgba(18, 45, 77, 0.05);
            border-radius: 14px;
            border-left: 3px solid var(--blu);
            line-height: 1.5;
        }
        html.page-servizi .pricing-card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
            flex-grow: 1;
        }
        html.page-servizi .pricing-card-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px solid rgba(196, 163, 90, 0.09);
            font-size: 0.92rem;
            color: #374151;
            font-weight: 500;
        }
        html.page-servizi .pricing-card-features li:last-child { border-bottom: none; }
        html.page-servizi .pricing-card-features li svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            color: var(--verde-logo);
            margin-top: 2px;
        }
        html.page-servizi .pricing-card-renewal {
            font-size: 0.82rem;
            color: #5a6b7d;
            line-height: 1.58;
            margin-bottom: 24px;
            padding: 10px 14px;
            background: rgba(196, 163, 90, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(196, 163, 90, 0.28);
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        html.page-servizi .pricing-card-renewal svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 3px;
            color: var(--gold);
            opacity: 0.85;
        }
        html.page-servizi .pricing-card-renewal span {
            min-width: 0;
            white-space: normal;
        }
        html.page-servizi .pricing-card-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 28px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.96rem;
            letter-spacing: 0.02em;
            text-decoration: none;
            margin-top: auto;
            transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury);
        }
        html.page-servizi .pricing-card-btn--primary {
            background: linear-gradient(135deg, var(--arancio) 0%, var(--arancio-glow) 100%);
            color: white !important;
            box-shadow: 0 10px 28px rgba(212, 98, 31, 0.28);
        }
        html.page-servizi .pricing-card-btn--secondary {
            background: linear-gradient(135deg, var(--blu) 0%, #1a4675 100%);
            color: white !important;
            box-shadow: 0 10px 28px rgba(18, 45, 77, 0.22);
        }
        @media (hover: hover) and (pointer: fine) {
            html.page-servizi .pricing-card-btn--primary:hover  { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(212,98,31,0.38); color: white !important; }
            html.page-servizi .pricing-card-btn--secondary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(18,45,77,0.3); color: white !important; }
        }
        @media (max-width: 768px) {
            html.page-servizi .pricing-card { padding: 30px 22px 26px; border-radius: 22px; }
        }
        @media (prefers-reduced-motion: reduce) {
            html.page-servizi .pricing-card { opacity: 1; transform: none; transition: none; animation: none !important; }
        }

        /* ===== SEZIONI SERVIZI (SRV) ===== */
        @keyframes servizi-srvSlideInLeft {
            from { opacity: 0; transform: translateX(-44px); }
            to   { opacity: 1; transform: translateX(0); }
        }
        @keyframes servizi-srvSlideInRight {
            from { opacity: 0; transform: translateX(44px); }
            to   { opacity: 1; transform: translateX(0); }
        }

        html.page-servizi .srv-section { padding: 96px 0; }
        html.page-servizi .srv-section--vetrina {
            background-color: rgba(255,255,255,0.6);
            background-image:
                radial-gradient(rgba(18,45,77,0.035) 1px, transparent 1px),
                linear-gradient(180deg, transparent, rgba(196,163,90,0.02) 50%, transparent);
            background-size: 40px 40px, 100% 100%;
        }
        html.page-servizi .srv-section--ecommerce {
            background: linear-gradient(180deg, rgba(244,247,252,0.9), rgba(255,255,255,0.98));
            border-top: 2px solid rgba(18,45,77,0.07);
        }

        /* Grid 2 colonne — testo | card */
        html.page-servizi .srv-grid {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 80px;
            align-items: center;
        }
        /* Speculare: card a sinistra, testo a destra */
        html.page-servizi .srv-grid--reversed { grid-template-columns: 420px 1fr; }
        html.page-servizi .srv-grid--reversed .srv-card { order: -1; }

        /* Stato iniziale — invisibile, pronto per lo slide */
        html.page-servizi .srv-text {
            opacity: 0;
            transform: translateX(-44px);
            will-change: opacity, transform;
        }
        html.page-servizi .srv-card {
            opacity: 0;
            transform: translateX(44px);
            will-change: opacity, transform;
        }
        /* Slide sezione normale */
        html.page-servizi .srv-text.is-slide-in { animation: servizi-srvSlideInLeft  0.7s var(--ease-luxury) forwards; }
        html.page-servizi .srv-card.is-slide-in { animation: servizi-srvSlideInRight 0.7s var(--ease-luxury) 0.08s forwards; }
        /* Slide sezione speculare */
        html.page-servizi .srv-grid--reversed .srv-card.is-slide-in { animation-name: servizi-srvSlideInLeft;  animation-delay: 0s; }
        html.page-servizi .srv-grid--reversed .srv-text.is-slide-in { animation-name: servizi-srvSlideInRight; animation-delay: 0.08s; }

        /* pricing-card dentro srv-card: il wrapper gestisce tutto — nessuna doppia animazione */
        html.page-servizi .srv-card .pricing-card {
            opacity: 1 !important;
            transform: none;
            animation: none !important;
            transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury) !important;
        }
        @media (hover: hover) and (pointer: fine) {
            html.page-servizi .srv-card .pricing-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 28px 56px rgba(18,45,77,0.1), 0 12px 28px rgba(18,45,77,0.07);
            }
        }

        /* Label + titolo */
        html.page-servizi .srv-label {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.22em; text-transform: uppercase;
            color: var(--arancio); margin-bottom: 14px;
        }
        html.page-servizi .srv-label--blu { color: var(--blu); }
        html.page-servizi .srv-title {
            font-family: var(--font-display);
            font-size: clamp(1.72rem, 2.8vw, 2.3rem);
            font-weight: 700; color: var(--blu);
            line-height: 1.18; letter-spacing: -0.03em;
            margin-bottom: 36px;
        }

        /* Punti con icona */
        html.page-servizi .srv-points { display: flex; flex-direction: column; gap: 24px; }
        html.page-servizi .srv-point  { display: flex; align-items: flex-start; gap: 16px; }
        html.page-servizi .srv-point-icon {
            width: 44px; height: 44px; border-radius: 13px;
            background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(244,246,249,0.9));
            border: 1px solid rgba(196,163,90,0.18);
            box-shadow: 0 4px 14px rgba(18,45,77,0.07);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; color: var(--blu);
        }
        html.page-servizi .srv-point-icon svg { width: 21px; height: 21px; }
        html.page-servizi .srv-point-icon--warm {
            color: var(--arancio);
            background: linear-gradient(145deg, rgba(255,247,240,0.98), rgba(255,255,255,0.92));
            border-color: rgba(212,98,31,0.2);
        }
        html.page-servizi .srv-point-icon--green {
            color: var(--verde-logo);
            background: linear-gradient(145deg, rgba(240,250,236,0.98), rgba(255,255,255,0.92));
            border-color: rgba(93,168,51,0.22);
        }
        html.page-servizi .srv-point-icon--accent {
            color: var(--gold);
            background: linear-gradient(145deg, rgba(255,250,235,0.98), rgba(255,255,255,0.92));
            border-color: rgba(196,163,90,0.25);
        }
        html.page-servizi .srv-point-body strong {
            display: block; font-family: var(--font-display);
            font-size: 1rem; font-weight: 700;
            color: var(--blu); margin-bottom: 4px; letter-spacing: -0.01em;
        }
        html.page-servizi .srv-point-body p { font-size: 0.91rem; color: #5a6a7e; line-height: 1.68; margin: 0; }

        /* Nota sotto il bottone della card */
        html.page-servizi .pricing-card-disclaimer {
            font-size: 0.75rem; color: #94a3b8;
            line-height: 1.55; margin-top: 14px;
            text-align: center; padding: 0 4px;
        }

        /* Tablet */
        @media (min-width: 769px) and (max-width: 1100px) {
            html.page-servizi .srv-grid { grid-template-columns: 1fr 360px; gap: 52px; }
            html.page-servizi .srv-grid--reversed { grid-template-columns: 360px 1fr; }
        }
        /* Mobile: testo sempre prima, card sempre dopo */
        @media (max-width: 768px) {
            html.page-servizi .srv-section { padding: 60px 0; }
            html.page-servizi .srv-grid, html.page-servizi .srv-grid--reversed { grid-template-columns: 1fr; gap: 40px; }
            html.page-servizi .srv-grid--reversed .srv-card { order: 2; }
            html.page-servizi .srv-grid--reversed .srv-text { order: 1; }
            html.page-servizi .srv-title { font-size: clamp(1.5rem, 5.5vw, 1.85rem); margin-bottom: 28px; }
            html.page-servizi .srv-point-icon { width: 40px; height: 40px; border-radius: 11px; }
            html.page-servizi .srv-point-icon svg { width: 19px; height: 19px; }
        }
        @media (max-width: 768px) {
            @keyframes servizi-srvSlideInLeft {
                from { opacity: 0; transform: translateX(-20px); }
                to   { opacity: 1; transform: translateX(0); }
            }
            @keyframes servizi-srvSlideInRight {
                from { opacity: 0; transform: translateX(20px); }
                to   { opacity: 1; transform: translateX(0); }
            }
        }
        @media (prefers-reduced-motion: reduce) {
            html.page-servizi .srv-text, html.page-servizi .srv-card { opacity: 1; transform: none; }
            html.page-servizi .srv-text.is-slide-in, html.page-servizi .srv-card.is-slide-in { animation: none; }
        }


html.page-chi .section { padding: 100px 0; }

        html.page-chi .premium-bg {
            background-color: rgba(255, 255, 255, 0.6);
            background-image:
                radial-gradient(rgba(18, 45, 77, 0.04) 1px, transparent 1px),
                linear-gradient(180deg, transparent, rgba(196, 163, 90, 0.02) 50%, transparent);
            background-size: 40px 40px, 100% 100%;
            border-bottom: 1px solid rgba(196, 163, 90, 0.12);
        }
        html.page-chi .premium-bg-warm {
            background-color: var(--cream-rich);
            border-bottom: 1px solid rgba(196, 163, 90, 0.22);
        }

        html.page-chi .elegant-typography h2, html.page-chi .elegant-typography h3, html.page-chi .section-title {
            font-family: var(--font-display) !important;
        }
        html.page-chi .elegant-typography h2, html.page-chi .section-title {
            font-weight: 700 !important;
            letter-spacing: -0.02em !important;
        }
        html.page-chi .elegant-typography h3 { font-weight: 600 !important; letter-spacing: 0.01em; }
        html.page-chi .elegant-typography p { font-weight: 400 !important; }

        html.page-chi .section-title {
            text-align: center;
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            color: var(--blu);
            margin-bottom: 28px;
            position: relative;
        }
        html.page-chi .section-title span {
            display: block;
            background: linear-gradient(90deg, var(--gold), var(--arancio));
            height: 3px;
            width: 80px;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        html.page-chi .section-desc {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 3rem;
            position: relative;
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            line-height: 1.85;
            font-weight: 400;
            letter-spacing: 0.02em;
            color: #5a6b7d;
        }

        /* Hero — stessa struttura e posizione testi dell'index */
        html.page-chi .hero {
            text-align: center;
            padding: 140px 0 80px;
            position: relative;
        }
        html.page-chi .hero .container {
            width: 100%;
        }
        html.page-chi .hero-content {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            text-align: center;
        }
        html.page-chi .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.3rem, 7vw, 4rem);
            color: var(--blu);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }
        html.page-chi .hero-subtitle {
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            line-height: 1.5;
            color: #374151;
            font-weight: 500;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        html.page-chi .hero p {
            font-weight: 400;
            letter-spacing: 0.01em;
        }
        html.page-chi .hero-subtitle--bold {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--blu);
        }
        html.page-chi .hero-body {
            color: #5a6b7d;
            font-size: clamp(0.98rem, 2.2vw, 1.05rem);
            line-height: 1.8;
            margin: 0 auto 1.1rem;
            max-width: 800px;
        }
        html.page-chi .hero-bodies .hero-body:last-child {
            margin-bottom: 1.75rem;
        }
        html.page-chi .hero h1, html.page-chi .hero-subtitle, html.page-chi .hero-bodies, html.page-chi .hero-cta {
            opacity: 0;
            backface-visibility: hidden;
        }
        html.page-chi body.hero-ready .hero h1 {
            will-change: transform, opacity;
            transform-origin: center center;
            animation: chi-heroZoomIn 1.5s var(--ease-luxury) forwards;
            animation-delay: 0s;
        }
        html.page-chi body.hero-ready .hero-subtitle {
            will-change: transform, opacity;
            animation: chi-heroSlideInRight 1.4s var(--ease-luxury) forwards;
            animation-delay: 0.35s;
        }
        html.page-chi body.hero-ready .hero-bodies {
            will-change: transform, opacity;
            animation: chi-heroSlideInLeft 1.4s var(--ease-luxury) forwards;
            animation-delay: 0.9s;
        }
        html.page-chi body.hero-ready .hero-cta {
            will-change: transform, opacity;
            animation: chi-heroFadeIn 1.2s var(--ease-luxury) forwards;
            animation-delay: 1.5s;
        }
        @keyframes chi-heroZoomIn {
            from { opacity: 0; transform: scale(0.94); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes chi-heroSlideInRight {
            from { opacity: 0; transform: translate3d(22px, 0, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        @keyframes chi-heroSlideInLeft {
            from { opacity: 0; transform: translate3d(-22px, 0, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        @keyframes chi-heroFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        html.page-chi .hero-cta {
            margin-top: 0;
            text-align: center;
        }
        html.page-chi .hero-cta .btn-wa-green {
            width: 100%;
            max-width: 100%;
        }

        @media (min-width: 769px) {
            html.page-chi .hero {
                text-align: left;
                padding: calc(var(--header-offset) + var(--below-header-gap)) 0 72px;
                min-height: 88vh;
                display: flex;
                align-items: flex-start;
                background: url('../immagini/sfondochisiamo.jpg') left center / cover no-repeat;
            }
            html.page-chi .hero .container {
                max-width: 1280px;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                padding-left: clamp(32px, 5vw, 72px);
                padding-right: 24px;
                padding-top: 0.5rem;
            }
            html.page-chi .hero-content {
                width: min(520px, 46%);
                max-width: 520px;
                margin: 0;
                text-align: left;
            }
            html.page-chi .hero h1 {
                font-size: clamp(2.1rem, 2.8vw, 3.15rem);
                margin-bottom: 1.25rem;
            }
            html.page-chi .hero-subtitle {
                margin: 0 0 1.35rem;
                max-width: none;
                font-size: 1.15rem;
                line-height: 1.55;
            }
            html.page-chi .hero-body {
                margin: 0 0 1.1rem;
                max-width: none;
            }
            html.page-chi .hero-bodies .hero-body:last-child {
                margin-bottom: 1.75rem;
            }
            html.page-chi .hero-cta {
                text-align: left;
            }
        }

        @media (min-width: 769px) and (max-width: 1100px) {
            html.page-chi .hero-content {
                width: min(480px, 52%);
            }
        }

        /* Missione — 3 colonne */
        html.page-chi .mission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        html.page-chi .mission-card {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 44px 32px;
            border-radius: 24px;
            box-shadow: var(--shadow-premium);
            border: 1px solid rgba(196, 163, 90, 0.12);
            text-align: center;
            transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury);
        }
        html.page-chi .mission-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-luxury);
        }
        html.page-chi .mission-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 20px;
            color: var(--blu);
            opacity: 0.88;
            display: block;
        }
        html.page-chi .mission-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        html.page-chi .mission-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.75;
            margin: 0;
        }

        /* Recensioni */
        html.page-chi .reviews-section {
            padding: 100px 0 88px;
        }
        html.page-chi .reviews-intro {
            text-align: center;
            color: #5a6b7d;
            max-width: 620px;
            margin: 0 auto 40px;
            font-size: 1.05rem;
            line-height: 1.65;
        }
        html.page-chi .reviews-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: start;
            gap: 28px;
            max-width: 920px;
            margin: 0 auto;
        }
        html.page-chi .review-card {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 36px 28px;
            border-radius: 24px;
            box-shadow: var(--shadow-premium);
            border: 1px solid rgba(196, 163, 90, 0.12);
            text-align: center;
            transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury);
        }
        html.page-chi .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-luxury);
        }
        html.page-chi .review-stars {
            color: #eab308;
            font-size: 1.05rem;
            letter-spacing: 3px;
            margin-bottom: 14px;
        }
        html.page-chi .review-client {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--blu);
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        html.page-chi .review-quote {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.75;
            font-style: italic;
            margin: 0;
        }
        html.page-chi .reviews-footer-cta {
            text-align: center;
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 22px;
        }
        html.page-chi .google-cta-sub {
            font-size: clamp(1rem, 2.2vw, 1.08rem);
            color: #5a6b7d;
            line-height: 1.7;
            max-width: 520px;
            margin: 0;
            padding: 0 12px;
        }
        html.page-chi .btn-google-maps {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 18px 42px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.08rem;
            letter-spacing: 0.03em;
            text-decoration: none;
            color: var(--blu);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.88) 100%);
            border: 1px solid rgba(196, 163, 90, 0.35);
            box-shadow:
                0 12px 32px rgba(18, 45, 77, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury), border-color 0.45s ease;
        }
        html.page-chi .btn-google-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(18, 45, 77, 0.1);
            flex-shrink: 0;
        }
        html.page-chi .btn-google-icon svg {
            width: 22px;
            height: 22px;
        }
        html.page-chi .btn-google-arrow {
            font-size: 1.15rem;
            color: var(--arancio);
            line-height: 1;
            transition: transform 0.45s var(--ease-luxury);
        }

        /* Scroll reveal */
        html.page-chi .scroll-stagger-card {
            opacity: 0;
            transform: translate3d(0, 32px, 0);
            will-change: opacity, transform;
            transition: none !important;
        }
        html.page-chi .scroll-stagger-card.is-revealed {
            animation: chi-scrollStaggerIn 1s var(--ease-luxury) forwards;
            animation-delay: var(--reveal-delay, 0s);
        }
        @keyframes chi-scrollStaggerIn {
            from { opacity: 0; transform: translate3d(0, 32px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        html.page-chi .mission-card.scroll-stagger-card.is-revealed:hover, html.page-chi .review-card.scroll-stagger-card.is-revealed:hover {
            transform: translateY(-8px);
        }
        html.page-chi .fade-in-up {
            opacity: 0;
            transform: translate3d(0, 28px, 0);
            transition: opacity 1.1s var(--ease-luxury), transform 1.1s var(--ease-luxury);
            backface-visibility: hidden;
        }
        html.page-chi .fade-in-up.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        @media (hover: hover) and (pointer: fine) {
            html.page-chi .btn-google-maps:hover {
                transform: translateY(-4px);
                border-color: rgba(212, 98, 31, 0.45);
                box-shadow:
                    0 18px 44px rgba(18, 45, 77, 0.1),
                    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
                color: var(--blu);
            }
            html.page-chi .btn-google-maps:hover .btn-google-arrow {
                transform: translateX(4px);
            }
        }

        @media (max-width: 768px) {
            html.page-chi .section { padding: 60px 0; }
            html.page-chi .hero {
                padding: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile)) 12px 52px;
                background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 1) 45%), url('../immagini/sfondochisiamo.jpg') top center/100% auto no-repeat !important;
            }
            html.page-chi .hero h1 {
                margin-bottom: 1rem;
                font-size: clamp(2rem, 6.5vw, 2.5rem);
            }
            html.page-chi .hero-subtitle {
                margin-bottom: 1.35rem;
                font-size: 1.05rem;
            }
            html.page-chi .hero-cta .btn-wa-green {
                width: 100%;
            }
            html.page-chi .mission-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            html.page-chi .mission-card {
                padding: 36px 26px;
            }
            html.page-chi .reviews-section {
                padding: 60px 0 64px;
            }
            html.page-chi .reviews-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            html.page-chi .review-card {
                padding: 28px 22px;
            }
            html.page-chi .reviews-footer-cta {
                margin-top: 2.25rem;
                gap: 18px;
            }
            html.page-chi .btn-google-maps {
                width: 100%;
                max-width: 100%;
                padding: 16px 28px;
                font-size: 1rem;
                gap: 12px;
            }
            html.page-chi .btn-google-icon {
                width: 36px;
                height: 36px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            html.page-chi .reviews-grid {
                grid-template-columns: 1fr 1fr;
                max-width: 720px;
                margin: 0 auto;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html.page-chi body.hero-ready .hero h1, html.page-chi body.hero-ready .hero-subtitle, html.page-chi body.hero-ready .hero-bodies, html.page-chi body.hero-ready .hero-cta {
                animation: none;
                opacity: 1;
                transform: none;
                will-change: auto;
            }
            html.page-chi .scroll-stagger-card, html.page-chi .fade-in-up {
                opacity: 1;
                transform: none;
                transition: none;
                animation: none;
            }
        }


html.page-casi h1, html.page-casi h2, html.page-casi h3, html.page-casi p { overflow-wrap: break-word; }

        html.page-casi body.casi-page {
            background: #faf8f5;
        }
        html.page-casi body.casi-page .page-subtitle {
            max-width: 720px;
            line-height: 1.75;
        }
        @media (min-width: 901px) {
            html.page-casi body.casi-page .page-header-banner {
                padding-bottom: 2rem;
            }
        }

        html.page-casi .casi-list {
            display: flex;
            flex-direction: column;
        }

        html.page-casi .caso-studio {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: clamp(40px, 6vw, 80px);
            align-items: center;
            padding: clamp(72px, 10vw, 120px) 0;
            border-bottom: 1px solid rgba(18, 45, 77, 0.06);
        }
        html.page-casi .caso-studio:first-child {
            padding-top: clamp(32px, 5vw, 48px);
        }
        @media (min-width: 901px) {
            html.page-casi .caso-studio:first-child {
                padding-top: 20px;
            }
        }
        html.page-casi .caso-studio:last-of-type {
            border-bottom: none;
        }

        html.page-casi .caso-visual {
            border-radius: 24px;
            overflow: hidden;
            background: #0a0a0a;
            box-shadow: var(--shadow-premium);
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(32px, 5vw, 48px);
            position: relative;
        }
        html.page-casi .caso-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }
        html.page-casi .caso-visual-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
            border-radius: inherit;
        }
        html.page-casi .caso-visual img {
            width: auto;
            max-width: 88%;
            max-height: 220px;
            object-fit: contain;
            object-position: center;
            transition: transform 0.45s var(--ease-luxury);
        }
        @media (hover: hover) and (pointer: fine) {
            html.page-casi .caso-visual-link:hover img {
                transform: scale(1.03);
            }
        }

        html.page-casi .caso-content {
            max-width: 520px;
        }
        html.page-casi .caso-studio:nth-child(odd) .caso-visual {
            grid-column: 2;
            grid-row: 1;
        }
        html.page-casi .caso-studio:nth-child(odd) .caso-content {
            grid-column: 1;
            grid-row: 1;
            justify-self: end;
        }
        html.page-casi .caso-studio:nth-child(even) .caso-visual {
            grid-column: 1;
            grid-row: 1;
        }
        html.page-casi .caso-studio:nth-child(even) .caso-content {
            grid-column: 2;
            grid-row: 1;
            justify-self: start;
        }

        html.page-casi .caso-sector {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--arancio);
            margin-bottom: 14px;
        }
        html.page-casi .caso-name {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 3.5vw, 2.5rem);
            font-weight: 800;
            color: var(--blu);
            letter-spacing: -0.03em;
            line-height: 1.12;
            margin: 0 0 28px;
        }
        html.page-casi .caso-block {
            margin-bottom: 24px;
        }
        html.page-casi .caso-block:last-of-type {
            margin-bottom: 32px;
        }
        html.page-casi .caso-label {
            font-family: var(--font-display);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blu);
            opacity: 0.55;
            margin: 0 0 8px;
        }
        html.page-casi .caso-text {
            font-size: clamp(0.98rem, 2vw, 1.05rem);
            line-height: 1.8;
            color: #5a6b7d;
            margin: 0;
        }
        html.page-casi .caso-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-display);
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--blu);
            text-decoration: none;
            letter-spacing: 0.02em;
            margin-bottom: 0;
            transition: color 0.4s var(--ease-luxury), gap 0.4s var(--ease-luxury);
        }
        html.page-casi .caso-link svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            transition: transform 0.4s var(--ease-luxury);
        }
        @media (hover: hover) and (pointer: fine) {
            html.page-casi .caso-link:hover {
                color: var(--arancio);
                gap: 12px;
            }
            html.page-casi .caso-link:hover svg {
                transform: translate(2px, -2px);
            }
        }

        /* CTA finale — full width */
        html.page-casi .casi-cta-section {
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            padding: clamp(88px, 12vw, 128px) 24px;
            text-align: center;
            background: linear-gradient(155deg, var(--blu-deep) 0%, var(--blu) 42%, #1a3d5c 100%);
            color: #fff;
            overflow: hidden;
            position: relative;
        }
        html.page-casi .casi-cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 80% at 20% 50%, rgba(196, 163, 90, 0.14), transparent 50%),
                radial-gradient(ellipse 40% 60% at 80% 30%, rgba(212, 98, 31, 0.1), transparent 45%);
            pointer-events: none;
        }
        html.page-casi .casi-cta-inner {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto;
            padding: 0 20px;
        }
        html.page-casi .casi-cta-title {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4vw, 2.75rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin: 0 0 20px;
        }
        html.page-casi .casi-cta-text {
            font-size: clamp(1rem, 2.2vw, 1.12rem);
            line-height: 1.8;
            color: rgba(248, 250, 252, 0.88);
            margin: 0 0 40px;
        }
        html.page-casi .casi-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 42px;
            font-size: 1.02rem;
            box-shadow: 0 10px 32px rgba(37, 211, 102, 0.35);
        }
        html.page-casi .casi-cta-btn img {
            width: 22px;
            height: 22px;
        }

        /* Banner — animazione ingresso */
        html.page-casi .page-header-banner .page-title, html.page-casi .page-header-banner .page-subtitle {
            opacity: 0;
            backface-visibility: hidden;
        }
        html.page-casi body.page-ready .page-header-banner .page-title {
            will-change: transform, opacity;
            animation: casi-casoHeroZoomIn 1.5s var(--ease-luxury) forwards;
        }
        html.page-casi body.page-ready .page-header-banner .page-subtitle {
            will-change: transform, opacity;
            animation: casi-casoHeroSlideIn 1.4s var(--ease-luxury) forwards;
            animation-delay: 0.35s;
        }
        @keyframes casi-casoHeroZoomIn {
            from { opacity: 0; transform: scale(0.94); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes casi-casoHeroSlideIn {
            from { opacity: 0; transform: translate3d(22px, 0, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }

        /* Scroll reveal */
        html.page-casi .scroll-stagger-card {
            opacity: 0;
            transform: translate3d(0, 32px, 0);
            will-change: opacity, transform;
            transition: none !important;
        }
        html.page-casi .scroll-stagger-card.is-revealed {
            animation: casi-casoStaggerIn 1s var(--ease-luxury) forwards;
            animation-delay: var(--reveal-delay, 0s);
        }
        @keyframes casi-casoStaggerIn {
            from { opacity: 0; transform: translate3d(0, 32px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        html.page-casi .caso-visual.scroll-stagger-card.is-revealed:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-luxury);
        }
        html.page-casi .caso-visual {
            transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury);
        }

        html.page-casi .fade-in-up {
            opacity: 0;
            transform: translate3d(0, 28px, 0);
            transition: opacity 1.1s var(--ease-luxury), transform 1.1s var(--ease-luxury);
            backface-visibility: hidden;
        }
        html.page-casi .fade-in-up.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        @media (max-width: 900px) {
            html.page-casi .caso-studio {
                grid-template-columns: 1fr;
                gap: 36px;
                padding: 64px 0;
            }
            html.page-casi .caso-studio:nth-child(odd) .caso-visual, html.page-casi .caso-studio:nth-child(odd) .caso-content, html.page-casi .caso-studio:nth-child(even) .caso-visual, html.page-casi .caso-studio:nth-child(even) .caso-content {
                grid-column: 1;
                grid-row: auto;
                justify-self: stretch;
            }
            html.page-casi .caso-content {
                max-width: none;
            }
            html.page-casi .caso-visual {
                min-height: 260px;
            }
            html.page-casi .caso-visual img {
                max-height: 180px;
            }
        }

        @media (max-width: 768px) {
            html.page-casi .casi-cta-btn {
                width: 100%;
                max-width: 340px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html.page-casi body.page-ready .page-header-banner .page-title, html.page-casi body.page-ready .page-header-banner .page-subtitle {
                animation: none;
                opacity: 1;
                transform: none;
            }
            html.page-casi .scroll-stagger-card, html.page-casi .fade-in-up {
                opacity: 1;
                transform: none;
                transition: none;
                animation: none;
            }
            html.page-casi .casi-cta-section::before { animation: none; }
        }


html.page-artigiani { -webkit-text-size-adjust: 100%; }
        html.page-artigiani h1, html.page-artigiani h2, html.page-artigiani h3, html.page-artigiani p { overflow-wrap: break-word; }

        /* HERO full-width */
        html.page-artigiani .artigiani-hero {
            width: 100%;
            text-align: center;
            padding: calc(var(--header-offset) + var(--below-header-gap) + 2rem) 20px 4rem;
            position: relative;
            background-color: var(--cream);
            background-image:
                linear-gradient(
                    to bottom,
                    rgba(250, 248, 245, 0.22) 0%,
                    rgba(250, 248, 245, 0.45) 40%,
                    rgba(250, 248, 245, 0.72) 75%,
                    rgba(250, 248, 245, 0.92) 100%
                ),
                url('../immagini/sfondoartigiani.jpg');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            opacity: 0;
            animation: luxuryEnter var(--motion-enter) var(--ease-luxury) 0.12s forwards;
        }
        html.page-artigiani .artigiani-hero .container {
            max-width: 900px;
            position: relative;
            z-index: 1;
        }
        html.page-artigiani .artigiani-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5.5vw, 3.35rem);
            font-weight: 800;
            color: var(--blu);
            letter-spacing: -0.03em;
            line-height: 1.12;
            margin-bottom: 1.35rem;
            text-shadow: 0 2px 28px rgba(255, 255, 255, 0.92), 0 1px 3px rgba(255, 255, 255, 0.5);
        }
        html.page-artigiani .artigiani-hero-sub {
            font-size: clamp(1.05rem, 2.5vw, 1.25rem);
            line-height: 1.7;
            color: #2d3f52;
            font-weight: 500;
            max-width: 780px;
            margin: 0 auto 2rem;
            text-shadow: 0 1px 18px rgba(255, 255, 255, 0.85);
        }
        /* SEZIONI */
        html.page-artigiani .sector-section {
            padding: 88px 0;
        }
        html.page-artigiani .sector-section--alt {
            background-color: rgba(255, 255, 255, 0.6);
            background-image:
                radial-gradient(rgba(18, 45, 77, 0.04) 1px, transparent 1px),
                linear-gradient(180deg, transparent, rgba(196, 163, 90, 0.02) 50%, transparent);
            background-size: 40px 40px, 100% 100%;
            border-top: 1px solid rgba(196, 163, 90, 0.1);
            border-bottom: 1px solid rgba(196, 163, 90, 0.1);
        }
        html.page-artigiani .sector-section .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--blu);
            text-align: center;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }
        html.page-artigiani .sector-section .section-title::after {
            content: '';
            display: block;
            width: 72px;
            height: 3px;
            margin: 14px auto 0;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--gold), var(--arancio));
        }
        html.page-artigiani .sector-section .section-intro {
            text-align: center;
            color: #5a6b7d;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            line-height: 1.75;
            max-width: 680px;
            margin: 0 auto 48px;
            padding: 0 8px;
        }

        /* Glass cards — attrezzi */
        html.page-artigiani .tools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        html.page-artigiani .glass-card {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 22px;
            padding: 32px 28px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury);
            text-align: left;
        }
        html.page-artigiani .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 48px rgba(18, 45, 77, 0.07);
        }
        html.page-artigiani .glass-card .feature-icon {
            width: 36px;
            height: 36px;
            color: var(--blu);
            margin-bottom: 18px;
            opacity: 0.88;
        }
        html.page-artigiani .glass-card h3 {
            font-family: var(--font-display);
            font-size: 1.22rem;
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        html.page-artigiani .glass-card p {
            color: #5a6b7d;
            font-size: 0.97rem;
            line-height: 1.72;
            margin: 0;
        }

        /* Griglia struttura — 4 colonne */
        html.page-artigiani .structure-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }
        html.page-artigiani .structure-box {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.88);
            border-radius: 20px;
            padding: 28px 22px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury);
            text-align: center;
        }
        html.page-artigiani .structure-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 48px rgba(18, 45, 77, 0.07);
        }
        html.page-artigiani .structure-emoji {
            font-size: 2rem;
            line-height: 1;
            margin-bottom: 14px;
            display: block;
        }
        html.page-artigiani .structure-box h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 10px;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }
        html.page-artigiani .structure-box p {
            font-size: 0.9rem;
            color: #5a6b7d;
            line-height: 1.65;
            margin: 0;
        }

        /* CTA — identica index */
        html.page-artigiani .cta-section {
            background: linear-gradient(155deg, var(--blu-deep) 0%, var(--blu) 40%, #1a3d5c 100%);
            color: white;
            text-align: center;
            padding: 110px 0;
            overflow: hidden;
            position: relative;
            width: 100%;
            margin: 0;
        }
        html.page-artigiani .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 80% at 20% 50%, rgba(196, 163, 90, 0.12), transparent 50%),
                radial-gradient(ellipse 40% 60% at 80% 30%, rgba(212, 98, 31, 0.08), transparent 45%);
            animation: artigiani-ctaGlow 20s ease-in-out infinite alternate;
            pointer-events: none;
        }
        @keyframes artigiani-ctaGlow {
            0%, 100% { opacity: 0.82; }
            50% { opacity: 1; }
        }
        html.page-artigiani .cta-section .container { position: relative; z-index: 1; }
        html.page-artigiani .cta-box {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 56px 40px;
            border-radius: 28px;
            border: 1px solid rgba(196, 163, 90, 0.25);
            width: 100%;
            max-width: 900px;
            display: inline-block;
            box-shadow: var(--shadow-luxury);
        }
        html.page-artigiani .cta-box h2 {
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        html.page-artigiani .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--verde-wa);
            color: white;
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: all 0.5s var(--ease-luxury);
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
        }
        html.page-artigiani .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45); color: white; }
        html.page-artigiani .btn-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--blu);
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: all 0.5s var(--ease-luxury);
            border: 1px solid rgba(196, 163, 90, 0.3);
        }
        html.page-artigiani .btn-email:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,255,255,0.15); }

        @media (max-width: 1024px) {
            html.page-artigiani .structure-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            html.page-artigiani .artigiani-hero {
                padding: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile) + 1.5rem) 16px 3rem;
                background-position: center 28%;
            }
            html.page-artigiani .artigiani-hero h1 {
                font-size: clamp(1.75rem, 7vw, 2.15rem);
                margin-bottom: 1rem;
            }
            html.page-artigiani .artigiani-hero-sub {
                font-size: 1rem;
                line-height: 1.65;
                margin-bottom: 1.5rem;
            }
            html.page-artigiani .sector-hero .btn-wa-green {
                width: 100%;
                max-width: 340px;
                padding: 16px 24px;
            }
            html.page-artigiani .sector-section {
                padding: 56px 0;
            }
            html.page-artigiani .sector-section .section-intro {
                margin-bottom: 32px;
            }
            html.page-artigiani .tools-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            html.page-artigiani .glass-card {
                padding: 26px 22px;
            }
            html.page-artigiani .structure-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            html.page-artigiani .structure-box {
                padding: 24px 20px;
                text-align: left;
            }
            html.page-artigiani .structure-emoji {
                margin-bottom: 10px;
            }
            html.page-artigiani .cta-section { padding: 60px 0; }
            html.page-artigiani .cta-box { padding: 40px 20px; }
            html.page-artigiani .btn-whatsapp, html.page-artigiani .btn-call, html.page-artigiani .btn-email {
                width: 100%;
                justify-content: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html.page-artigiani .artigiani-hero { animation: none; opacity: 1; }
            html.page-artigiani .cta-section::before { animation: none; }
        }


html.page-beauty { -webkit-text-size-adjust: 100%; }
        html.page-beauty h1, html.page-beauty h2, html.page-beauty h3, html.page-beauty p { overflow-wrap: break-word; }

        html.page-beauty .sector-hero {
            width: 100%;
            text-align: center;
            padding: calc(var(--header-offset) + var(--below-header-gap) + 2rem) 20px 4rem;
            position: relative;
            background-color: var(--cream);
            background-image:
                linear-gradient(
                    to bottom,
                    rgba(250, 248, 245, 0.22) 0%,
                    rgba(250, 248, 245, 0.45) 40%,
                    rgba(250, 248, 245, 0.72) 75%,
                    rgba(250, 248, 245, 0.92) 100%
                ),
                url('../immagini/sfondoparrucchieri.jpg');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            opacity: 0;
            animation: luxuryEnter var(--motion-enter) var(--ease-luxury) 0.12s forwards;
        }
        html.page-beauty .sector-hero .container { max-width: 900px; position: relative; z-index: 1; }
        html.page-beauty .sector-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5.5vw, 3.35rem);
            font-weight: 800;
            color: var(--blu);
            letter-spacing: -0.03em;
            line-height: 1.12;
            margin-bottom: 1.35rem;
            text-shadow: 0 2px 28px rgba(255, 255, 255, 0.92), 0 1px 3px rgba(255, 255, 255, 0.5);
        }
        html.page-beauty .sector-hero-sub {
            font-size: clamp(1.05rem, 2.5vw, 1.25rem);
            line-height: 1.7;
            color: #2d3f52;
            font-weight: 500;
            max-width: 780px;
            margin: 0 auto 2rem;
            text-shadow: 0 1px 18px rgba(255, 255, 255, 0.85);
        }
        html.page-beauty .sector-section { padding: 88px 0; }
        html.page-beauty .sector-section--alt {
            background-color: rgba(255, 255, 255, 0.6);
            background-image:
                radial-gradient(rgba(18, 45, 77, 0.04) 1px, transparent 1px),
                linear-gradient(180deg, transparent, rgba(196, 163, 90, 0.02) 50%, transparent);
            background-size: 40px 40px, 100% 100%;
            border-top: 1px solid rgba(196, 163, 90, 0.1);
            border-bottom: 1px solid rgba(196, 163, 90, 0.1);
        }
        html.page-beauty .sector-section .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--blu);
            text-align: center;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }
        html.page-beauty .sector-section .section-title::after {
            content: '';
            display: block;
            width: 72px;
            height: 3px;
            margin: 14px auto 0;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--gold), var(--arancio));
        }
        html.page-beauty .sector-section .section-intro {
            text-align: center;
            color: #5a6b7d;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            line-height: 1.75;
            max-width: 680px;
            margin: 0 auto 48px;
            padding: 0 8px;
        }

        html.page-beauty .tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        html.page-beauty .glass-card {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 22px;
            padding: 32px 28px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury);
            text-align: left;
        }
        html.page-beauty .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 48px rgba(18, 45, 77, 0.07);
        }
        html.page-beauty .glass-card .feature-icon { width: 36px; height: 36px; color: var(--blu); margin-bottom: 18px; opacity: 0.88; }
        html.page-beauty .glass-card h3 {
            font-family: var(--font-display);
            font-size: 1.22rem;
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        html.page-beauty .glass-card p { color: #5a6b7d; font-size: 0.97rem; line-height: 1.72; margin: 0; }

        html.page-beauty .structure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
        html.page-beauty .structure-box {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.88);
            border-radius: 20px;
            padding: 28px 22px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury);
            text-align: center;
        }
        html.page-beauty .structure-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 48px rgba(18, 45, 77, 0.07);
        }
        html.page-beauty .structure-emoji { font-size: 2rem; line-height: 1; margin-bottom: 14px; display: block; }
        html.page-beauty .structure-box h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 10px;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }
        html.page-beauty .structure-box p { font-size: 0.9rem; color: #5a6b7d; line-height: 1.65; margin: 0; }

        html.page-beauty .cta-section {
            background: linear-gradient(155deg, var(--blu-deep) 0%, var(--blu) 40%, #1a3d5c 100%);
            color: white;
            text-align: center;
            padding: 110px 0;
            overflow: hidden;
            position: relative;
            width: 100%;
            margin: 0;
        }
        html.page-beauty .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 80% at 20% 50%, rgba(196, 163, 90, 0.12), transparent 50%),
                radial-gradient(ellipse 40% 60% at 80% 30%, rgba(212, 98, 31, 0.08), transparent 45%);
            animation: beauty-ctaGlow 20s ease-in-out infinite alternate;
            pointer-events: none;
        }
        @keyframes beauty-ctaGlow { 0%, 100% { opacity: 0.82; } 50% { opacity: 1; } }
        html.page-beauty .cta-section .container { position: relative; z-index: 1; }
        html.page-beauty .cta-box {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 56px 40px;
            border-radius: 28px;
            border: 1px solid rgba(196, 163, 90, 0.25);
            width: 100%;
            max-width: 900px;
            display: inline-block;
            box-shadow: var(--shadow-luxury);
        }
        html.page-beauty .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--verde-wa);
            color: white;
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: all 0.5s var(--ease-luxury);
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
        }
        html.page-beauty .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45); color: white; }
        html.page-beauty .btn-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--blu);
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: all 0.5s var(--ease-luxury);
            border: 1px solid rgba(196, 163, 90, 0.3);
        }
        html.page-beauty .btn-email:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,255,255,0.15); }

        @media (max-width: 1024px) { html.page-beauty .structure-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) {
            html.page-beauty .sector-hero {
                padding: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile) + 1.5rem) 16px 3rem;
                background-position: center 28%;
            }
            html.page-beauty .sector-hero h1 { font-size: clamp(1.75rem, 7vw, 2.15rem); margin-bottom: 1rem; }
            html.page-beauty .sector-hero-sub { font-size: 1rem; line-height: 1.65; margin-bottom: 1.5rem; }
            html.page-beauty .sector-hero .btn-wa-green { width: 100%; max-width: 340px; padding: 16px 24px; }
            html.page-beauty .sector-section { padding: 56px 0; }
            html.page-beauty .sector-section .section-intro { margin-bottom: 32px; }
            html.page-beauty .tools-grid { grid-template-columns: 1fr; gap: 16px; }
            html.page-beauty .glass-card { padding: 26px 22px; }
            html.page-beauty .structure-grid { grid-template-columns: 1fr; gap: 16px; }
            html.page-beauty .structure-box { padding: 24px 20px; text-align: left; }
            html.page-beauty .cta-section { padding: 60px 0; }
            html.page-beauty .cta-box { padding: 40px 20px; }
            html.page-beauty .btn-whatsapp, html.page-beauty .btn-call, html.page-beauty .btn-email { width: 100%; justify-content: center; }
        }
        @media (prefers-reduced-motion: reduce) {
            html.page-beauty .sector-hero { animation: none; opacity: 1; }
            html.page-beauty .cta-section::before { animation: none; }
        }


html.page-ristoranti { -webkit-text-size-adjust: 100%; }
        html.page-ristoranti h1, html.page-ristoranti h2, html.page-ristoranti h3, html.page-ristoranti p { overflow-wrap: break-word; }

        html.page-ristoranti .sector-hero {
            width: 100%;
            text-align: center;
            padding: calc(var(--header-offset) + var(--below-header-gap) + 2rem) 20px 4rem;
            position: relative;
            background-color: var(--cream);
            background-image:
                linear-gradient(
                    to bottom,
                    rgba(250, 248, 245, 0.22) 0%,
                    rgba(250, 248, 245, 0.45) 40%,
                    rgba(250, 248, 245, 0.72) 75%,
                    rgba(250, 248, 245, 0.92) 100%
                ),
                url('../immagini/sfondoristorante.jpg');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            opacity: 0;
            animation: luxuryEnter var(--motion-enter) var(--ease-luxury) 0.12s forwards;
        }
        html.page-ristoranti .sector-hero .container { max-width: 900px; position: relative; z-index: 1; }
        html.page-ristoranti .sector-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5.5vw, 3.35rem);
            font-weight: 800;
            color: var(--blu);
            letter-spacing: -0.03em;
            line-height: 1.12;
            margin-bottom: 1.35rem;
            text-shadow: 0 2px 28px rgba(255, 255, 255, 0.92), 0 1px 3px rgba(255, 255, 255, 0.5);
        }
        html.page-ristoranti .sector-hero-sub {
            font-size: clamp(1.05rem, 2.5vw, 1.25rem);
            line-height: 1.7;
            color: #2d3f52;
            font-weight: 500;
            max-width: 780px;
            margin: 0 auto 2rem;
            text-shadow: 0 1px 18px rgba(255, 255, 255, 0.85);
        }
        html.page-ristoranti .sector-section { padding: 88px 0; }
        html.page-ristoranti .sector-section--alt {
            background-color: rgba(255, 255, 255, 0.6);
            background-image:
                radial-gradient(rgba(18, 45, 77, 0.04) 1px, transparent 1px),
                linear-gradient(180deg, transparent, rgba(196, 163, 90, 0.02) 50%, transparent);
            background-size: 40px 40px, 100% 100%;
            border-top: 1px solid rgba(196, 163, 90, 0.1);
            border-bottom: 1px solid rgba(196, 163, 90, 0.1);
        }
        html.page-ristoranti .sector-section .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--blu);
            text-align: center;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }
        html.page-ristoranti .sector-section .section-title::after {
            content: '';
            display: block;
            width: 72px;
            height: 3px;
            margin: 14px auto 0;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--gold), var(--arancio));
        }
        html.page-ristoranti .sector-section .section-intro {
            text-align: center;
            color: #5a6b7d;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            line-height: 1.75;
            max-width: 680px;
            margin: 0 auto 48px;
            padding: 0 8px;
        }

        html.page-ristoranti .tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        html.page-ristoranti .glass-card {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 22px;
            padding: 32px 28px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury);
            text-align: left;
        }
        html.page-ristoranti .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 48px rgba(18, 45, 77, 0.07);
        }
        html.page-ristoranti .glass-card .feature-icon { width: 36px; height: 36px; color: var(--blu); margin-bottom: 18px; opacity: 0.88; }
        html.page-ristoranti .glass-card h3 {
            font-family: var(--font-display);
            font-size: 1.22rem;
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        html.page-ristoranti .glass-card p { color: #5a6b7d; font-size: 0.97rem; line-height: 1.72; margin: 0; }

        html.page-ristoranti .structure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
        html.page-ristoranti .structure-box {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.88);
            border-radius: 20px;
            padding: 28px 22px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury);
            text-align: center;
        }
        html.page-ristoranti .structure-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 48px rgba(18, 45, 77, 0.07);
        }
        html.page-ristoranti .structure-emoji { font-size: 2rem; line-height: 1; margin-bottom: 14px; display: block; }
        html.page-ristoranti .structure-box h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--blu);
            margin-bottom: 10px;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }
        html.page-ristoranti .structure-box p { font-size: 0.9rem; color: #5a6b7d; line-height: 1.65; margin: 0; }

        html.page-ristoranti .cta-section {
            background: linear-gradient(155deg, var(--blu-deep) 0%, var(--blu) 40%, #1a3d5c 100%);
            color: white;
            text-align: center;
            padding: 110px 0;
            overflow: hidden;
            position: relative;
            width: 100%;
            margin: 0;
        }
        html.page-ristoranti .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 80% at 20% 50%, rgba(196, 163, 90, 0.12), transparent 50%),
                radial-gradient(ellipse 40% 60% at 80% 30%, rgba(212, 98, 31, 0.08), transparent 45%);
            animation: ristoranti-ctaGlow 20s ease-in-out infinite alternate;
            pointer-events: none;
        }
        @keyframes ristoranti-ctaGlow { 0%, 100% { opacity: 0.82; } 50% { opacity: 1; } }
        html.page-ristoranti .cta-section .container { position: relative; z-index: 1; }
        html.page-ristoranti .cta-box {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 56px 40px;
            border-radius: 28px;
            border: 1px solid rgba(196, 163, 90, 0.25);
            width: 100%;
            max-width: 900px;
            display: inline-block;
            box-shadow: var(--shadow-luxury);
        }
        html.page-ristoranti .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--verde-wa);
            color: white;
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: all 0.5s var(--ease-luxury);
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
        }
        html.page-ristoranti .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45); color: white; }
        html.page-ristoranti .btn-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--blu);
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            letter-spacing: 0.02em;
            transition: all 0.5s var(--ease-luxury);
            border: 1px solid rgba(196, 163, 90, 0.3);
        }
        html.page-ristoranti .btn-email:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,255,255,0.15); }

        @media (max-width: 1024px) { html.page-ristoranti .structure-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) {
            html.page-ristoranti .sector-hero {
                padding: calc(var(--header-offset-mobile) + var(--below-header-gap-mobile) + 1.5rem) 16px 3rem;
                background-position: center 28%;
            }
            html.page-ristoranti .sector-hero h1 { font-size: clamp(1.75rem, 7vw, 2.15rem); margin-bottom: 1rem; }
            html.page-ristoranti .sector-hero-sub { font-size: 1rem; line-height: 1.65; margin-bottom: 1.5rem; }
            html.page-ristoranti .sector-hero .btn-wa-green { width: 100%; max-width: 340px; padding: 16px 24px; }
            html.page-ristoranti .sector-section { padding: 56px 0; }
            html.page-ristoranti .sector-section .section-intro { margin-bottom: 32px; }
            html.page-ristoranti .tools-grid { grid-template-columns: 1fr; gap: 16px; }
            html.page-ristoranti .glass-card { padding: 26px 22px; }
            html.page-ristoranti .structure-grid { grid-template-columns: 1fr; gap: 16px; }
            html.page-ristoranti .structure-box { padding: 24px 20px; text-align: left; }
            html.page-ristoranti .cta-section { padding: 60px 0; }
            html.page-ristoranti .cta-box { padding: 40px 20px; }
            html.page-ristoranti .btn-whatsapp, html.page-ristoranti .btn-call, html.page-ristoranti .btn-email { width: 100%; justify-content: center; }
        }
        @media (prefers-reduced-motion: reduce) {
            html.page-ristoranti .sector-hero { animation: none; opacity: 1; }
            html.page-ristoranti .cta-section::before { animation: none; }
        }


html.page-privacy .container { max-width: 800px; margin: 0 auto 60px; background: rgba(255,255,255,0.92); padding: 40px; border-radius: 20px; box-shadow: var(--shadow-premium); border: 1px solid rgba(196, 163, 90, 0.15); }
        html.page-privacy h1 { color: var(--blu); font-size: 2.5rem; margin-bottom: 20px; border-bottom: 3px solid var(--arancio); display: inline-block; font-weight: 700; }
        html.page-privacy h2 { color: var(--blu); margin-top: 30px; font-weight: 600; }
        html.page-privacy p, html.page-privacy li { color: #475569; margin-bottom: 15px; }
        html.page-privacy .back-home { display: inline-block; margin-bottom: 30px; text-decoration: none; color: var(--arancio); font-weight: bold; font-size: 1rem; }
        html.page-privacy .footer-min { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e2e8f0; font-size: 0.9rem; text-align: center; }


html.page-cookie .container { max-width: 800px; margin: 0 auto 60px; background: rgba(255,255,255,0.92); padding: 40px; border-radius: 20px; box-shadow: var(--shadow-premium); border: 1px solid rgba(196, 163, 90, 0.15); }
        html.page-cookie h1 { color: var(--blu); font-size: 2.5rem; margin-bottom: 20px; border-bottom: 3px solid var(--arancio); display: inline-block; font-weight: 700; }
        html.page-cookie h2 { color: var(--blu); margin-top: 30px; font-weight: 600; }
        html.page-cookie p, html.page-cookie li { color: #475569; margin-bottom: 15px; }
        html.page-cookie .back-home { display: inline-block; margin-bottom: 30px; text-decoration: none; color: var(--arancio); font-weight: bold; font-size: 1rem; }
        html.page-cookie .footer-min { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e2e8f0; font-size: 0.9rem; text-align: center; }
        html.page-cookie table { width: 100%; border-collapse: collapse; margin: 20px 0; }
        html.page-cookie th, html.page-cookie td { text-align: left; padding: 12px; border-bottom: 1px solid #e2e8f0; }
        html.page-cookie th { background: var(--grigio-chiaro); color: var(--blu); }

